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.

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