update components

This commit is contained in:
Luke Pulverenti
2016-11-30 02:49:32 -05:00
parent 456d5e5b76
commit 372fbd30f6
5 changed files with 8 additions and 7 deletions

View File

@@ -61,7 +61,8 @@ namespace MediaBrowser.Model.Dlna
private static double GetVideoBitrateScaleFactor(string codec)
{
if (StringHelper.EqualsIgnoreCase(codec, "h265") ||
StringHelper.EqualsIgnoreCase(codec, "hevc"))
StringHelper.EqualsIgnoreCase(codec, "hevc") ||
StringHelper.EqualsIgnoreCase(codec, "vp9"))
{
return .5;
}