q_matrix_jvt.cfg
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:1k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. # This an example configuration file for initializing the quantization matrix.
  2. # Altogether 6 matrices for 4x4 blocks and 2 matrix for 8x8 blocks.
  3. # The values range from 1 to 255.
  4. # If first value of matrix is equal to 0, default values ("JVT") will be used
  5. # for that matrix.
  6. # If a matrix is completely omitted, it will be filled with 16s.
  7. #
  8. # Note: JM expects CHROMAU and CHROMAV to be specified separately, whereas
  9. # x264 forces them to use the same matrix. If U and V are specified to have
  10. # different matrices, only the first is used.
  11. ####################################################################################
  12. INTRA4X4_LUMA =
  13.  6,13,20,28,
  14. 13,20,28,32,
  15. 20,28,32,37,
  16. 28,32,37,42
  17. INTRA4X4_CHROMAU =
  18.  6,13,20,28,
  19. 13,20,28,32,
  20. 20,28,32,37,
  21. 28,32,37,42
  22. INTRA4X4_CHROMAV =
  23.  6,13,20,28,
  24. 13,20,28,32,
  25. 20,28,32,37,
  26. 28,32,37,42
  27. INTER4X4_LUMA =
  28. 10,14,20,24,
  29. 14,20,24,27,
  30. 20,24,27,30,
  31. 24,27,30,34
  32. INTER4X4_CHROMAU =
  33. 10,14,20,24,
  34. 14,20,24,27,
  35. 20,24,27,30,
  36. 24,27,30,34
  37. INTER4X4_CHROMAV =
  38. 10,14,20,24,
  39. 14,20,24,27,
  40. 20,24,27,30,
  41. 24,27,30,34
  42. INTRA8X8_LUMA =
  43.  6,10,13,16,18,23,25,27,
  44. 10,11,16,18,23,25,27,29,
  45. 13,16,18,23,25,27,29,31,
  46. 16,18,23,25,27,29,31,33,
  47. 18,23,25,27,29,31,33,36,
  48. 23,25,27,29,31,33,36,38,
  49. 25,27,29,31,33,36,38,40,
  50. 27,29,31,33,36,38,40,42
  51. INTER8X8_LUMA =
  52.  9,13,15,17,19,21,22,24,
  53. 13,13,17,19,21,22,24,25,
  54. 15,17,19,21,22,24,25,27,
  55. 17,19,21,22,24,25,27,28,
  56. 19,21,22,24,25,27,28,30,
  57. 21,22,24,25,27,28,30,32,
  58. 22,24,25,27,28,30,32,33,
  59. 24,25,27,28,30,32,33,35