hevc.h 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. /*
  2. * HEVC shared code
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * FFmpeg is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #ifndef AVCODEC_HEVC_H
  21. #define AVCODEC_HEVC_H
  22. /**
  23. * Table 7-1 – NAL unit type codes and NAL unit type classes in
  24. * T-REC-H.265-201802
  25. */
  26. enum HEVCNALUnitType {
  27. HEVC_NAL_TRAIL_N = 0,
  28. HEVC_NAL_TRAIL_R = 1,
  29. HEVC_NAL_TSA_N = 2,
  30. HEVC_NAL_TSA_R = 3,
  31. HEVC_NAL_STSA_N = 4,
  32. HEVC_NAL_STSA_R = 5,
  33. HEVC_NAL_RADL_N = 6,
  34. HEVC_NAL_RADL_R = 7,
  35. HEVC_NAL_RASL_N = 8,
  36. HEVC_NAL_RASL_R = 9,
  37. HEVC_NAL_VCL_N10 = 10,
  38. HEVC_NAL_VCL_R11 = 11,
  39. HEVC_NAL_VCL_N12 = 12,
  40. HEVC_NAL_VCL_R13 = 13,
  41. HEVC_NAL_VCL_N14 = 14,
  42. HEVC_NAL_VCL_R15 = 15,
  43. HEVC_NAL_BLA_W_LP = 16,
  44. HEVC_NAL_BLA_W_RADL = 17,
  45. HEVC_NAL_BLA_N_LP = 18,
  46. HEVC_NAL_IDR_W_RADL = 19,
  47. HEVC_NAL_IDR_N_LP = 20,
  48. HEVC_NAL_CRA_NUT = 21,
  49. HEVC_NAL_RSV_IRAP_VCL22 = 22,
  50. HEVC_NAL_RSV_IRAP_VCL23 = 23,
  51. HEVC_NAL_RSV_VCL24 = 24,
  52. HEVC_NAL_RSV_VCL25 = 25,
  53. HEVC_NAL_RSV_VCL26 = 26,
  54. HEVC_NAL_RSV_VCL27 = 27,
  55. HEVC_NAL_RSV_VCL28 = 28,
  56. HEVC_NAL_RSV_VCL29 = 29,
  57. HEVC_NAL_RSV_VCL30 = 30,
  58. HEVC_NAL_RSV_VCL31 = 31,
  59. HEVC_NAL_VPS = 32,
  60. HEVC_NAL_SPS = 33,
  61. HEVC_NAL_PPS = 34,
  62. HEVC_NAL_AUD = 35,
  63. HEVC_NAL_EOS_NUT = 36,
  64. HEVC_NAL_EOB_NUT = 37,
  65. HEVC_NAL_FD_NUT = 38,
  66. HEVC_NAL_SEI_PREFIX = 39,
  67. HEVC_NAL_SEI_SUFFIX = 40,
  68. HEVC_NAL_RSV_NVCL41 = 41,
  69. HEVC_NAL_RSV_NVCL42 = 42,
  70. HEVC_NAL_RSV_NVCL43 = 43,
  71. HEVC_NAL_RSV_NVCL44 = 44,
  72. HEVC_NAL_RSV_NVCL45 = 45,
  73. HEVC_NAL_RSV_NVCL46 = 46,
  74. HEVC_NAL_RSV_NVCL47 = 47,
  75. HEVC_NAL_UNSPEC48 = 48,
  76. HEVC_NAL_UNSPEC49 = 49,
  77. HEVC_NAL_UNSPEC50 = 50,
  78. HEVC_NAL_UNSPEC51 = 51,
  79. HEVC_NAL_UNSPEC52 = 52,
  80. HEVC_NAL_UNSPEC53 = 53,
  81. HEVC_NAL_UNSPEC54 = 54,
  82. HEVC_NAL_UNSPEC55 = 55,
  83. HEVC_NAL_UNSPEC56 = 56,
  84. HEVC_NAL_UNSPEC57 = 57,
  85. HEVC_NAL_UNSPEC58 = 58,
  86. HEVC_NAL_UNSPEC59 = 59,
  87. HEVC_NAL_UNSPEC60 = 60,
  88. HEVC_NAL_UNSPEC61 = 61,
  89. HEVC_NAL_UNSPEC62 = 62,
  90. HEVC_NAL_UNSPEC63 = 63,
  91. };
  92. enum HEVCSliceType {
  93. HEVC_SLICE_B = 0,
  94. HEVC_SLICE_P = 1,
  95. HEVC_SLICE_I = 2,
  96. };
  97. enum {
  98. // 7.4.3.1: vps_max_layers_minus1 is in [0, 62].
  99. HEVC_MAX_LAYERS = 63,
  100. // 7.4.3.1: vps_max_sub_layers_minus1 is in [0, 6].
  101. HEVC_MAX_SUB_LAYERS = 7,
  102. // 7.4.3.1: vps_num_layer_sets_minus1 is in [0, 1023].
  103. HEVC_MAX_LAYER_SETS = 1024,
  104. // 7.4.2.1: vps_video_parameter_set_id is u(4).
  105. HEVC_MAX_VPS_COUNT = 16,
  106. // 7.4.3.2.1: sps_seq_parameter_set_id is in [0, 15].
  107. HEVC_MAX_SPS_COUNT = 16,
  108. // 7.4.3.3.1: pps_pic_parameter_set_id is in [0, 63].
  109. HEVC_MAX_PPS_COUNT = 64,
  110. // A.4.2: MaxDpbSize is bounded above by 16.
  111. HEVC_MAX_DPB_SIZE = 16,
  112. // 7.4.3.1: vps_max_dec_pic_buffering_minus1[i] is in [0, MaxDpbSize - 1].
  113. HEVC_MAX_REFS = HEVC_MAX_DPB_SIZE,
  114. // 7.4.3.2.1: num_short_term_ref_pic_sets is in [0, 64].
  115. HEVC_MAX_SHORT_TERM_REF_PIC_SETS = 64,
  116. // 7.4.3.2.1: num_long_term_ref_pics_sps is in [0, 32].
  117. HEVC_MAX_LONG_TERM_REF_PICS = 32,
  118. // A.3: all profiles require that CtbLog2SizeY is in [4, 6].
  119. HEVC_MIN_LOG2_CTB_SIZE = 4,
  120. HEVC_MAX_LOG2_CTB_SIZE = 6,
  121. // E.3.2: cpb_cnt_minus1[i] is in [0, 31].
  122. HEVC_MAX_CPB_CNT = 32,
  123. // A.4.1: in table A.6 the highest level allows a MaxLumaPs of 35 651 584.
  124. HEVC_MAX_LUMA_PS = 35651584,
  125. // A.4.1: pic_width_in_luma_samples and pic_height_in_luma_samples are
  126. // constrained to be not greater than sqrt(MaxLumaPs * 8). Hence height/
  127. // width are bounded above by sqrt(8 * 35651584) = 16888.2 samples.
  128. HEVC_MAX_WIDTH = 16888,
  129. HEVC_MAX_HEIGHT = 16888,
  130. // A.4.1: table A.6 allows at most 22 tile rows for any level.
  131. HEVC_MAX_TILE_ROWS = 22,
  132. // A.4.1: table A.6 allows at most 20 tile columns for any level.
  133. HEVC_MAX_TILE_COLUMNS = 20,
  134. // A.4.2: table A.6 allows at most 600 slice segments for any level.
  135. HEVC_MAX_SLICE_SEGMENTS = 600,
  136. // 7.4.7.1: in the worst case (tiles_enabled_flag and
  137. // entropy_coding_sync_enabled_flag are both set), entry points can be
  138. // placed at the beginning of every Ctb row in every tile, giving an
  139. // upper bound of (num_tile_columns_minus1 + 1) * PicHeightInCtbsY - 1.
  140. // Only a stream with very high resolution and perverse parameters could
  141. // get near that, though, so set a lower limit here with the maximum
  142. // possible value for 4K video (at most 135 16x16 Ctb rows).
  143. HEVC_MAX_ENTRY_POINT_OFFSETS = HEVC_MAX_TILE_COLUMNS * 135,
  144. };
  145. #endif /* AVCODEC_HEVC_H */