support additional encoding switches

This commit is contained in:
Luke Pulverenti
2017-05-11 10:54:41 -04:00
parent bdf27b81c1
commit 92eeee0fc5
4 changed files with 82 additions and 15 deletions

View File

@@ -39,14 +39,52 @@ namespace MediaBrowser.Controller.MediaEncoding
public bool ReadInputAtNativeFramerate { get; set; }
public bool IgnoreDts
public bool IgnoreInputDts
{
get { return MediaSource.IgnoreDts; }
get
{
return MediaSource.IgnoreDts;
}
}
public bool IgnoreIndex
public bool IgnoreInputIndex
{
get { return MediaSource.IgnoreIndex; }
get
{
return MediaSource.IgnoreIndex;
}
}
public bool GenPtsInput
{
get
{
return false;
}
}
public bool DiscardCorruptFramesInput
{
get
{
return false;
}
}
public bool EnableFastSeekInput
{
get
{
return false;
}
}
public bool GenPtsOutput
{
get
{
return false;
}
}
public string OutputContainer { get; set; }