jellyfin/MediaBrowser.Model/Dlna/ProfileConditionValue.cs

26 lines
614 B
C#
Raw Normal View History

namespace MediaBrowser.Model.Dlna
{
public enum ProfileConditionValue
{
2014-06-22 18:25:47 +02:00
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,
2014-09-09 03:15:31 +02:00
IsAnamorphic = 13,
2014-10-23 06:26:01 +02:00
RefFrames = 14,
NumAudioStreams = 16,
NumVideoStreams = 17,
2015-10-19 18:05:03 +02:00
IsSecondaryAudio = 18,
2016-10-03 08:28:45 +02:00
VideoCodecTag = 19,
2016-12-14 21:58:55 +01:00
IsAvc = 20
}
}