jellyfin/MediaBrowser.Model/Dlna/ProfileConditionValue.cs

21 lines
475 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,
RefFrames = 14
}
}