2
0

ProfileConditionValue.cs 671 B

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