removed dead code

This commit is contained in:
Luke Pulverenti 2017-10-13 01:45:06 -04:00
parent d7bbfff23f
commit 8b7936addf

View File

@ -794,11 +794,6 @@ namespace MediaBrowser.Controller.MediaEncoding
return false;
}
if (state.EnableMpDecimate)
{
return false;
}
if (videoStream.IsInterlaced)
{
if (state.DeInterlace(videoStream.Codec, false))
@ -1515,11 +1510,6 @@ namespace MediaBrowser.Controller.MediaEncoding
}
}
if (state.EnableMpDecimate)
{
filters.Add("mpdecimate,setpts=N/FRAME_RATE/TB");
}
if (filters.Count > 0)
{
output += string.Format(" -vf \"{0}\"", string.Join(",", filters.ToArray()));