blob: b23c0b20b114751decb1bf6cd5c153d79c9bf38f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
using System;
using System.Collections.Generic;
namespace MediaBrowser.Model.Dlna
{
public class ResolutionNormalizer
{
private static readonly List<ResolutionConfiguration> Configurations =
new List<ResolutionConfiguration>
{
new ResolutionConfiguration(426, 320000),
new ResolutionConfiguration(640, 400000),
new ResolutionConfiguration(720, 950000),
new ResolutionConfiguration(1280, 2500000)
};
public static ResolutionOptions Normalize(int maxBitrate,
string codec,
int? maxWidth,
int? maxHeight)
{
foreach (var config in Configurations)
{
if (maxBitrate <= config.MaxBitrate)
{
var originvalValue = maxWidth;
maxWidth = Math.Min(config.MaxWidth, maxWidth ?? config.MaxWidth);
if (!originvalValue.HasValue || originvalValue.Value != maxWidth.Value)
{
maxHeight = null;
}
break;
}
}
return new ResolutionOptions
{
MaxWidth = maxWidth,
MaxHeight = maxHeight
};
}
}
}
|