mbfunctions.h
来自「基于Linux的ffmepg decoder」· C头文件 代码 · 共 43 行
H
43 行
#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 + =
减小字号Ctrl + -
显示快捷键?