📄 zpav8dec.h
字号:
/*
///////////////////////////////////////////////////////////////////////////////
// //
// Copyright (C) 2006-2008 Beijing, pengzhen (pengzhenxp@yahoo.com.cn) //
// //
///////////////////////////////////////////////////////////////////////////////
*/
#ifndef __ZPAV8_DECODE_H__
#define __ZPAV8_DECODE_H__
#include "zpid.h"
#include "zpmem.h"
#ifdef __cplusplus
extern "C" {
#endif
#ifndef WIN32
#define pzav_dec_api
#endif /* !WIN32 */
#ifdef WIN32
#ifdef pzav_dec_exports
#define pzav_dec_api __declspec(dllexport)
#else
#define pzav_dec_api __declspec(dllimport)
#endif
#endif /* WIN32 */
/**
* video
*/
typedef int (* dvp_decode_frame_function )( dvp_ctx* ) ;
pzav_dec_api int dvp_decode_open(dvp_ctx * ) ;
pzav_dec_api dvp_decode_frame_function dvp_decode_frame( dvp_ctx *dvpctx ) ;
pzav_dec_api int dvp_decode_close(dvp_ctx * ) ;
/**
* audio
*/
typedef int (* dap_decode_frame_function )( dap_ctx* ) ;
pzav_dec_api int dap_decode_open(dap_ctx * ) ;
pzav_dec_api dap_decode_frame_function dap_decode_frame( dap_ctx *dapctx ) ;
pzav_dec_api int dap_decode_close(dap_ctx * ) ;
#ifdef __cplusplus
}
#endif
#endif /* __ZPAV8_DECODE_H__ */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -