dct.h
上传用户:hjq518
上传日期:2021-12-09
资源大小:5084k
文件大小:4k
源码类别:

Audio

开发平台:

Visual C++

  1. /*****************************************************************************
  2.  * dct.h: h264 encoder library
  3.  *****************************************************************************
  4.  * Copyright (C) 2004-2008 Loren Merritt <lorenm@u.washington.edu>
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License as published by
  8.  * the Free Software Foundation; either version 2 of the License, or
  9.  * (at your option) any later version.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program; if not, write to the Free Software
  18.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  19.  *****************************************************************************/
  20. #ifndef X264_DCT_H
  21. #define X264_DCT_H
  22. /* the inverse of the scaling factors introduced by 8x8 fdct */
  23. #define W(i) (i==0 ? FIX8(1.0000) :
  24.               i==1 ? FIX8(0.8859) :
  25.               i==2 ? FIX8(1.6000) :
  26.               i==3 ? FIX8(0.9415) :
  27.               i==4 ? FIX8(1.2651) :
  28.               i==5 ? FIX8(1.1910) :0)
  29. static const uint16_t x264_dct8_weight_tab[64] = {
  30.     W(0), W(3), W(4), W(3),  W(0), W(3), W(4), W(3),
  31.     W(3), W(1), W(5), W(1),  W(3), W(1), W(5), W(1),
  32.     W(4), W(5), W(2), W(5),  W(4), W(5), W(2), W(5),
  33.     W(3), W(1), W(5), W(1),  W(3), W(1), W(5), W(1),
  34.     W(0), W(3), W(4), W(3),  W(0), W(3), W(4), W(3),
  35.     W(3), W(1), W(5), W(1),  W(3), W(1), W(5), W(1),
  36.     W(4), W(5), W(2), W(5),  W(4), W(5), W(2), W(5),
  37.     W(3), W(1), W(5), W(1),  W(3), W(1), W(5), W(1)
  38. };
  39. #undef W
  40. /* inverse squared */
  41. #define W(i) (i==0 ? FIX8(3.125) :
  42.               i==1 ? FIX8(1.25) :
  43.               i==2 ? FIX8(0.5) :0)
  44. static const uint16_t x264_dct4_weight2_tab[16] = {
  45.     W(0), W(1), W(0), W(1),
  46.     W(1), W(2), W(1), W(2),
  47.     W(0), W(1), W(0), W(1),
  48.     W(1), W(2), W(1), W(2)
  49. };
  50. #undef W
  51. #define W(i) (i==0 ? FIX8(1.00000) :
  52.               i==1 ? FIX8(0.78487) :
  53.               i==2 ? FIX8(2.56132) :
  54.               i==3 ? FIX8(0.88637) :
  55.               i==4 ? FIX8(1.60040) :
  56.               i==5 ? FIX8(1.41850) :0)
  57. static const uint16_t x264_dct8_weight2_tab[64] = {
  58.     W(0), W(3), W(4), W(3),  W(0), W(3), W(4), W(3),
  59.     W(3), W(1), W(5), W(1),  W(3), W(1), W(5), W(1),
  60.     W(4), W(5), W(2), W(5),  W(4), W(5), W(2), W(5),
  61.     W(3), W(1), W(5), W(1),  W(3), W(1), W(5), W(1),
  62.     W(0), W(3), W(4), W(3),  W(0), W(3), W(4), W(3),
  63.     W(3), W(1), W(5), W(1),  W(3), W(1), W(5), W(1),
  64.     W(4), W(5), W(2), W(5),  W(4), W(5), W(2), W(5),
  65.     W(3), W(1), W(5), W(1),  W(3), W(1), W(5), W(1)
  66. };
  67. #undef W
  68. extern int x264_dct4_weight2_zigzag[2][16]; // [2] = {frame, field}
  69. extern int x264_dct8_weight2_zigzag[2][64];
  70. typedef struct
  71. {
  72.     // pix1  stride = FENC_STRIDE
  73.     // pix2  stride = FDEC_STRIDE
  74.     // p_dst stride = FDEC_STRIDE
  75.     void (*sub4x4_dct)   ( int16_t dct[4][4], uint8_t *pix1, uint8_t *pix2 );
  76.     void (*add4x4_idct)  ( uint8_t *p_dst, int16_t dct[4][4] );
  77.     void (*sub8x8_dct)   ( int16_t dct[4][4][4], uint8_t *pix1, uint8_t *pix2 );
  78.     void (*add8x8_idct)  ( uint8_t *p_dst, int16_t dct[4][4][4] );
  79.     void (*sub16x16_dct) ( int16_t dct[16][4][4], uint8_t *pix1, uint8_t *pix2 );
  80.     void (*add16x16_idct)( uint8_t *p_dst, int16_t dct[16][4][4] );
  81.     void (*sub8x8_dct8)  ( int16_t dct[8][8], uint8_t *pix1, uint8_t *pix2 );
  82.     void (*add8x8_idct8) ( uint8_t *p_dst, int16_t dct[8][8] );
  83.     void (*sub16x16_dct8) ( int16_t dct[4][8][8], uint8_t *pix1, uint8_t *pix2 );
  84.     void (*add16x16_idct8)( uint8_t *p_dst, int16_t dct[4][8][8] );
  85.     void (*dct4x4dc) ( int16_t d[4][4] );
  86.     void (*idct4x4dc)( int16_t d[4][4] );
  87.     void (*dct2x2dc) ( int16_t d[2][2] );
  88.     void (*idct2x2dc)( int16_t d[2][2] );
  89. } x264_dct_function_t;
  90. typedef struct
  91. {
  92.     void (*scan_8x8)( int16_t level[64], int16_t dct[8][8] );
  93.     void (*scan_4x4)( int16_t level[16], int16_t dct[4][4] );
  94.     void (*sub_4x4)( int16_t level[16], const uint8_t *p_src, uint8_t *p_dst );
  95. } x264_zigzag_function_t;
  96. void x264_dct_init( int cpu, x264_dct_function_t *dctf );
  97. void x264_dct_init_weights( void );
  98. void x264_zigzag_init( int cpu, x264_zigzag_function_t *pf, int b_interlaced );
  99. #endif