test-helpers.js 583 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. export const representations = [
  2. {
  3. id: '0',
  4. width: 100,
  5. height: 100,
  6. bandwidth: 100,
  7. frameRate: 29.956,
  8. enabled() {
  9. return true;
  10. }
  11. },
  12. {
  13. id: '1',
  14. width: 200,
  15. height: 200,
  16. bandwidth: 200,
  17. frameRate: 29.956,
  18. enabled() {
  19. return true;
  20. }
  21. },
  22. {
  23. id: '2',
  24. width: 300,
  25. height: 300,
  26. bandwidth: 300,
  27. frameRate: 30,
  28. enabled() {
  29. return true;
  30. }
  31. },
  32. {
  33. id: '3',
  34. width: 400,
  35. height: 400,
  36. bandwidth: 400,
  37. frameRate: 60,
  38. enabled() {
  39. return true;
  40. }
  41. }
  42. ];