dct.h

来自「H.264编码器」· C头文件 代码 · 共 21 行

H
21
字号
/* 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 + =
减小字号Ctrl + -
显示快捷键?