aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.MediaEncoding/Encoder/EncodingHelper.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-02-06 01:05:34 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-02-06 01:05:34 -0500
commitb35051463b6241bae93e5d50c0a2a1fe06da5e2f (patch)
treef173ff6413e281bc7d576ccedea00b188ba695fa /MediaBrowser.MediaEncoding/Encoder/EncodingHelper.cs
parentf94353250f92f63fad63c9ab6d7e48c8b82dba97 (diff)
restore features
Diffstat (limited to 'MediaBrowser.MediaEncoding/Encoder/EncodingHelper.cs')
-rw-r--r--MediaBrowser.MediaEncoding/Encoder/EncodingHelper.cs54
1 files changed, 27 insertions, 27 deletions
diff --git a/MediaBrowser.MediaEncoding/Encoder/EncodingHelper.cs b/MediaBrowser.MediaEncoding/Encoder/EncodingHelper.cs
index 83057dba4..ed9552964 100644
--- a/MediaBrowser.MediaEncoding/Encoder/EncodingHelper.cs
+++ b/MediaBrowser.MediaEncoding/Encoder/EncodingHelper.cs
@@ -1486,33 +1486,33 @@ namespace MediaBrowser.MediaEncoding.Encoder
//inputModifier += " -noaccurate_seek";
}
- //if (!string.IsNullOrWhiteSpace(state.InputContainer))
- //{
- // var inputFormat = GetInputFormat(state.InputContainer);
- // if (!string.IsNullOrWhiteSpace(inputFormat))
- // {
- // inputModifier += " -f " + inputFormat;
- // }
- //}
-
- //if (state.RunTimeTicks.HasValue)
- //{
- // foreach (var stream in state.MediaSource.MediaStreams)
- // {
- // if (!stream.IsExternal && stream.Type != MediaStreamType.Subtitle)
- // {
- // if (!string.IsNullOrWhiteSpace(stream.Codec) && stream.Index != -1)
- // {
- // var decoder = GetDecoderFromCodec(stream.Codec);
-
- // if (!string.IsNullOrWhiteSpace(decoder))
- // {
- // inputModifier += " -codec:" + stream.Index.ToString(_usCulture) + " " + decoder;
- // }
- // }
- // }
- // }
- //}
+ if (!string.IsNullOrWhiteSpace(state.InputContainer))
+ {
+ var inputFormat = GetInputFormat(state.InputContainer);
+ if (!string.IsNullOrWhiteSpace(inputFormat))
+ {
+ inputModifier += " -f " + inputFormat;
+ }
+ }
+
+ if (state.RunTimeTicks.HasValue)
+ {
+ foreach (var stream in state.MediaSource.MediaStreams)
+ {
+ if (!stream.IsExternal && stream.Type != MediaStreamType.Subtitle)
+ {
+ if (!string.IsNullOrWhiteSpace(stream.Codec) && stream.Index != -1)
+ {
+ var decoder = GetDecoderFromCodec(stream.Codec);
+
+ if (!string.IsNullOrWhiteSpace(decoder))
+ {
+ inputModifier += " -codec:" + stream.Index.ToString(_usCulture) + " " + decoder;
+ }
+ }
+ }
+ }
+ }
}
return inputModifier;