h263frames.h

来自「SAMSUNG S3C6410 CPU BSP for winmobile6」· C头文件 代码 · 共 35 行

H
35
字号
/////
///   H263Frames.h
///
///   Written by Simon Chun (simon.chun@samsung.com)
///   2007/08/01
///

#ifndef __SAMSUNG_SYSLSI_AP_H263_FRAMES_H__
#define __SAMSUNG_SYSLSI_AP_H263_FRAMES_H__


typedef struct
{
	int  width, height;

} H263_CONFIG_DATA;


#define H263_CODING_TYPE_I		0	// I-frame
#define H263_CODING_TYPE_P		1	// P-frame


#ifdef __cplusplus
extern "C" {
#endif

int ExtractConfigStreamH263(void *fp, unsigned char buf[], int buf_size, H263_CONFIG_DATA *conf_data);
int NextFrameH263(void *fp, unsigned char buf[], int buf_size, unsigned int *coding_type);

#ifdef __cplusplus
}
#endif

#endif /* __SAMSUNG_SYSLSI_AP_H263_FRAMES_H__ */

⌨️ 快捷键说明

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