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

📄 dct.h

📁 H.264编码器
💻 H
字号:
/* dct.h: h264 encoder library */

#ifndef _DCT_H
#define _DCT_H 1

typedef struct
{
    void (*dct4x4)   ( int16_t dct[4][4],  int16_t diff[4][4] );
    void (*dct4x4dc) ( int16_t dct[4][4],  int16_t diff[4][4] );
    void (*idct4x4)  ( int16_t diff[4][4], int16_t dct[4][4] );
    void (*idct4x4dc)( int16_t diff[4][4], int16_t dct[4][4] );

    void (*dct2x2dc) ( int16_t dct[2][2],  int16_t diff[2][2] );
    void (*idct2x2dc)( int16_t diff[2][2], int16_t dct[2][2] );

} x264_dct_function_t;

void x264_dct_init( x264_dct_function_t *dctf );

#endif

⌨️ 快捷键说明

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