📄 global.h
字号:
// 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 should probably go in sequence parameters
// unsigned int log2_max_frame_num_minus4;
unsigned int pic_order_cnt_type;
// for poc mode 0, POC200301
// unsigned int log2_max_pic_order_cnt_lsb_minus4;
// for poc mode 1, POC200301
unsigned int delta_pic_order_always_zero_flag;
int offset_for_non_ref_pic;
int offset_for_top_to_bottom_field;
unsigned int num_ref_frames_in_pic_order_cnt_cycle;
int offset_for_ref_frame[MAX_LENGTH_POC_CYCLE];
// POC200301
//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[2];
// ////////////////////////
// for POC mode 0:
signed int PicOrderCntMsb;
unsigned int PrevPicOrderCntLsb;
signed int CurrPicOrderCntMsb;
// for POC mode 1:
unsigned int AbsFrameNum;
signed int ExpectedPicOrderCnt, PicOrderCntCycleCnt, FrameNumInPicOrderCntCycle;
unsigned int PreviousFrameNum, FrameNumOffset, ExpectedDeltaPerPicOrderCntCycle;
unsigned int Previousfield_pic_flag,Previousbottom_field_flag,Previousnal_reference_idc;
unsigned int Previousdelta_pic_order_cnt[2], PreviousPOC, ThisPOC, FirstFieldType;
// /////////////////////////
//weighted prediction
unsigned int weighted_pred_flag;
unsigned int weighted_bipred_idc;
unsigned int luma_log_weight_denom;
unsigned int chroma_log_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;
//the following should probably go in picture parameters
unsigned int pic_order_present_flag;
//the following are sent in the slice header
// int delta_pic_order_cnt[2];
int idr_flag;
int idr_pic_id;
int MaxFrameNum;
unsigned PicWidthInMbs;
unsigned PicHeightInMapUnits;
unsigned FrameHeightInMbs;
unsigned PicHeightInMbs;
unsigned PicSizeInMbs;
unsigned FrameSizeInMbs;
int no_output_of_prior_pics_flag;
int long_term_reference_flag;
int adaptive_ref_pic_buffering_flag;
int model_number;
} ImageParameters;
extern ImageParameters *img;
// signal to noice ratio parameters
struct snr_par
{
float snr_y; //<! current Y SNR
float snr_u; //<! current U SNR
float snr_v; //<! current V SNR
float snr_y1; //<! SNR Y(dB) first frame
float snr_u1; //<! SNR U(dB) first frame
float snr_v1; //<! SNR V(dB) first frame
float snr_ya; //<! Average SNR Y(dB) remaining frames
float snr_ua; //<! Average SNR U(dB) remaining frames
float snr_va; //<! Average SNR V(dB) remaining frames
};
int tot_time;
// input parameters from configuration file
struct inp_par
{
char infile[100]; //<! Telenor H.26L input
char outfile[100]; //<! Decoded YUV 4:2:0 output
char reffile[100]; //<! Optional YUV 4:2:0 reference file for SNR measurement
// int symbol_mode; //<! Specifies the mode the symbols are mapped on bits
int FileFormat; //<! File format of the Input file, PAR_OF_ANNEXB or PAR_OF_RTP
// int partition_mode; //<! Specifies the mode of data partitioning
int buf_cycle; //<! Frame buffer size
#ifdef _LEAKYBUCKET_
unsigned long R_decoder; //<! Decoder Rate in HRD Model
unsigned long B_decoder; //<! Decoder Buffer size in HRD model
unsigned long F_decoder; //<! Decoder Inital buffer fullness in HRD model
char LeakyBucketParamFile[100]; //<! LeakyBucketParamFile
#endif
int LFParametersFlag; //<! Specifies that loop filter parameters are included in bitstream
};
extern struct inp_par *input;
// files
FILE *p_out; //<! pointer to output YUV file
FILE *p_ref; //<! pointer to input original reference YUV file file
FILE *p_log; //<! SNR file
FILE *p_datpart; //<! file to write bitlength and id of all partitions
#if TRACE
FILE *p_trace;
#endif
// prototypes
void init_conf(struct inp_par *inp, char *config_filename);
void report(struct inp_par *inp, struct img_par *img, struct snr_par *snr);
void find_snr(struct snr_par *snr,struct img_par *img, FILE *p_ref);
void init(struct img_par *img);
void init_poc();
void push_poc(unsigned int topvalue, unsigned int bottomvalue, unsigned int ref_frame_ind );
void malloc_slice(struct inp_par *inp, struct img_par *img);
void free_slice(struct inp_par *inp, struct img_par *img);
int decode_one_frame(struct img_par *img,struct inp_par *inp, struct snr_par *snr);
void init_frame(struct img_par *img, struct inp_par *inp);
void exit_frame(struct img_par *img, struct inp_par *inp);
void DeblockFrame(struct img_par *img, byte **imgY, byte ***imgUV ) ;
void write_frame(struct img_par *img, FILE *p_out);
void write_prev_Pframe(struct img_par *img,FILE *p_out);// B pictures
void copy_Pframe(struct img_par *img);// B pictures
int read_new_slice();
void decode_one_slice(struct img_par *img,struct inp_par *inp);
void start_macroblock(struct img_par *img,struct inp_par *inp, int CurrentMBInScanOrder);
void init_macroblock_Bframe(struct img_par *img);// B pictures
int read_one_macroblock(struct img_par *img,struct inp_par *inp);
void read_ipred_modes(struct img_par *img,struct inp_par *inp);
int read_one_macroblock_Bframe(struct img_par *img,struct inp_par *inp);// B pictures
int decode_one_macroblock(struct img_par *img,struct inp_par *inp);
int decode_one_macroblock_Bframe(struct img_par *img);// B pictures
int exit_macroblock(struct img_par *img,struct inp_par *inp, int eos_bit);
void readMotionInfoFromNAL (struct img_par *img,struct inp_par *inp);
void readMotionInfoFromNAL_Bframe(struct img_par *img,struct inp_par *inp);// B pictures
void readMotionInfoFromNAL_Pframe(struct img_par *img,struct inp_par *inp);
void readCBPandCoeffsFromNAL(struct img_par *img,struct inp_par *inp);
void copyblock_sp(struct img_par *img,int block_x,int block_y);
void itrans_sp_chroma(struct img_par *img,int ll);
void itrans(struct img_par *img,int ioff,int joff,int i0,int j0);
void itrans_sp(struct img_par *img,int ioff,int joff,int i0,int j0);
int intrapred(struct img_par *img,int ioff,int joff,int i4,int j4);
void itrans_2(struct img_par *img);
int intrapred_luma_16x16(struct img_par *img,int predmode);
int sign(int a , int b);
// Direct interpolation
void get_block(int ref_frame,int x_pos, int y_pos, struct img_par *img, int block[BLOCK_SIZE][BLOCK_SIZE]);
void get_quarterpel_block(int ref_frame,int x_pos, int y_pos, struct img_par *img, int block[BLOCK_SIZE][BLOCK_SIZE]);
// int inter_intra(struct img_par *img);
// SLICE function pointers
int (*nal_startcode_follows) ();
// NAL functions TML/CABAC bitstream
int uvlc_startcode_follows();
int cabac_startcode_follows();
void free_Partition(Bitstream *currStream);
// ErrorConcealment
void reset_ec_flags();
// CABAC
void arideco_start_decoding(DecodingEnvironmentPtr eep, unsigned char *code_buffer, int firstbyte, int *code_len, int slice_type);
int arideco_bits_read(DecodingEnvironmentPtr dep);
void arideco_done_decoding(DecodingEnvironmentPtr dep);
void biari_init_context (struct img_par *img, BiContextTypePtr ctx, const int* ini);
void rescale_cum_freq(BiContextTypePtr bi_ct);
unsigned int biari_decode_symbol(DecodingEnvironmentPtr dep, BiContextTypePtr bi_ct );
unsigned int biari_decode_symbol_eq_prob(DecodingEnvironmentPtr dep);
unsigned int biari_decode_final(DecodingEnvironmentPtr dep);
MotionInfoContexts* create_contexts_MotionInfo(void);
TextureInfoContexts* create_contexts_TextureInfo(void);
void init_contexts_MotionInfo(struct img_par *img, MotionInfoContexts *enco_ctx);
void init_contexts_TextureInfo(struct img_par *img, TextureInfoContexts *enco_ctx);
void delete_contexts_MotionInfo(MotionInfoContexts *enco_ctx);
void delete_contexts_TextureInfo(TextureInfoContexts *enco_ctx);
void readMB_typeInfoFromBuffer_CABAC(SyntaxElement *se, struct inp_par *inp, struct img_par *img, DecodingEnvironmentPtr dep_dp);
void readB8_typeInfoFromBuffer_CABAC(SyntaxElement *se, struct inp_par *inp, struct img_par *img, DecodingEnvironmentPtr dep_dp);
void readIntraPredModeFromBuffer_CABAC(SyntaxElement *se, struct inp_par *inp,struct img_par *img, DecodingEnvironmentPtr dep_dp);
void readRefFrameFromBuffer_CABAC(SyntaxElement *se, struct inp_par *inp, struct img_par *img, DecodingEnvironmentPtr dep_dp);
void readBwdRefFrameFromBuffer_CABAC(SyntaxElement *se, struct inp_par *inp, struct img_par *img, DecodingEnvironmentPtr dep_dp);
void readMVDFromBuffer_CABAC(SyntaxElement *se, struct inp_par *inp, struct img_par *img, DecodingEnvironmentPtr dep_dp);
void readCBPFromBuffer_CABAC(SyntaxElement *se, struct inp_par *inp, struct img_par *img, DecodingEnvironmentPtr dep_dp);
void readRunLevelFromBuffer_CABAC(SyntaxElement *se, struct inp_par *inp, struct img_par *img, DecodingEnvironmentPtr dep_dp);
void readMVD2Buffer_CABAC(SyntaxElement *se, struct inp_par *inp, struct img_par *img, DecodingEnvironmentPtr dep_dp);
void readBiMVD2Buffer_CABAC(SyntaxElement *se,struct inp_par *inp,struct img_par *img,DecodingEnvironmentPtr dep_dp);
void readBiDirBlkSize2Buffer_CABAC(SyntaxElement *se,struct inp_par *inp,struct img_par *img,DecodingEnvironmentPtr dep_dp);
int readSyntaxElement_CABAC(SyntaxElement *se, struct img_par *img, struct inp_par *inp, DataPartition *this_dataPart);
void readDquant_FromBuffer_CABAC(SyntaxElement *se,struct inp_par *inp,struct img_par *img,DecodingEnvironmentPtr dep_dp);
void readCIPredMode_FromBuffer_CABAC(SyntaxElement *se,struct inp_par *inp,struct img_par *img,DecodingEnvironmentPtr dep_dp);
void readMB_skip_flagInfoFromBuffer_CABAC( SyntaxElement *se, struct inp_par *inp, struct img_par *img, DecodingEnvironmentPtr dep_dp);
void readFieldModeInfoFromBuffer_CABAC(SyntaxElement *se,struct inp_par *inp,struct img_par *img,DecodingEnvironmentPtr dep_dp);
void setMapMB_nr (struct img_par *img);
int check_next_mb_and_get_field_mode_CABAC(SyntaxElement *se,struct img_par *img,struct inp_par *inp,DataPartition *act_dp);
void CheckAvailabilityOfNeighbors(struct img_par *img);
void CheckAvailabilityOfNeighborsForAff(struct img_par *img);
void error(char *text, int code);
// dynamic mem allocation
int init_global_buffers(struct inp_par *inp, struct img_par *img);
void free_global_buffers(struct inp_par *inp, struct img_par *img);
void split_field_top(struct img_par *img);
void split_field_bot(struct img_par *img);
void combine_field(struct img_par *img);
void frame_postprocessing(struct img_par *img, struct inp_par *inp);
void field_postprocessing(struct img_par *img, struct inp_par *inp);
int bottom_field_picture(struct img_par *img,struct inp_par *inp);
void init_top(struct img_par *img, struct inp_par *inp);
void init_bottom(struct img_par *img, struct inp_par *inp);
void decode_frame_slice(struct img_par *img,struct inp_par *inp, int current_header);
void decode_field_slice(struct img_par *img,struct inp_par *inp, int current_header);
void store_field_MV(struct img_par *img);
#define PAYLOAD_TYPE_IDERP 8
int RBSPtoSODB(byte *streamBuffer, int last_byte_pos);
int EBSPtoRBSP(byte *streamBuffer, int end_bytepos, int begin_bytepos);
// For MB level frame/field coding
void init_super_macroblock(struct img_par *img,struct inp_par *inp);
void exit_super_macroblock(struct img_par *img,struct inp_par *inp);
int decode_super_macroblock(struct img_par *img,struct inp_par *inp);
void decode_one_Copy_topMB(struct img_par *img,struct inp_par *inp);
void copy_stored_B_motion_info(struct img_par *img);
void SetOneRefMV(struct img_par* img);
int peekSyntaxElement_UVLC(SyntaxElement *sym, struct img_par *img, struct inp_par *inp, struct datapartition *dP);
void fill_wp_params(struct img_par *img);
void reset_wp_params(struct img_par *img);
int poc_distance( int refa, int refb);
void FreePartition (DataPartition *dp, int n);
DataPartition *AllocPartition();
void tracebits2(const char *trace_str, int len, int info);
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -