h26l.h

来自「MPEG-4编解码的实现(包括MPEG4视音频编解码)」· C头文件 代码 · 共 22 行

H
22
字号

#ifndef __H26L_INCLUDED__
#define __H26L_INCLUDED__

#ifdef __cplusplus
extern "C" {
#endif

typedef unsigned char byte;

int H26L_Init(char *config);
int H26L_Encode(byte* pY, byte* pU, byte* pV, 
	byte* pEncoded, int* pEncodedLength);
int H26L_GetReconstructed(byte* pY, byte* pU, byte* pV);
int H26L_Close();

#ifdef __cplusplus
}
#endif

#endif /* __H26L_INCLUDED__ */

⌨️ 快捷键说明

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