📄 mbfunctions.h
字号:
#ifndef _MBFUNCTIONS_H
#define _MBFUNCTIONS_H
#include "encoder.h"
#include "bitstream.h"
/*****************************************************************************
* Prototypes
****************************************************************************/
/* MBTransQuant.c */
void MBTransQuantIntra(const MBParam * pParam,
FRAMEINFO * frame,
MACROBLOCK * pMB,
const uint32_t x_pos, /* <-- The x position of the MB to be searched */
const uint32_t y_pos,
uint32_t mb_width,FTMCP100_CODEC *pCodec);
uint8_t MBTransQuantInter(const MBParam * pParam,
FRAMEINFO * frame,FTMCP100_CODEC *pCodec);
/*
MACROBLOCK * pMB,
const uint32_t x_pos,
const uint32_t y_pos);
*/
/* MBCoding.c */
void MBSkip(Bitstream * bs); /* just the bitstream. Since MB is skipped, no info is needed */
void MBCoding(Bitstream * bs);
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -