zpav8dec.h
来自「 离散余弦变换对图象信号有近似最优的去相关能力, 但多维的变换公式一直没有给出.」· C头文件 代码 · 共 66 行
H
66 行
/*
///////////////////////////////////////////////////////////////////////////////
// //
// 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 + =
减小字号Ctrl + -
显示快捷键?