add IsInterlaced param

This commit is contained in:
Luke Pulverenti
2017-05-29 08:35:59 -04:00
parent 316b1c9b7b
commit 3e15b28b18
13 changed files with 88 additions and 20 deletions

View File

@@ -746,6 +746,24 @@ namespace MediaBrowser.Model.Dlna
}
}
public bool? IsTargetInterlaced
{
get
{
if (IsDirectStream)
{
return TargetVideoStream == null ? (bool?)null : TargetVideoStream.IsInterlaced;
}
if (DeInterlace)
{
return false;
}
return TargetVideoStream == null ? (bool?)null : TargetVideoStream.IsInterlaced;
}
}
public bool? IsTargetAVC
{
get