diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-01-11 23:27:14 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-01-11 23:27:14 -0500 |
| commit | 3674d6dfa31d346cb997b9c0453ac06dfcff737e (patch) | |
| tree | 09e7d0db08c0a206c3c5a6b82a11fe0ab20d53c3 | |
| parent | 0b5d4ce3f839118a0a5903ec278321ecfecf1c32 (diff) | |
update aac_latm input
| -rw-r--r-- | MediaBrowser.Api/Playback/BaseStreamingService.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/MediaBrowser.Api/Playback/BaseStreamingService.cs b/MediaBrowser.Api/Playback/BaseStreamingService.cs index 58046454e..33f687ce7 100644 --- a/MediaBrowser.Api/Playback/BaseStreamingService.cs +++ b/MediaBrowser.Api/Playback/BaseStreamingService.cs @@ -2741,6 +2741,10 @@ namespace MediaBrowser.Api.Playback { return null; } + if (string.Equals(codec, "aac_latm", StringComparison.OrdinalIgnoreCase)) + { + return null; + } return codec; } |
