aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Dlna/ProfileConditionValue.cs
blob: b66a15840b55764fe0a052ef3ebbc57e8297cd4c (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
#pragma warning disable CS1591

namespace MediaBrowser.Model.Dlna
{
    public enum ProfileConditionValue
    {
        AudioChannels = 0,
        AudioBitrate = 1,
        AudioProfile = 2,
        Width = 3,
        Height = 4,
        Has64BitOffsets = 5,
        PacketLength = 6,
        VideoBitDepth = 7,
        VideoBitrate = 8,
        VideoFramerate = 9,
        VideoLevel = 10,
        VideoProfile = 11,
        VideoTimestamp = 12,
        IsAnamorphic = 13,
        RefFrames = 14,
        NumAudioStreams = 16,
        NumVideoStreams = 17,
        IsSecondaryAudio = 18,
        VideoCodecTag = 19,
        IsAvc = 20,
        IsInterlaced = 21,
        AudioSampleRate = 22,
        AudioBitDepth = 23,
        VideoRangeType = 24,
        NumStreams = 25
    }
}