get_videoinfo.h

来自「6410BSP1」· C头文件 代码 · 共 25 行

H
25
字号
//------------------------------------------------------------------------------
// File: get_videoinfo.h
//
// Desc: FrameExtractFilter DirectShow filter (CLSIDs)
//
//------------------------------------------------------------------------------

#if !defined(_SAMSUNG_SYSLSI_GET_VIDEOINFO_H_)
#define _SAMSUNG_SYSLSI_GET_VIDEOINFO_H_

#ifdef __cplusplus
extern "C" {
#endif

int get_mpeg4_info(unsigned char *vos, int vos_leng, int *profile, int *width, int *height);
int get_h263_info(unsigned char *frame, int frame_leng, int *profile, int *width, int *height);
int get_h264_info(unsigned char *sps, int sps_leng, int *profile_idc, int *width, int *height);


#ifdef __cplusplus
}
#endif

#endif // !defined(_SAMSUNG_SYSLSI_GET_VIDEOINFO_H_)

⌨️ 快捷键说明

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