您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

VideoEncoderScalabilityMode.ts 952B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /**
  2. * Enumeration of the scalability modes supported by the video encoders.
  3. * For more information, check https://www.w3.org/TR/webrtc-svc/#dependencydiagrams*
  4. *
  5. * enum VideoEncoderScalabilityMode {
  6. * L1T3: string;
  7. * L2T3: string;
  8. * L2T3_KEY: string;
  9. * L3T3: string;
  10. * L3T3_KEY: string;
  11. * }
  12. */
  13. export enum VideoEncoderScalabilityMode {
  14. /**
  15. * L1T3 mode: 1-layer spatial and 3-layer temporal scalabilty encoding.
  16. */
  17. L1T3 = 'L1T3',
  18. /**
  19. * L2T2 mode: 2-layer spatial and 3-layer temporal scalability encoding.
  20. */
  21. L2T3 = 'L2T3',
  22. /**
  23. * L2T3_KEY mode: 2-layer spatial and 3-layer temporal scalability K-SVC encoding.
  24. */
  25. L2T3_KEY = 'L2T3_KEY',
  26. /**
  27. * L3T3 mode: -layer spatial and 3-layer temporal scalability encoding.
  28. */
  29. L3T3 = 'L3T3',
  30. /**
  31. * L3T3_Key mode: 3-layer spatial and 3-layer temporal scalability K-SVC encoding.
  32. */
  33. L3T3_KEY = 'L3T3_KEY'
  34. }