📄 global.h
字号:
BiContextType cipr_contexts[NUM_CIPR_CTX];
BiContextType cbp_contexts [3][NUM_CBP_CTX];
BiContextType bcbp_contexts[NUM_BLOCK_TYPES][NUM_BCBP_CTX];
BiContextType map_contexts [NUM_BLOCK_TYPES][NUM_MAP_CTX];
BiContextType last_contexts[NUM_BLOCK_TYPES][NUM_LAST_CTX];
BiContextType one_contexts [NUM_BLOCK_TYPES][NUM_ONE_CTX];
BiContextType abs_contexts [NUM_BLOCK_TYPES][NUM_ABS_CTX];
BiContextType fld_map_contexts [NUM_BLOCK_TYPES][NUM_MAP_CTX];
BiContextType fld_last_contexts[NUM_BLOCK_TYPES][NUM_LAST_CTX];
} TextureInfoContexts;
//*********************** end of data type definition for CABAC *******************
/***********************************************************************
* N e w D a t a t y p e s f o r T M L
***********************************************************************
*/
struct img_par;
struct inp_par;
struct stat_par;
/*! Buffer structure for decoded referenc picture marking commands */
typedef struct DecRefPicMarking_s
{
int memory_management_control_operation;
int difference_of_pic_nums_minus1;
int long_term_pic_num;
int long_term_frame_idx;
int max_long_term_frame_idx_plus1;
struct DecRefPicMarking_s *Next;
} DecRefPicMarking_t;
//! Syntaxelement
typedef struct syntaxelement
{
int type; //!< type of syntax element for data part.
int value1; //!< numerical value of syntax element
int value2; //!< for blocked symbols, e.g. run/level
int len; //!< length of code
int inf; //!< info part of UVLC code
unsigned int bitpattern; //!< UVLC bitpattern
int context; //!< CABAC context
int k; //!< CABAC context for coeff_count,uv
#ifdef ADAPTIVE_FD_SD_CODING
int writing_b4;
int writing_b8;
#endif
#if TRACE
#define TRACESTRING_SIZE 100 //!< size of trace string
char tracestring[TRACESTRING_SIZE]; //!< trace string
#endif
//! for mapping of UVLC to syntaxElement
void (*mapping)(int len, int info, int *value1, int *value2);
//! used for CABAC: refers to actual coding method of each individual syntax element type
void (*reading)(struct syntaxelement *, struct inp_par *, struct img_par *, DecodingEnvironmentPtr);
} SyntaxElement;
//! Macroblock
typedef struct macroblock
{
int qp; //!< QP luma
int qpc[2]; //!< QP chroma
int slice_nr;
int delta_quant; //!< for rate control
struct macroblock *mb_available_up; //!< pointer to neighboring MB (CABAC)
struct macroblock *mb_available_left; //!< pointer to neighboring MB (CABAC)
// some storage of macroblock syntax elements for global access
int mb_type;
int mvd[2][BLOCK_MULTIPLE][BLOCK_MULTIPLE][2]; //!< indices correspond to [forw,backw][block_y][block_x][x,y]
int cbp;
int64 cbp_blk ;
int64 cbp_bits;
#ifdef ADAPTIVE_FD_SD_CODING
int64 FD_or_SD_bits;
int written_SD_Coding_on_off;
int SD_Coding_on_off;
int SD_or_FD [2][2]; //y,x
int SD_or_FD_t8x8; //y,x
int quantizer_indices [16][16]; //y,x
#endif
int is_skip;
#ifdef ADAPTIVE_QUANTIZATION
int mb_iaqms_idx;
#endif
int i16mode;
int b8mode[4];
int b8pdir[4];
int ei_flag;
int LFDisableIdc;
int LFAlphaC0Offset;
int LFBetaOffset;
int c_ipred_mode; //!< chroma intra prediction mode
int mb_field;
int skip_flag;
int mbAddrA, mbAddrB, mbAddrC, mbAddrD;
int mbAvailA, mbAvailB, mbAvailC, mbAvailD;
int luma_transform_size_8x8_flag;
int NoMbPartLessThan8x8Flag;
} Macroblock;
//! Bitstream
typedef struct
{
// CABAC Decoding
int read_len; //!< actual position in the codebuffer, CABAC only
int code_len; //!< overall codebuffer length, CABAC only
// UVLC Decoding
int frame_bitoffset; //!< actual position in the codebuffer, bit-oriented, UVLC only
int bitstream_length; //!< over codebuffer lnegth, byte oriented, UVLC only
// ErrorConcealment
byte *streamBuffer; //!< actual codebuffer for read bytes
int ei_flag; //!< error indication, 0: no error, else unspecified error
} Bitstream;
//! DataPartition
typedef struct datapartition
{
Bitstream *bitstream;
DecodingEnvironment de_cabac;
int (*readSyntaxElement)(SyntaxElement *, struct img_par *, struct inp_par *, struct datapartition *);
/*!< virtual function;
actual method depends on chosen data partition and
entropy coding method */
} DataPartition;
//! Slice
typedef struct
{
int ei_flag; //!< 0 if the partArr[0] contains valid information
int qp;
int slice_qp_delta;
int picture_type; //!< picture type
PictureStructure structure; //!< Identify picture structure type
int start_mb_nr; //!< MUST be set by NAL even in case of ei_flag == 1
int max_part_nr;
int dp_mode; //!< data partioning mode
int next_header;
// int last_mb_nr; //!< only valid when entropy coding == CABAC
DataPartition *partArr; //!< array of partitions
MotionInfoContexts *mot_ctx; //!< pointer to struct of context models for use in CABAC
TextureInfoContexts *tex_ctx; //!< pointer to struct of context models for use in CABAC
int ref_pic_list_reordering_flag_l0;
int *reordering_of_pic_nums_idc_l0;
int *abs_diff_pic_num_minus1_l0;
int *long_term_pic_idx_l0;
int ref_pic_list_reordering_flag_l1;
int *reordering_of_pic_nums_idc_l1;
int *abs_diff_pic_num_minus1_l1;
int *long_term_pic_idx_l1;
int (*readSlice)(struct img_par *, struct inp_par *);
int LFDisableIdc; //!< Disable loop filter on slice
int LFAlphaC0Offset; //!< Alpha and C0 offset for filtering slice
int LFBetaOffset; //!< Beta offset for filtering slice
int pic_parameter_set_id; //!<the ID of the picture parameter set the slice is reffering to
} Slice;
//****************************** ~DM ***********************************
// image parameters
typedef struct img_par
{
int number; //!< frame number
unsigned int current_mb_nr; // bitstream order
unsigned int num_dec_mb;
int current_slice_nr;
int *intra_block;
int tr; //!< temporal reference, 8 bit, wrapps at 255
int qp; //!< quant for the current frame
int qpsp; //!< quant for SP-picture predicted frame
int sp_switch; //!< 1 for switching sp, 0 for normal sp
int direct_spatial_mv_pred_flag; //!< 1 for Spatial Direct, 0 for Temporal
int type; //!< image type INTER/INTRA
int width;
int height;
int width_cr; //!< width chroma
int height_cr; //!< height chroma
int mb_y;
int mb_x;
int block_y;
int pix_y;
int pix_x;
int pix_c_y;
int block_x;
int pix_c_x;
int allrefzero;
imgpel mpr[16][16]; //!< predicted block
int mvscale[6][MAX_REFERENCE_PICTURES];
// <FTRD : Compatibility with hierarchical B frames
#ifdef MV_COMPETITION
int mvscale_hb[2][2][MAX_REFERENCE_PICTURES][MAX_REFERENCE_PICTURES];
#endif
// FTRD>
int m7[16][16]; //!< final 4x4 block. Extended to 16x16 for ABT
int cof[4][12][4][4]; //!< correction coefficients from predicted
int cofu[16];
int **ipredmode; //!< prediction type [90][74]
int *quad;
int ***nz_coeff;
int **siblock;
int cod_counter; //!< Current count of number of skipped macroblocks in a row
int newframe;
int structure; //!< Identify picture structure type
int pstruct_next_P;
// B pictures
Slice *currentSlice; //!< pointer to current Slice data struct
Macroblock *mb_data; //!< array containing all MBs of a whole frame
int subblock_x;
int subblock_y;
int is_intra_block;
int is_v_block;
// For MB level frame/field coding
int MbaffFrameFlag;
// for signalling to the neighbour logic that this is a deblocker call
int DeblockCall;
int **field_anchor;
#ifdef EIGHTH_PEL
int mv_res; //!< motion vector resolution 0 = 1/4-pel; 1 = 1/8-pel
#endif
#ifdef ADAPTIVE_FD_SD_CODING
int Allow_SD_Coding;
int SD_Quantizer;
#endif
DecRefPicMarking_t *dec_ref_pic_marking_buffer; //!< stores the memory management control operations
int num_ref_idx_l0_active; //!< number of forward reference
int num_ref_idx_l1_active; //!< number of backward reference
int slice_group_change_cycle;
int redundant_pic_cnt;
int explicit_B_prediction;
unsigned int pre_frame_num; //!< store the frame_num in the last decoded slice. For detecting gap in frame_num.
// End JVT-D101
// POC200301: from unsigned int to int
int toppoc; //poc for this top field // POC200301
int bottompoc; //poc of bottom field of frame
int framepoc; //poc of this frame // POC200301
unsigned int frame_num; //frame_num for this frame
unsigned int field_pic_flag;
unsigned int bottom_field_flag;
//the following is for slice header syntax elements of poc
// for poc mode 0.
unsigned int pic_order_cnt_lsb;
int delta_pic_order_cnt_bottom;
// for poc mode 1.
int delta_pic_order_cnt[3];
// ////////////////////////
// for POC mode 0:
signed int PrevPicOrderCntMsb;
unsigned int PrevPicOrderCntLsb;
signed int PicOrderCntMsb;
// for POC mode 1:
unsigned int AbsFrameNum;
signed int ExpectedPicOrderCnt, PicOrderCntCycleCnt, FrameNumInPicOrderCntCycle;
unsigned int PreviousFrameNum, FrameNumOffset;
int ExpectedDeltaPerPicOrderCntCycle;
int PreviousPOC, ThisPOC;
int PreviousFrameNumOffset;
// /////////////////////////
//weighted prediction
unsigned int luma_log2_weight_denom;
unsigned int chroma_log2_weight_denom;
int ***wp_weight; // weight in [list][index][component] order
int ***wp_offset; // offset in [list][index][component] order
int ****wbp_weight; //weight in [list][fw_index][bw_index][component] order
int wp_round_luma;
int wp_round_chroma;
unsigned int apply_weights;
int idr_flag;
int nal_reference_idc; //!< nal_reference_idc from NAL unit
#ifdef USE_HP_FILTER
int bipred_rounding_control;
#endif
int idr_pic_id;
int MaxFrameNum;
unsigned int PicWidthInMbs;
unsigned int PicHeightInMapUnits;
unsigned int FrameHeightInMbs;
unsigned int PicHeightInMbs;
unsigned int PicSizeInMbs;
unsigned int FrameSizeInMbs;
unsigned int oldFrameSizeInMbs;
int no_output_of_prior_pics_flag;
int long_term_reference_flag;
int adaptive_ref_pic_buffering_flag;
int last_has_mmco_5;
int last_pic_bottom_field;
int model_number;
// Fidelity Range Extensions Stuff
int pic_unit_bitsize_on_disk;
int bitdepth_luma;
int bitdepth_chroma;
int bitdepth_luma_qp_scale;
int bitdepth_chroma_qp_scale;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -