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.

420 lines
13KB

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