aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-03-07 13:27:56 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-03-07 13:27:56 -0500
commit9fa6868af3decfa85fe51243b863e5d790fa1246 (patch)
tree95a5288a090cfe00d8362c27d5f7e266609f1640 /MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs
parent9e74d834a7bbd236daab15ab6d98a0e6a301c150 (diff)
update legacy hd homerun support
Diffstat (limited to 'MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs')
-rw-r--r--MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs5
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;
}