28 #ifndef AVCODEC_H264_H
29 #define AVCODEC_H264_H
46 #define H264_MAX_PICTURE_COUNT 36
47 #define H264_MAX_THREADS 32
49 #define MAX_SPS_COUNT 32
50 #define MAX_PPS_COUNT 256
52 #define MAX_MMCO_COUNT 66
54 #define MAX_DELAYED_PIC_COUNT 16
56 #define MAX_MBPAIR_SIZE (256*1024) // a tighter bound could be calculated if someone cares about a few bytes
60 #define ALLOW_INTERLACE
70 #ifdef ALLOW_INTERLACE
71 #define MB_MBAFF(h) (h)->mb_mbaff
72 #define MB_FIELD(sl) (sl)->mb_field_decoding_flag
73 #define FRAME_MBAFF(h) (h)->mb_aff_frame
74 #define FIELD_PICTURE(h) ((h)->picture_structure != PICT_FRAME)
81 #define MB_FIELD(sl) 0
82 #define FRAME_MBAFF(h) 0
83 #define FIELD_PICTURE(h) 0
85 #define IS_INTERLACED(mb_type) 0
91 #define FIELD_OR_MBAFF_PICTURE(h) (FRAME_MBAFF(h) || FIELD_PICTURE(h))
94 #define CABAC(h) (h)->pps.cabac
97 #define CHROMA(h) ((h)->sps.chroma_format_idc)
98 #define CHROMA422(h) ((h)->sps.chroma_format_idc == 2)
99 #define CHROMA444(h) ((h)->sps.chroma_format_idc == 3)
101 #define EXTENDED_SAR 255
103 #define MB_TYPE_REF0 MB_TYPE_ACPRED // dirty but it fits in 16 bit
104 #define MB_TYPE_8x8DCT 0x01000000
105 #define IS_REF0(a) ((a) & MB_TYPE_REF0)
106 #define IS_8x8DCT(a) ((a) & MB_TYPE_8x8DCT)
108 #define QP_MAX_NUM (51 + 6*6) // The maximum supported qp
535 #define LIST_NOT_USED -1 // FIXME rename?
536 #define PART_NOT_AVAILABLE -2
763 #define FRAME_RECOVERED_IDR (1 << 0)
768 #define FRAME_RECOVERED_SEI (1 << 1)
833 int *dst_length,
int *consumed,
int length);
882 int mode,
int is_chroma);
912 unsigned int linesize,
unsigned int uvlinesize);
915 unsigned int linesize,
unsigned int uvlinesize);
960 #define LUMA_DC_BLOCK_INDEX 48
961 #define CHROMA_DC_BLOCK_INDEX 49
965 4 + 1 * 8, 5 + 1 * 8, 4 + 2 * 8, 5 + 2 * 8,
966 6 + 1 * 8, 7 + 1 * 8, 6 + 2 * 8, 7 + 2 * 8,
967 4 + 3 * 8, 5 + 3 * 8, 4 + 4 * 8, 5 + 4 * 8,
968 6 + 3 * 8, 7 + 3 * 8, 6 + 4 * 8, 7 + 4 * 8,
969 4 + 6 * 8, 5 + 6 * 8, 4 + 7 * 8, 5 + 7 * 8,
970 6 + 6 * 8, 7 + 6 * 8, 6 + 7 * 8, 7 + 7 * 8,
971 4 + 8 * 8, 5 + 8 * 8, 4 + 9 * 8, 5 + 9 * 8,
972 6 + 8 * 8, 7 + 8 * 8, 6 + 9 * 8, 7 + 9 * 8,
973 4 + 11 * 8, 5 + 11 * 8, 4 + 12 * 8, 5 + 12 * 8,
974 6 + 11 * 8, 7 + 11 * 8, 6 + 12 * 8, 7 + 12 * 8,
975 4 + 13 * 8, 5 + 13 * 8, 4 + 14 * 8, 5 + 14 * 8,
976 6 + 13 * 8, 7 + 13 * 8, 6 + 14 * 8, 7 + 14 * 8,
977 0 + 0 * 8, 0 + 5 * 8, 0 + 10 * 8
983 return (b & 0xFFFF) + (a << 16);
985 return (a & 0xFFFF) + (b << 16);
992 return (b & 0xFF) + (a << 8);
994 return (a & 0xFF) + (b << 8);
1012 const int index8 =
scan8[
n];
1017 ff_tlog(h->
avctx,
"mode:%d %d min:%d\n", left, top, min);
1031 AV_COPY32(i4x4, i4x4_cache + 4 + 8 * 4);
1032 i4x4[4] = i4x4_cache[7 + 8 * 3];
1033 i4x4[5] = i4x4_cache[7 + 8 * 2];
1034 i4x4[6] = i4x4_cache[7 + 8 * 1];
1040 const int mb_xy = sl->
mb_xy;
1044 AV_COPY32(&nnz[ 0], &nnz_cache[4 + 8 * 1]);
1045 AV_COPY32(&nnz[ 4], &nnz_cache[4 + 8 * 2]);
1046 AV_COPY32(&nnz[ 8], &nnz_cache[4 + 8 * 3]);
1047 AV_COPY32(&nnz[12], &nnz_cache[4 + 8 * 4]);
1048 AV_COPY32(&nnz[16], &nnz_cache[4 + 8 * 6]);
1049 AV_COPY32(&nnz[20], &nnz_cache[4 + 8 * 7]);
1050 AV_COPY32(&nnz[32], &nnz_cache[4 + 8 * 11]);
1051 AV_COPY32(&nnz[36], &nnz_cache[4 + 8 * 12]);
1054 AV_COPY32(&nnz[24], &nnz_cache[4 + 8 * 8]);
1055 AV_COPY32(&nnz[28], &nnz_cache[4 + 8 * 9]);
1056 AV_COPY32(&nnz[40], &nnz_cache[4 + 8 * 13]);
1057 AV_COPY32(&nnz[44], &nnz_cache[4 + 8 * 14]);
1064 int b_xy,
int b8_xy,
1065 int mb_type,
int list)
1069 AV_COPY128(mv_dst + 0 * b_stride, mv_src + 8 * 0);
1070 AV_COPY128(mv_dst + 1 * b_stride, mv_src + 8 * 1);
1071 AV_COPY128(mv_dst + 2 * b_stride, mv_src + 8 * 2);
1072 AV_COPY128(mv_dst + 3 * b_stride, mv_src + 8 * 3);
1081 AV_COPY16(mvd_dst + 3 + 3, mvd_src + 3 + 8 * 0);
1082 AV_COPY16(mvd_dst + 3 + 2, mvd_src + 3 + 8 * 1);
1083 AV_COPY16(mvd_dst + 3 + 1, mvd_src + 3 + 8 * 2);
1089 int8_t *ref_cache = sl->
ref_cache[list];
1090 ref_index[0 + 0 * 2] = ref_cache[
scan8[0]];
1091 ref_index[1 + 0 * 2] = ref_cache[scan8[4]];
1092 ref_index[0 + 1 * 2] = ref_cache[scan8[8]];
1093 ref_index[1 + 1 * 2] = ref_cache[scan8[12]];
1103 const int b8_xy = 4 * sl->
mb_xy;
1129 0x0001000100010001ULL));
1133 0x0001000100010001ULL));
1137 int buf_index,
int next_avc)
1139 uint32_t
state = -1;
1143 return FFMIN(buf_index, buf_size);
1147 int buf_size,
int *buf_index)
1155 nalsize = ((
unsigned)nalsize << 8) | buf[(*buf_index)++];
1156 if (nalsize <= 0 || nalsize > buf_size - *buf_index) {
1158 "AVC: nal size %d\n", nalsize);
1177 #define SLICE_SINGLETHREAD 1
1178 #define SLICE_SKIPED 2
int ff_init_poc(H264Context *h, int pic_field_poc[2], int *pic_poc)
struct H264Context * h264
int video_signal_type_present_flag
const uint8_t * left_block
void ff_h264_unref_picture(H264Context *h, H264Picture *pic)
Memory management control operation.
int long_ref
1->long term reference 0->short term reference
int single_decode_warning
1 if the single thread fallback warning has already been displayed, 0 otherwise.
int sei_recovery_frame_cnt
int ff_h264_slice_context_init(H264Context *h, H264SliceContext *sl)
Init context Allocate buffers which are not shared amongst multiple threads.
int ff_h264_execute_decode_slices(H264Context *h, unsigned context_count)
Call decode_slice() for each context.
5: top field, bottom field, top field repeated, in that order
int sei_cpb_removal_delay
cpb_removal_delay in picture timing SEI message, see H.264 C.1.2
int ff_h264_decode_ref_pic_list_reordering(H264Context *h, H264SliceContext *sl)
This structure describes decoded (raw) audio or video data.
int16_t mv_cache[2][5 *8][2]
Motion vector cache.
ptrdiff_t const GLvoid * data
int neighbor_transform_size
number of neighbors (top and/or left) that used 8x8 dct
int dist_scale_factor[32]
int luma_weight[48][2][2]
int edge_emu_buffer_allocated
3: top field, bottom field, in that order
#define H264_MAX_PICTURE_COUNT
int ff_h264_decode_mb_cavlc(const H264Context *h, H264SliceContext *sl)
Decode a macroblock.
uint8_t field_scan8x8_q0[64]
int chroma_qp_index_offset[2]
unsigned int topleft_samples_available
H264ChromaContext h264chroma
int scaling_matrix_present
MMCO mmco[MAX_MMCO_COUNT]
memory management control operations buffer.
uint8_t scaling_matrix4[6][16]
uint8_t mvd_cache[2][5 *8][2]
int initial_cpb_removal_delay[32]
Initial timestamps for CPBs.
int bitstream_restriction_flag
unsigned int ref_count[2]
num_ref_idx_l0/1_active_minus1 + 1
AVBufferRef * mb_type_buf
int bipred_scratchpad_allocated
void ff_h264_direct_ref_list_init(const H264Context *const h, H264SliceContext *sl)
AVBufferPool * mb_type_pool
qpel_mc_func(* qpel_put)[16]
void ff_h264_filter_mb_fast(const H264Context *h, H264SliceContext *sl, int mb_x, int mb_y, uint8_t *img_y, uint8_t *img_cb, uint8_t *img_cr, unsigned int linesize, unsigned int uvlinesize)
#define DECLARE_ALIGNED(n, t, v)
int16_t(*[2] motion_val)[2]
H264Picture * delayed_pic[MAX_DELAYED_PIC_COUNT+2]
int is_avc
Used to parse AVC variant of h264.
AVBufferPool * ref_index_pool
MMCOOpcode
Memory management control operation opcode.
uint8_t zigzag_scan8x8_cavlc[64]
void(* qpel_mc_func)(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)
uint32_t dequant8_buffer[6][QP_MAX_NUM+1][64]
void ff_h264_decode_init_vlc(void)
int16_t mb_padding[256 *2]
static av_always_inline void write_back_motion(const H264Context *h, H264SliceContext *sl, int mb_type)
static av_always_inline void write_back_non_zero_count(const H264Context *h, H264SliceContext *sl)
int prev_poc_msb
poc_msb of the last reference pic for POC type 0
int frame_packing_arrangement_repetition_period
uint32_t num_units_in_tick
void ff_h264_filter_mb(const H264Context *h, H264SliceContext *sl, int mb_x, int mb_y, uint8_t *img_y, uint8_t *img_cb, uint8_t *img_cr, unsigned int linesize, unsigned int uvlinesize)
4: bottom field, top field, in that order
H264Picture * long_ref[32]
H264Ref default_ref_list[2][32]
base reference list for all slices of a coded picture
int luma_weight_flag[2]
7.4.3.2 luma_weight_lX_flag
int frame_packing_arrangement_id
unsigned current_sps_id
id of the current SPS
AVColorTransferCharacteristic
Color Transfer Characteristic.
unsigned int ref_count[2]
num_ref_idx_l0/1_active_minus1 + 1
void ff_h264_free_context(H264Context *h)
Free any data that may have been allocated in the H264 context like SPS, PPS etc. ...
uint8_t * chroma_pred_mode_table
void ff_h264_pred_direct_motion(const H264Context *const h, H264SliceContext *sl, int *mb_type)
unsigned int crop_top
frame_cropping_rect_top_offset
#define USES_LIST(a, list)
int fixed_frame_rate_flag
static av_always_inline uint16_t pack8to16(unsigned a, unsigned b)
uint8_t scaling_matrix4[6][16]
int deblocking_filter_parameters_present
deblocking_filter_parameters_present_flag
uint16_t sub_mb_type[4]
as a dct coefficient is int32_t in high depth, we need to reserve twice the space.
int short_pic_num
pic_num without wrapping (pic_num & max_pic_num)
uint32_t(*[6] dequant4_coeff)[16]
int prev_frame_num_offset
for POC type 2
SEI_FpaType frame_packing_arrangement_type
unsigned int crop_left
frame_cropping_rect_left_offset
int offset_for_non_ref_pic
int ff_h264_check_intra_pred_mode(const H264Context *h, H264SliceContext *sl, int mode, int is_chroma)
Check if the top & left blocks are available if needed & change the dc mode so it only uses the avail...
void ff_h264_reset_sei(H264Context *h)
Reset SEI values at the beginning of the frame.
int gaps_in_frame_num_allowed_flag
int slice_alpha_c0_offset
int field_picture
whether or not picture was encoded in separate fields
int bit_depth_chroma
bit_depth_chroma_minus8 + 8
AVColorSpace
YUV colorspace type.
int ff_h264_alloc_tables(H264Context *h)
Allocate tables.
enum AVColorPrimaries color_primaries
void ff_h264_direct_dist_scale_factor(const H264Context *const h, H264SliceContext *sl)
int ff_h264_check_intra4x4_pred_mode(const H264Context *h, H264SliceContext *sl)
Check if the top & left blocks are available if needed & change the dc mode so it only uses the avail...
int cabac
entropy_coding_mode_flag
static int find_start_code(const uint8_t *buf, int buf_size, int buf_index, int next_avc)
unsigned int crop_right
frame_cropping_rect_right_offset
SEI_PicStructType
pic_struct in picture timing SEI message
unsigned int last_ref_count[2]
uint8_t(*[2] top_borders)[(16 *3)*2]
Context for storing H.264 prediction functions.
int frame_recovered
Initial frame has been completely recovered.
int map_col_to_list0_field[2][2][16+32]
static av_always_inline int pred_intra_mode(const H264Context *h, H264SliceContext *sl, int n)
Get the predicted intra4x4 prediction mode.
int transform_bypass
qpprime_y_zero_transform_bypass_flag
qpel_mc_func(* qpel_avg)[16]
int redundant_pic_cnt_present
redundant_pic_cnt_present_flag
bitstream reader API header.
#define MAX_DELAYED_PIC_COUNT
static void fill_rectangle(SDL_Surface *screen, int x, int y, int w, int h, int color, int update)
AVBufferRef * qscale_table_buf
SEI_Type
SEI message types.
int ff_h264_decode_mb_cabac(const H264Context *h, H264SliceContext *sl)
Decode a CABAC coded macroblock.
AVColorPrimaries
Chromaticity coordinates of the source primaries.
int recovered
picture at IDR or recovery point + recovery count
int ff_h264_fill_default_ref_list(H264Context *h, H264SliceContext *sl)
Fill the default_ref_list.
const uint8_t * avpriv_find_start_code(const uint8_t *p, const uint8_t *end, uint32_t *state)
unsigned int rbsp_buffer_size
int last_pocs[MAX_DELAYED_PIC_COUNT]
#define MAX_SLICES
The maximum number of slices supported by the decoder.
unsigned int topright_samples_available
void ff_h264_hl_decode_mb(const H264Context *h, H264SliceContext *sl)
const uint8_t ff_h264_chroma_qp[7][QP_MAX_NUM+1]
One chroma qp table for each possible bit depth (8-14).
enum AVColorTransferCharacteristic color_trc
int mb_aff
mb_adaptive_frame_field_flag
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
static av_always_inline int get_dct8x8_allowed(const H264Context *h, H264SliceContext *sl)
int poc_type
pic_order_cnt_type
static av_always_inline void write_back_intra_pred_mode(const H264Context *h, H264SliceContext *sl)
int constrained_intra_pred
constrained_intra_pred_flag
void * hwaccel_picture_private
hardware accelerator private data
int map_col_to_list0[2][16+32]
int ff_h264_decode_extradata(H264Context *h, const uint8_t *buf, int size)
int8_t intra4x4_pred_mode_cache[5 *8]
SEI_FpaType
frame_packing_arrangement types
int deblocking_filter
disable_deblocking_filter_idc with 1 <-> 0
uint8_t(*[2] mvd_table)[2]
int prev_interlaced_frame
Complement sei_pic_struct SEI_PIC_STRUCT_TOP_BOTTOM and SEI_PIC_STRUCT_BOTTOM_TOP indicate interlaced...
int ref_poc[2][2][32]
POCs of the frames/fields used as reference (FIXME need per slice)
int weighted_pred
weighted_pred_flag
int direct_spatial_mv_pred
unsigned int top_samples_available
int frame_num
frame_num (raw frame_num from slice header)
static av_always_inline uint32_t pack16to32(unsigned a, unsigned b)
int valid_recovery_point
Are the SEI recovery points looking valid.
int residual_color_transform_flag
residual_colour_transform_flag
uint8_t * list_counts
Array of list_count per MB specifying the slice type.
int delta_pic_order_always_zero_flag
int offset_for_top_to_bottom_field
int slice_type_nos
S free slice type (SI/SP are remapped to I/P)
int ff_h264_decode_slice_header(H264Context *h, H264SliceContext *sl)
Decode a slice header.
uint8_t zigzag_scan8x8[64]
AVBufferRef * hwaccel_priv_buf
static const uint8_t scan8[16 *3+3]
const uint16_t ff_h264_mb_sizes[4]
uint8_t cabac_state[1024]
int crop
frame_cropping_flag
int ff_h264_decode_init(AVCodecContext *avctx)
int16_t mb_luma_dc[3][16 *2]
as mb is addressed by scantable[i] and scantable is uint8_t we can either check that i is not too lar...
int content_interpretation_type
uint8_t scaling_matrix8[6][64]
int nal_length_size
Number of bytes used for nal length (1, 2 or 4)
useful rectangle filling function
AVBufferRef * motion_val_buf[2]
int sei_anticlockwise_rotation
Context for storing H.264 DSP functions.
int ref_frame_count
num_ref_frames
int frame_num_offset
for POC type 2
int initial_cpb_removal_delay_length
initial_cpb_removal_delay_length_minus1 + 1
const uint8_t * ff_h264_decode_nal(H264Context *h, H264SliceContext *sl, const uint8_t *src, int *dst_length, int *consumed, int length)
Decode a network abstraction layer unit.
uint16_t * slice_table
slice_table_base + 2*mb_stride + 1
uint8_t field_scan8x8_cavlc[64]
int poc_cycle_length
num_ref_frames_in_pic_order_cnt_cycle
int colour_description_present_flag
int sei_frame_packing_present
frame_packing_arrangment SEI message
int long_ref_count
number of actual long term references
int ff_h264_ref_picture(H264Context *h, H264Picture *dst, H264Picture *src)
PPS * pps_buffers[MAX_PPS_COUNT]
uint8_t chroma_qp_table[2][QP_MAX_NUM+1]
pre-scaled (with chroma_qp_index_offset) version of qp_table
int ff_h264_decode_picture_parameter_set(H264Context *h, int bit_length)
Decode PPS.
void ff_h264_free_tables(H264Context *h)
int init_qp
pic_init_qp_minus26 + 26
H264SliceContext * slice_ctx
int direct_8x8_inference_flag
int max_pic_num
max_frame_num or 2 * max_frame_num for field pics.
int top_borders_allocated[2]
int ff_generate_sliding_window_mmcos(H264Context *h, int first_slice)
uint8_t scaling_matrix8[6][64]
frame packing arrangement
int curr_pic_num
frame_num for frames or 2 * frame_num + 1 for field pics.
int chroma_log2_weight_denom
uint32_t dequant4_buffer[6][QP_MAX_NUM+1][16]
void ff_h264_init_cabac_states(const H264Context *h, H264SliceContext *sl)
uint8_t * edge_emu_buffer
int ff_h264_get_slice_type(const H264SliceContext *sl)
Reconstruct bitstream slice_type.
int dequant_coeff_pps
reinit tables when pps changes
int pic_order_present
pic_order_present_flag
SPS * sps_buffers[MAX_SPS_COUNT]
uint8_t zigzag_scan_q0[16]
int bit_depth_luma
luma bit depth from sps to detect changes
short offset_for_ref_frame[256]
int chroma_format_idc
chroma format from sps to detect changes
int timing_info_present_flag
int ff_h264_execute_ref_pic_marking(H264Context *h, MMCO *mmco, int mmco_count)
Execute the reference picture marking (memory management control operations).
int vcl_hrd_parameters_present_flag
uint8_t zigzag_scan8x8_q0[64]
user data registered by ITU-T Recommendation T.35
void ff_h264_remove_all_refs(H264Context *h)
int prev_frame_num
frame_num of the last pic for POC type 1/2
H264Picture * short_ref[32]
int ff_h264_decode_sei(H264Context *h)
Decode SEI.
int field_poc[2]
top/bottom POC
int recovery_frame
recovery_frame is the frame_num at which the next frame should be fully constructed.
int max_contexts
Max number of threads / contexts.
main external API structure.
int qp_thresh
QP threshold to skip loopfilter.
int dpb_output_delay_length
dpb_output_delay_length_minus1 + 1
int vui_parameters_present_flag
int frame_packing_arrangement_type
int constraint_set_flags
constraint_set[0-3]_flag
SEI_PicStructType sei_pic_struct
pic_struct in picture timing SEI message
static av_always_inline void write_back_motion_list(const H264Context *h, H264SliceContext *sl, int b_stride, int b_xy, int b8_xy, int mb_type, int list)
BYTE int const BYTE int int int height
int ff_h264_update_thread_context(AVCodecContext *dst, const AVCodecContext *src)
static int get_avc_nalsize(H264Context *h, const uint8_t *buf, int buf_size, int *buf_index)
Describe the class of an AVClass context structure.
uint8_t non_zero_count_cache[15 *8]
non zero coeff count cache.
uint32_t(*[6] dequant8_coeff)[64]
rational number numerator/denominator
int pixel_shift
0 for 8-bit H264, 1 for high-bit-depth H264
int mmco_reset
MMCO_RESET set this 1.
int ff_h264_decode_ref_pic_marking(H264Context *h, GetBitContext *gb, int first_slice)
H264Picture * cur_pic_ptr
int mb_mbaff
mb_aff_frame && mb_field_decoding_flag
uint8_t direct_cache[5 *8]
int frame_packing_arrangement_cancel_flag
is previous arrangement canceled, -1 if never received
int log2_max_poc_lsb
log2_max_pic_order_cnt_lsb_minus4
6: bottom field, top field, bottom field repeated, in that order
int sei_buffering_period_present
Buffering period SEI flag.
ptrdiff_t mb_linesize
may be equal to s->linesize or s->linesize * 2, for mbaff
int16_t slice_row[MAX_SLICES]
to detect when MAX_SLICES is too low
int block_offset[2 *(16 *3)]
block_offset[ 0..23] for frame macroblocks block_offset[24..47] for field macroblocks ...
int quincunx_sampling_flag
int transform_8x8_mode
transform_8x8_mode_flag
H.264 / AVC / MPEG4 prediction functions.
int pic_struct_present_flag
int ff_set_ref_count(H264Context *h, H264SliceContext *sl)
int mbaff
1 -> MBAFF frame 0-> not MBAFF
A reference to a data buffer.
void ff_h264_flush_change(H264Context *h)
int ff_h264_decode_seq_parameter_set(H264Context *h, int ignore_truncation)
Decode SPS.
AVBufferPool * qscale_table_pool
H264Picture * next_output_pic
AVBufferPool * motion_val_pool
int mb_height
pic_height_in_map_units_minus1 + 1
int init_qs
pic_init_qs_minus26 + 26
int pic_id
pic_num (short -> no wrap version of pic_num, pic_num & max_pic_num; long -> long_pic_num) ...
common internal api header.
int nal_hrd_parameters_present_flag
uint16_t * slice_table_base
int log2_max_frame_num
log2_max_frame_num_minus4 + 4
int ff_pred_weight_table(H264Context *h, H264SliceContext *sl)
void ff_h264_fill_mbaff_ref_list(H264Context *h, H264SliceContext *sl)
const char * ff_h264_sei_stereo_mode(H264Context *h)
Get stereo_mode string from the h264 frame_packing_arrangement.
int implicit_weight[48][48][2]
int cur_chroma_format_idc
int8_t * intra4x4_pred_mode
int long_arg
index, pic_num, or num long refs depending on opcode
int sei_ct_type
Bit set of clock types for fields/frames in picture timing SEI message.
int ref2frm[MAX_SLICES][2][64]
reference to frame number lists, used in the loop filter, the first 2 are for -2,-1 ...
Core video DSP helper functions.
int bit_depth_luma
bit_depth_luma_minus8 + 8
static av_always_inline int get_chroma_qp(const H264Context *h, int t, int qscale)
Get the chroma qp.
int ff_h264_field_end(H264Context *h, H264SliceContext *sl, int in_setup)
int prev_poc_lsb
poc_lsb of the last reference pic for POC type 0
void ff_h264_set_erpic(ERPicture *dst, H264Picture *src)
uint8_t zigzag_scan8x8_cavlc_q0[64]
int8_t ref_cache[2][5 *8]
Decoded Picture Buffer (DPB).
int luma_log2_weight_denom
int chroma_weight[48][2][2][2]
Frame Packing Arrangement Type.
int sei_display_orientation_present
display orientation SEI message
int content_interpretation_type
enum AVPictureType pict_type
void ff_h264_draw_horiz_band(const H264Context *h, H264SliceContext *sl, int y, int height)
int current_slice
current slice number, used to initialize slice_num of each thread/context
buffering period (H.264, D.1.1)
int mb_width
pic_width_in_mbs_minus1 + 1
int slice_group_count
num_slice_groups_minus1 + 1
H264Ref ref_list[2][48]
0..15: frame refs, 16..47: mbaff field refs.
uint8_t field_scan8x8_cavlc_q0[64]
int cpb_cnt
See H.264 E.1.2.
AVBufferRef * ref_index_buf[2]
H264Picture last_pic_for_ec
int au_pps_id
pps_id of current access unit
const uint8_t * intra_pcm_ptr
int ff_h264_get_profile(SPS *sps)
compute profile from sps
unsigned int left_samples_available
int ref_count[2][2]
number of entries in ref_poc (FIXME need per slice)
uint8_t(*[2] mvd_table)[2]
uint8_t field_scan8x8[64]
int8_t * intra4x4_pred_mode
int dist_scale_factor_field[2][32]
int cpb_removal_delay_length
cpb_removal_delay_length_minus1 + 1
uint8_t field_scan_q0[16]
int mb_field_decoding_flag
uint8_t(* non_zero_count)[48]
unsigned int crop_bottom
frame_cropping_rect_bottom_offset
uint8_t * bipred_scratchpad
int sei_recovery_frame_cnt
recovery_frame_cnt from SEI message
int sei_dpb_output_delay
dpb_output_delay in picture timing SEI message, see H.264 C.2.2
recovery point (frame # to decoder sync)
Context Adaptive Binary Arithmetic Coder.
int chroma_weight_flag[2]
7.4.3.2 chroma_weight_lX_flag
int short_ref_count
number of actual short term references
void ff_h264_init_dequant_tables(H264Context *h)
int mb_slice_group_map_type
enum AVColorSpace colorspace