diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-03-07 13:27:56 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-03-07 13:27:56 -0500 |
| commit | 9fa6868af3decfa85fe51243b863e5d790fa1246 (patch) | |
| tree | 95a5288a090cfe00d8362c27d5f7e266609f1640 /MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs | |
| parent | 9e74d834a7bbd236daab15ab6d98a0e6a301c150 (diff) | |
update legacy hd homerun support
Diffstat (limited to 'MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs')
| -rw-r--r-- | MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs b/MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs index d66d0dbcb..21a3494c5 100644 --- a/MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs +++ b/MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs @@ -179,6 +179,11 @@ namespace MediaBrowser.Controller.MediaEncoding { return null; } + // Seeing reported failures here, not sure yet if this is related to specfying input format + if (string.Equals(container, "m4v", StringComparison.OrdinalIgnoreCase)) + { + return null; + } return container; } |
