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

📄 dct_kc.hpp

📁 H.264完整的C语言代码和DCT的代码
💻 HPP
字号:
#ifndef _TEST_KC
#define _TEST_KC
// header files must be in this order
#include "idb_types.hpp"
#include "idb_deftypes.hpp"
// declare the kernel
kernel dct(istream<half2> datain,
           istream<uhalf2> consts,           // in 1.15
           ostream<half2> out,
           uc<uhalf2>& uc_quantizer_scale);   // 1/uc_quantizer_scale in 0.16
// these are required for each kernel
KERNELDECL(dct);
#define dct KERNELCALL(dct)
// don’t forget this line at the end!
#include "idb_undeftypes.hpp"
#endif

⌨️ 快捷键说明

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