jellyfin/MediaBrowser.Model/Dlna/ProfileConditionValue.cs

25 lines
594 B
C#
Raw Normal View History

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