mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Fix Progressive Stream 'P' capitalization
This commit is contained in:
parent
18953d95e6
commit
eb3ce3fb87
@ -199,7 +199,7 @@ namespace MediaBrowser.Model.Entities
|
|||||||
{
|
{
|
||||||
return "1440I";
|
return "1440I";
|
||||||
}
|
}
|
||||||
return "1440P";
|
return "1440p";
|
||||||
}
|
}
|
||||||
if (width >= 1900 || height >= 1000)
|
if (width >= 1900 || height >= 1000)
|
||||||
{
|
{
|
||||||
@ -207,7 +207,7 @@ namespace MediaBrowser.Model.Entities
|
|||||||
{
|
{
|
||||||
return "1080I";
|
return "1080I";
|
||||||
}
|
}
|
||||||
return "1080P";
|
return "1080p";
|
||||||
}
|
}
|
||||||
if (width >= 1260 || height >= 700)
|
if (width >= 1260 || height >= 700)
|
||||||
{
|
{
|
||||||
@ -215,7 +215,7 @@ namespace MediaBrowser.Model.Entities
|
|||||||
{
|
{
|
||||||
return "720I";
|
return "720I";
|
||||||
}
|
}
|
||||||
return "720P";
|
return "720p";
|
||||||
}
|
}
|
||||||
if (width >= 700 || height >= 440)
|
if (width >= 700 || height >= 440)
|
||||||
{
|
{
|
||||||
@ -224,7 +224,7 @@ namespace MediaBrowser.Model.Entities
|
|||||||
{
|
{
|
||||||
return "480I";
|
return "480I";
|
||||||
}
|
}
|
||||||
return "480P";
|
return "480p";
|
||||||
}
|
}
|
||||||
|
|
||||||
return "SD";
|
return "SD";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user