You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

388 lines
12KB

  1. /*
  2. * H.26L/H.264/AVC/JVT/14496-10/... encoder/decoder
  3. * Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at>
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. /**
  22. * @file h264.h
  23. * H.264 / AVC / MPEG4 part10 codec.
  24. * @author Michael Niedermayer <michaelni@gmx.at>
  25. */
  26. #ifndef H264_H
  27. #define H264_H
  28. #include "dsputil.h"
  29. #include "cabac.h"
  30. #include "mpegvideo.h"
  31. #define interlaced_dct interlaced_dct_is_a_bad_name
  32. #define mb_intra mb_intra_is_not_initialized_see_mb_type
  33. #define LUMA_DC_BLOCK_INDEX 25
  34. #define CHROMA_DC_BLOCK_INDEX 26
  35. #define CHROMA_DC_COEFF_TOKEN_VLC_BITS 8
  36. #define COEFF_TOKEN_VLC_BITS 8
  37. #define TOTAL_ZEROS_VLC_BITS 9
  38. #define CHROMA_DC_TOTAL_ZEROS_VLC_BITS 3
  39. #define RUN_VLC_BITS 3
  40. #define RUN7_VLC_BITS 6
  41. #define MAX_SPS_COUNT 32
  42. #define MAX_PPS_COUNT 256
  43. #define MAX_MMCO_COUNT 66
  44. /* Compiling in interlaced support reduces the speed
  45. * of progressive decoding by about 2%. */
  46. #define ALLOW_INTERLACE
  47. #ifdef ALLOW_INTERLACE
  48. #define MB_MBAFF h->mb_mbaff
  49. #define MB_FIELD h->mb_field_decoding_flag
  50. #define FRAME_MBAFF h->mb_aff_frame
  51. #else
  52. #define MB_MBAFF 0
  53. #define MB_FIELD 0
  54. #define FRAME_MBAFF 0
  55. #undef IS_INTERLACED
  56. #define IS_INTERLACED(mb_type) 0
  57. #endif
  58. /**
  59. * Sequence parameter set
  60. */
  61. typedef struct SPS{
  62. int profile_idc;
  63. int level_idc;
  64. int transform_bypass; ///< qpprime_y_zero_transform_bypass_flag
  65. int log2_max_frame_num; ///< log2_max_frame_num_minus4 + 4
  66. int poc_type; ///< pic_order_cnt_type
  67. int log2_max_poc_lsb; ///< log2_max_pic_order_cnt_lsb_minus4
  68. int delta_pic_order_always_zero_flag;
  69. int offset_for_non_ref_pic;
  70. int offset_for_top_to_bottom_field;
  71. int poc_cycle_length; ///< num_ref_frames_in_pic_order_cnt_cycle
  72. int ref_frame_count; ///< num_ref_frames
  73. int gaps_in_frame_num_allowed_flag;
  74. int mb_width; ///< frame_width_in_mbs_minus1 + 1
  75. int mb_height; ///< frame_height_in_mbs_minus1 + 1
  76. int frame_mbs_only_flag;
  77. int mb_aff; ///<mb_adaptive_frame_field_flag
  78. int direct_8x8_inference_flag;
  79. int crop; ///< frame_cropping_flag
  80. int crop_left; ///< frame_cropping_rect_left_offset
  81. int crop_right; ///< frame_cropping_rect_right_offset
  82. int crop_top; ///< frame_cropping_rect_top_offset
  83. int crop_bottom; ///< frame_cropping_rect_bottom_offset
  84. int vui_parameters_present_flag;
  85. AVRational sar;
  86. int timing_info_present_flag;
  87. uint32_t num_units_in_tick;
  88. uint32_t time_scale;
  89. int fixed_frame_rate_flag;
  90. short offset_for_ref_frame[256]; //FIXME dyn aloc?
  91. int bitstream_restriction_flag;
  92. int num_reorder_frames;
  93. int scaling_matrix_present;
  94. uint8_t scaling_matrix4[6][16];
  95. uint8_t scaling_matrix8[2][64];
  96. }SPS;
  97. /**
  98. * Picture parameter set
  99. */
  100. typedef struct PPS{
  101. unsigned int sps_id;
  102. int cabac; ///< entropy_coding_mode_flag
  103. int pic_order_present; ///< pic_order_present_flag
  104. int slice_group_count; ///< num_slice_groups_minus1 + 1
  105. int mb_slice_group_map_type;
  106. unsigned int ref_count[2]; ///< num_ref_idx_l0/1_active_minus1 + 1
  107. int weighted_pred; ///< weighted_pred_flag
  108. int weighted_bipred_idc;
  109. int init_qp; ///< pic_init_qp_minus26 + 26
  110. int init_qs; ///< pic_init_qs_minus26 + 26
  111. int chroma_qp_index_offset[2];
  112. int deblocking_filter_parameters_present; ///< deblocking_filter_parameters_present_flag
  113. int constrained_intra_pred; ///< constrained_intra_pred_flag
  114. int redundant_pic_cnt_present; ///< redundant_pic_cnt_present_flag
  115. int transform_8x8_mode; ///< transform_8x8_mode_flag
  116. uint8_t scaling_matrix4[6][16];
  117. uint8_t scaling_matrix8[2][64];
  118. uint8_t chroma_qp_table[2][256]; ///< pre-scaled (with chroma_qp_index_offset) version of qp_table
  119. int chroma_qp_diff;
  120. }PPS;
  121. /**
  122. * Memory management control operation opcode.
  123. */
  124. typedef enum MMCOOpcode{
  125. MMCO_END=0,
  126. MMCO_SHORT2UNUSED,
  127. MMCO_LONG2UNUSED,
  128. MMCO_SHORT2LONG,
  129. MMCO_SET_MAX_LONG,
  130. MMCO_RESET,
  131. MMCO_LONG,
  132. } MMCOOpcode;
  133. /**
  134. * Memory management control operation.
  135. */
  136. typedef struct MMCO{
  137. MMCOOpcode opcode;
  138. int short_frame_num;
  139. int long_index;
  140. } MMCO;
  141. /**
  142. * H264Context
  143. */
  144. typedef struct H264Context{
  145. MpegEncContext s;
  146. int nal_ref_idc;
  147. int nal_unit_type;
  148. uint8_t *rbsp_buffer[2];
  149. unsigned int rbsp_buffer_size[2];
  150. /**
  151. * Used to parse AVC variant of h264
  152. */
  153. int is_avc; ///< this flag is != 0 if codec is avc1
  154. int got_avcC; ///< flag used to parse avcC data only once
  155. int nal_length_size; ///< Number of bytes used for nal length (1, 2 or 4)
  156. int chroma_qp[2]; //QPc
  157. int prev_mb_skipped;
  158. int next_mb_skipped;
  159. //prediction stuff
  160. int chroma_pred_mode;
  161. int intra16x16_pred_mode;
  162. int top_mb_xy;
  163. int left_mb_xy[2];
  164. int8_t intra4x4_pred_mode_cache[5*8];
  165. int8_t (*intra4x4_pred_mode)[8];
  166. void (*pred4x4 [9+3])(uint8_t *src, uint8_t *topright, int stride);//FIXME move to dsp?
  167. void (*pred8x8l [9+3])(uint8_t *src, int topleft, int topright, int stride);
  168. void (*pred8x8 [4+3])(uint8_t *src, int stride);
  169. void (*pred16x16[4+3])(uint8_t *src, int stride);
  170. unsigned int topleft_samples_available;
  171. unsigned int top_samples_available;
  172. unsigned int topright_samples_available;
  173. unsigned int left_samples_available;
  174. uint8_t (*top_borders[2])[16+2*8];
  175. uint8_t left_border[2*(17+2*9)];
  176. /**
  177. * non zero coeff count cache.
  178. * is 64 if not available.
  179. */
  180. DECLARE_ALIGNED_8(uint8_t, non_zero_count_cache[6*8]);
  181. uint8_t (*non_zero_count)[16];
  182. /**
  183. * Motion vector cache.
  184. */
  185. DECLARE_ALIGNED_8(int16_t, mv_cache[2][5*8][2]);
  186. DECLARE_ALIGNED_8(int8_t, ref_cache[2][5*8]);
  187. #define LIST_NOT_USED -1 //FIXME rename?
  188. #define PART_NOT_AVAILABLE -2
  189. /**
  190. * is 1 if the specific list MV&references are set to 0,0,-2.
  191. */
  192. int mv_cache_clean[2];
  193. /**
  194. * number of neighbors (top and/or left) that used 8x8 dct
  195. */
  196. int neighbor_transform_size;
  197. /**
  198. * block_offset[ 0..23] for frame macroblocks
  199. * block_offset[24..47] for field macroblocks
  200. */
  201. int block_offset[2*(16+8)];
  202. uint32_t *mb2b_xy; //FIXME are these 4 a good idea?
  203. uint32_t *mb2b8_xy;
  204. int b_stride; //FIXME use s->b4_stride
  205. int b8_stride;
  206. int mb_linesize; ///< may be equal to s->linesize or s->linesize*2, for mbaff
  207. int mb_uvlinesize;
  208. int emu_edge_width;
  209. int emu_edge_height;
  210. int halfpel_flag;
  211. int thirdpel_flag;
  212. int unknown_svq3_flag;
  213. int next_slice_index;
  214. SPS *sps_buffers[MAX_SPS_COUNT];
  215. SPS sps; ///< current sps
  216. PPS *pps_buffers[MAX_PPS_COUNT];
  217. /**
  218. * current pps
  219. */
  220. PPS pps; //FIXME move to Picture perhaps? (->no) do we need that?
  221. uint32_t dequant4_buffer[6][52][16];
  222. uint32_t dequant8_buffer[2][52][64];
  223. uint32_t (*dequant4_coeff[6])[16];
  224. uint32_t (*dequant8_coeff[2])[64];
  225. int dequant_coeff_pps; ///< reinit tables when pps changes
  226. int slice_num;
  227. uint8_t *slice_table_base;
  228. uint8_t *slice_table; ///< slice_table_base + 2*mb_stride + 1
  229. int slice_type;
  230. int slice_type_fixed;
  231. //interlacing specific flags
  232. int mb_aff_frame;
  233. int mb_field_decoding_flag;
  234. int mb_mbaff; ///< mb_aff_frame && mb_field_decoding_flag
  235. unsigned int sub_mb_type[4];
  236. //POC stuff
  237. int poc_lsb;
  238. int poc_msb;
  239. int delta_poc_bottom;
  240. int delta_poc[2];
  241. int frame_num;
  242. int prev_poc_msb; ///< poc_msb of the last reference pic for POC type 0
  243. int prev_poc_lsb; ///< poc_lsb of the last reference pic for POC type 0
  244. int frame_num_offset; ///< for POC type 2
  245. int prev_frame_num_offset; ///< for POC type 2
  246. int prev_frame_num; ///< frame_num of the last pic for POC type 1/2
  247. /**
  248. * frame_num for frames or 2*frame_num for field pics.
  249. */
  250. int curr_pic_num;
  251. /**
  252. * max_frame_num or 2*max_frame_num for field pics.
  253. */
  254. int max_pic_num;
  255. //Weighted pred stuff
  256. int use_weight;
  257. int use_weight_chroma;
  258. int luma_log2_weight_denom;
  259. int chroma_log2_weight_denom;
  260. int luma_weight[2][48];
  261. int luma_offset[2][48];
  262. int chroma_weight[2][48][2];
  263. int chroma_offset[2][48][2];
  264. int implicit_weight[48][48];
  265. //deblock
  266. int deblocking_filter; ///< disable_deblocking_filter_idc with 1<->0
  267. int slice_alpha_c0_offset;
  268. int slice_beta_offset;
  269. int redundant_pic_count;
  270. int direct_spatial_mv_pred;
  271. int dist_scale_factor[16];
  272. int dist_scale_factor_field[32];
  273. int map_col_to_list0[2][16];
  274. int map_col_to_list0_field[2][32];
  275. /**
  276. * num_ref_idx_l0/1_active_minus1 + 1
  277. */
  278. unsigned int ref_count[2]; ///< counts frames or fields, depending on current mb mode
  279. unsigned int list_count;
  280. Picture *short_ref[32];
  281. Picture *long_ref[32];
  282. Picture default_ref_list[2][32];
  283. Picture ref_list[2][48]; ///< 0..15: frame refs, 16..47: mbaff field refs
  284. Picture *delayed_pic[18]; //FIXME size?
  285. Picture *delayed_output_pic;
  286. /**
  287. * memory management control operations buffer.
  288. */
  289. MMCO mmco[MAX_MMCO_COUNT];
  290. int mmco_index;
  291. int long_ref_count; ///< number of actual long term references
  292. int short_ref_count; ///< number of actual short term references
  293. //data partitioning
  294. GetBitContext intra_gb;
  295. GetBitContext inter_gb;
  296. GetBitContext *intra_gb_ptr;
  297. GetBitContext *inter_gb_ptr;
  298. DECLARE_ALIGNED_8(DCTELEM, mb[16*24]);
  299. DCTELEM mb_padding[256]; ///< as mb is addressed by scantable[i] and scantable is uint8_t we can either check that i is not to large or ensure that there is some unused stuff after mb
  300. /**
  301. * Cabac
  302. */
  303. CABACContext cabac;
  304. uint8_t cabac_state[460];
  305. int cabac_init_idc;
  306. /* 0x100 -> non null luma_dc, 0x80/0x40 -> non null chroma_dc (cb/cr), 0x?0 -> chroma_cbp(0,1,2), 0x0? luma_cbp */
  307. uint16_t *cbp_table;
  308. int cbp;
  309. int top_cbp;
  310. int left_cbp;
  311. /* chroma_pred_mode for i4x4 or i16x16, else 0 */
  312. uint8_t *chroma_pred_mode_table;
  313. int last_qscale_diff;
  314. int16_t (*mvd_table[2])[2];
  315. DECLARE_ALIGNED_8(int16_t, mvd_cache[2][5*8][2]);
  316. uint8_t *direct_table;
  317. uint8_t direct_cache[5*8];
  318. uint8_t zigzag_scan[16];
  319. uint8_t zigzag_scan8x8[64];
  320. uint8_t zigzag_scan8x8_cavlc[64];
  321. uint8_t field_scan[16];
  322. uint8_t field_scan8x8[64];
  323. uint8_t field_scan8x8_cavlc[64];
  324. const uint8_t *zigzag_scan_q0;
  325. const uint8_t *zigzag_scan8x8_q0;
  326. const uint8_t *zigzag_scan8x8_cavlc_q0;
  327. const uint8_t *field_scan_q0;
  328. const uint8_t *field_scan8x8_q0;
  329. const uint8_t *field_scan8x8_cavlc_q0;
  330. int x264_build;
  331. }H264Context;
  332. #endif /* H264_H */