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

Audio

开发平台:

Visual C++

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