diff options
| author | Luke <luke.pulverenti@gmail.com> | 2017-08-13 16:15:33 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-08-13 16:15:33 -0400 |
| commit | 7f200f057d33e3ef52b1b1b1bf1767577295317e (patch) | |
| tree | dc153c2b79aae238bb463768ce1950a48d412b1d /MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs | |
| parent | 6939a6189e584a009607c69dd141e307410edde9 (diff) | |
| parent | 0951819f00d99e206cfc33dbde0eb2132cbbeaf1 (diff) | |
Merge pull request #2814 from MediaBrowser/dev
fixes #2798, fixes #2799
Diffstat (limited to 'MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs')
| -rw-r--r-- | MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs b/MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs index 84cae884d..823c893ea 100644 --- a/MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs +++ b/MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs @@ -211,6 +211,10 @@ namespace MediaBrowser.Controller.MediaEncoding { return null; } + if (string.Equals(container, "rtp", StringComparison.OrdinalIgnoreCase)) + { + return null; + } // Seeing reported failures here, not sure yet if this is related to specfying input format if (string.Equals(container, "m4v", StringComparison.OrdinalIgnoreCase)) |
