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.

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