2019-01-13 20:02:23 +00:00
|
|
|
namespace MediaBrowser.Model.Dlna
|
2018-12-27 23:27:57 +00:00
|
|
|
{
|
|
|
|
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
|
|
|
|
}
|
2019-01-13 19:31:15 +00:00
|
|
|
}
|