⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 zpav8dec.h

📁  离散余弦变换对图象信号有近似最优的去相关能力, 但多维的变换公式一直没有给出. 为此深入研究了 三维离散余弦变换, 提出了任意尺寸的三维函数f (x , y , z ) 的正交离散余弦变换公式,
💻 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 + -