diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2020-05-16 21:56:25 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-16 21:56:25 +0900 |
| commit | 8921c7a5bf00719eea53a17b9d8795a4479c589f (patch) | |
| tree | 4bd5dd35d200316ce1592543c8e8597004ef9fbf | |
| parent | 7f39d898b88f1482a521a1f7cb69bd03ea124fa0 (diff) | |
| parent | 527029af92585fbed5ff9bd619314ed0c31fe65b (diff) | |
Merge pull request #3113 from Artiume/patch-1
Fix Progressive and Interlaced Stream capitalization
| -rw-r--r-- | MediaBrowser.Model/Entities/MediaStream.cs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/MediaBrowser.Model/Entities/MediaStream.cs b/MediaBrowser.Model/Entities/MediaStream.cs index e7e8d7cec..4a269c55b 100644 --- a/MediaBrowser.Model/Entities/MediaStream.cs +++ b/MediaBrowser.Model/Entities/MediaStream.cs @@ -197,34 +197,34 @@ namespace MediaBrowser.Model.Entities { if (i.IsInterlaced) { - return "1440I"; + return "1440i"; } - return "1440P"; + return "1440p"; } if (width >= 1900 || height >= 1000) { if (i.IsInterlaced) { - return "1080I"; + return "1080i"; } - return "1080P"; + return "1080p"; } if (width >= 1260 || height >= 700) { if (i.IsInterlaced) { - return "720I"; + return "720i"; } - return "720P"; + return "720p"; } if (width >= 700 || height >= 440) { if (i.IsInterlaced) { - return "480I"; + return "480i"; } - return "480P"; + return "480p"; } return "SD"; |
