ProfileConditionValue.cs 497 B

12345678910111213141516171819202122
  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. IsCabac = 15
  21. }
  22. }