⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dct_coefficient.h

📁 由bmp生成mpeg2 的I_frame 数据
💻 H
字号:
/*******************************************************************
                    dct coefficient interface
 *******************************************************************/
#include "video_stream.h"

#ifndef DCT_COEFFICIENT_H
#define DCT_COEFFICIENT_H

typedef int (* READ_DCT_COEFFICIENT)(VIDEO_STREAM *, int *, int *);

#ifdef __cplusplus
extern "C" {
#endif

#ifndef DCT_COEFFICIENT_C
extern int read_dct_dc_coefficient_b14(VIDEO_STREAM *in, int *run, int *level);
extern int read_dct_dc_coefficient_mpeg1(VIDEO_STREAM *in, int *run, int *level);
extern int read_dct_ac_coefficient_b14(VIDEO_STREAM *in, int *run, int *level);
extern int read_dct_ac_coefficient_mpeg1(VIDEO_STREAM *in, int *run, int *level);
extern int read_dct_ac_coefficient_b15(VIDEO_STREAM *in, int *run, int *level);
#endif

#ifdef __cplusplus
}
#endif

#endif	

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -