update lists

This commit is contained in:
Luke Pulverenti
2016-10-03 02:28:45 -04:00
parent 63129b467c
commit d3583c1460
17 changed files with 117 additions and 23 deletions

View File

@@ -676,6 +676,19 @@ namespace MediaBrowser.Model.Dlna
}
}
public bool? IsTargetAVC
{
get
{
if (IsDirectStream)
{
return TargetVideoStream == null ? null : TargetVideoStream.IsAVC;
}
return true;
}
}
public int? TargetWidth
{
get