idct.c
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:43k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer of the Original Code and owns the copyrights in the portions 
  21.  * it created. 
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. #include <math.h>
  36. #include "dllindex.h"
  37. #include "h261defs.h"
  38. #include "h261func.h"
  39. #include "clip.h"
  40. #include "h263plus.h"
  41. #ifdef _MACINTOSH
  42. #include <string.h> // for memset
  43. #endif
  44. #ifndef UNREFERENCED_PARAMETER
  45. #define UNREFERENCED_PARAMETER(x) (x) = (x)
  46. #endif
  47. extern S16 Recon [QUANT_MAX - QUANT_MIN + 1] [N_SYM_INDICES];
  48. //  Function prototypes
  49. static void init_inv_dct (void);
  50. static void Fix_PTel_S4000_mismatch( void );
  51. static void truncate_more( S32 * idct_tab_entry );
  52. static void idct2_goertzel( SYMBOL sym[], int nsym, S32 x[8][4],
  53.                             S16 recon[], int intra, int clean, int idct_class );
  54. static int idct2_energy_test( SYMBOL sym[], int nsym,
  55.                             S16 recon[] );                            
  56. static void recon_intra_dc( U8 index, S32 vec[8]);
  57. static void recon_dc( S32 y, S32 vec[8]);
  58. static void recon_hor_ac( S32 y, S32 vec[8]);
  59. static void recon_vert_ac( S32 y, S32 vec[8]);
  60. static void update( S32 x[8], S32 index, S32 table[][8*8*8]);
  61. static double dctfunc (int freq, int index);
  62. static S32 dct_tab_entry (double x, double y);
  63. static S32 combine (S32 iy, S32 ix);
  64. extern void idct2_advanced_intra( SYMBOL sym[], int nsym, S32 x[8][4], S16 recon[],
  65.                             U8 rDCpred, S8 rACpred[8], U8 rDCstore[1], S8 rACstore[8], 
  66.                             U8 cDCpred, S8 cACpred[8], U8 cDCstore[1], S8 cACstore[8],
  67.                             int predtype, int fixedDC, int leftBoundary, int upperBoundary);
  68. #define PI              3.141592654
  69. #define FRACBITS        6   /* Fractional bits in IDCT computation */
  70. #define SCALE_FACTOR    64. /* 2**FRACBITS */
  71. #define MAX_DCT_INDEX   1024
  72. #define IDCT_NTAB1_BITS 5
  73. #define IDCT_NTAB1_SIZE 32  /* 2**NTAB1_BITS entries in table for small values */
  74. #define IDCT_NTAB2_SIZE ((MAX_DCT_INDEX - 1) / IDCT_NTAB1_SIZE)
  75.                             /* Entries to handle values > NTAB1_SIZE */
  76. #define PIXEL_MIN       0
  77. #define PIXEL_MAX       255
  78. #define CLIPMARGIN      300
  79. #define CLIPMIN         (PIXEL_MIN - CLIPMARGIN)
  80. #define CLIPMAX         (PIXEL_MAX + CLIPMARGIN)
  81. #define N_DCT_INDEX     1024
  82. //  Reconstruction levels for QUANT = 1,2,..,31
  83. S16 Recon [QUANT_MAX - QUANT_MIN + 1] [N_SYM_INDICES];
  84. //  Define zigzag scanning pattern
  85. static int ZigZag[64] = {  0,  1,  5,  6,  14, 15, 27, 28,
  86.                             2,  4,  7,  13, 16, 26, 29, 42,
  87.                             3,  8,  12, 17, 25, 30, 41, 43,
  88.                             9,  11, 18, 24, 31, 40, 44, 53,
  89.                             10, 19, 23, 32, 39, 45, 52, 54,
  90.                             20, 22, 33, 38, 46, 51, 55, 60,
  91.                             21, 34, 37, 47, 50, 56, 59, 61,
  92.                             35, 36, 48, 49, 57, 58, 62, 63
  93. };
  94. static  int InvZZ[64];
  95. static  S32    idct_tab [(IDCT_NTAB1_SIZE + IDCT_NTAB2_SIZE)][8*8][8];
  96.                     /* LUT for all coeffs; [amplitude][zigzag position][] */
  97. static  S32    dc_tab [MAX_DCT_INDEX];         /* LUT for DC coeff */
  98. static  S32    hor_ac_tab [MAX_DCT_INDEX][2];  /* LUT for 1st hor AC coeff */
  99. static  S32    vert_ac_tab [MAX_DCT_INDEX][4]; /* LUT for 1st vert AC coeff */
  100. static  S32    intra_dc_tab[N_SYM_INDICES];    /* LUT for INTRA DC coeff */
  101. PIXEL   clip[(CLIPMAX-CLIPMIN+1)];      /* LUT to limit to 0-255 */
  102. static  int     even_odd_index[8*8];    /* Classify zigzag pos. as even or odd */
  103. extern void InitReconTables( void )
  104. {
  105.     int level, index, quant;
  106. //  QUANT=1 => 3,5,7,...
  107. //  QUANT=2 => 5,9,13,...
  108. //  QUANT=3 => 9,15,21,...
  109. //  QUANT=4 => 11,19,27,...
  110.     for (quant = QUANT_MIN; quant <= QUANT_MAX; quant++) {
  111.         index = (quant + 1) / 2;
  112.         for (level = 1; level < N_SYM_INDICES/2; level++) {
  113.             index += quant;
  114.             index = min( index, N_DCT_INDEX);
  115.             Recon [quant - QUANT_MIN] [level] = index;
  116.             Recon [quant - QUANT_MIN] [N_SYM_INDICES-level] = -index;
  117.         }
  118.         Recon [quant - QUANT_MIN] [0] = 0;
  119.     }
  120.     /* Generate zigzag table */
  121.     for (index = 0; index < 64; index++) {
  122.         InvZZ[ ZigZag[index] ] = index;
  123.     }
  124.     init_inv_dct();
  125.     return;
  126. }
  127. //  Idct2 - Reconstruct DCT coeffs, perform IDCT, and clip to allowed pixel range */
  128. //  Requires nsym > 0
  129. extern void Idct2( SYMBOL sym[], int nsym, PIXEL x[], int xdim, S16 recon[], int clean)
  130. {
  131.     union {
  132.         S16   bshort[8][8];
  133.         S32    blong[8][4];
  134.     } block;    /* Output from IDCT */
  135.     int     intra;
  136.     int     idct_class;
  137.     idct_class = GENERAL;   /* assume the general case */
  138.     /* look for situations involving specific involving 1,2,3 symbols */
  139.     if (sym[0].type==0) 
  140.         {
  141.             switch (nsym) 
  142.             {
  143.                 case 1:
  144.                     idct_class = DC_ONLY;
  145.                 break;
  146.                 case 2:
  147.                     if (sym[1].type == 0)  
  148.                         idct_class = DC_AC_H;
  149.                     if (sym[1].type == 1)  
  150.                         idct_class = DC_AC_V;
  151.                 break;
  152.                 case 3:
  153.                     if ( (sym[1].type | sym[2].type) == 0) 
  154.                         idct_class = DC_3;
  155.                 break;
  156.             } 
  157.         }
  158.     intra = YES;
  159.     switch (idct_class)
  160.             {
  161.                 case DC_ONLY:
  162.                 {   
  163.                     idct2_goertzel( sym, nsym, block.blong, recon, intra, clean, DC_ONLY);
  164.                     idct2_clip(x, xdim, block.blong, DC_ONLY);
  165.                     break;
  166.                 }               
  167.                 case DC_AC_H:
  168.                 {   
  169.                     idct2_goertzel( sym, nsym, block.blong, recon, intra, clean, DC_AC_H);
  170.                     idct2_clip(x, xdim, block.blong, DC_AC_H);
  171.                     break;
  172.                 }               
  173.                 case DC_AC_V:
  174.                 {   
  175.                     idct2_goertzel( sym, nsym, block.blong, recon, intra, clean, DC_AC_V);
  176.                     idct2_clip(x, xdim, block.blong, GENERAL);
  177.                     break;
  178.                 }               
  179.                 case DC_3:
  180.                 {   
  181.                     idct2_goertzel( sym, nsym, block.blong, recon, intra, clean, DC_3);
  182.                     idct2_clip(x, xdim, block.blong, GENERAL);
  183.                     break;
  184.                 }               
  185.                 default:                
  186.                 {   
  187.                     idct2_goertzel( sym, nsym, block.blong, recon, intra, clean, GENERAL);
  188.                     idct2_clip(x, xdim, block.blong, GENERAL);
  189.                 }               
  190.             }               
  191.     return;
  192. }
  193. //  Idct2Sum - Reconstruct DCT coeffs, perform IDCT, add to predition,
  194. //  and clip to allowed pixel range.  Requires nsym > 0
  195. extern void Idct2Sum( SYMBOL sym[], int nsym, PIXEL x[], int xdim, S16 recon[],int clean)
  196. {
  197.     union {
  198.         S16   bshort[8][8];
  199.         S32    blong[8][4];
  200.     } block;    /* Output from IDCT */
  201.     int     intra;
  202.     int     idct_class;
  203.     
  204.     idct_class = GENERAL;   /* assume the general case */
  205.     /* look for situations involving specific involving 1,2,3 symbols */
  206.     if (sym[0].type==0) 
  207.         {
  208.             switch (nsym) 
  209.             {
  210.                 case 1:
  211.                     idct_class = DC_ONLY;
  212.                 break;
  213.                 case 2:
  214.                     if (sym[1].type == 0)  
  215.                         idct_class = DC_AC_H;
  216.                     if (sym[1].type == 1)  
  217.                         idct_class = DC_AC_V;
  218.                 break;
  219.                 case 3:
  220.                     if ( (sym[1].type | sym[2].type) == 0) 
  221.                         idct_class = DC_3;
  222.                 break;
  223.             } 
  224.         }
  225.     intra = NO;
  226. //    if (clean == YES || (idct2_energy_test( sym, nsym, recon) > 20)){ 
  227. // activate this for sleazy IDCT in decoder
  228. //    
  229.     switch (idct_class)
  230.             {
  231.                 case DC_ONLY:
  232.                 {   
  233.                     idct2_goertzel( sym, nsym, block.blong, recon, intra, clean, DC_ONLY);
  234.                     idct2sum_clip(x, xdim, block.blong, DC_ONLY);
  235.                     break;
  236.                 }               
  237.                 case DC_AC_H:
  238.                 {   
  239.                     idct2_goertzel( sym, nsym, block.blong, recon, intra, clean, DC_AC_H);
  240.                     idct2sum_clip(x, xdim, block.blong, DC_AC_H);
  241.                     break;
  242.                 }               
  243.                 case DC_AC_V:
  244.                 {   
  245.                     idct2_goertzel( sym, nsym, block.blong, recon, intra, clean, DC_AC_V);
  246.                     idct2sum_clip(x, xdim, block.blong, GENERAL);
  247.                     break;
  248.                 }               
  249.                 case DC_3:
  250.                 {   
  251.                     idct2_goertzel( sym, nsym, block.blong, recon, intra, clean, DC_3);
  252.                     idct2sum_clip(x, xdim, block.blong, GENERAL);
  253.                     break;
  254.                 }               
  255.                 default:                
  256.                 {   
  257.                     idct2_goertzel( sym, nsym, block.blong, recon, intra, clean, GENERAL);
  258.                     idct2sum_clip(x, xdim, block.blong, GENERAL);
  259.                 }               
  260.             }
  261.  //   }         // activate this for sleazy IDCT in decoder
  262.     return;
  263. }
  264. //  Idct2_s16 - Reconstruct DCT coeffs, perform IDCT, and write as signed 16-bit values
  265. //  Set output block to zero if nsym=0
  266. extern void Idct2_s16( int intra, SYMBOL sym[], int nsym, S16 x[], int xdim, S16 recon[] )
  267. {
  268.     int i, clean = YES;
  269.     union {
  270.         S16   bshort[8][8];
  271.         S32    blong[8][4];
  272.     } block;    /* Output from IDCT */
  273.     if (nsym == 0) {
  274.         for (i = 0; i < 8; i++) {
  275.             S32 * px = (S32 *)x;
  276.             px[0] = px[1] = px[2] = px[3] = 0;
  277.             x += xdim;
  278.         }
  279.         return;
  280.     }
  281.     idct2_goertzel( sym, nsym, block.blong, recon, intra, clean, GENERAL);
  282.     // Shift out fractional bits
  283.     for (i = 0; i < 8; i++) {
  284.         x[i*xdim + 0] = block.bshort[i][0] >> FRACBITS;
  285.         x[i*xdim + 1] = block.bshort[i][1] >> FRACBITS;
  286.         x[i*xdim + 2] = block.bshort[i][2] >> FRACBITS;
  287.         x[i*xdim + 3] = block.bshort[i][3] >> FRACBITS;
  288.         x[i*xdim + 4] = block.bshort[i][7] >> FRACBITS;
  289.         x[i*xdim + 5] = block.bshort[i][6] >> FRACBITS;
  290.         x[i*xdim + 6] = block.bshort[i][5] >> FRACBITS;
  291.         x[i*xdim + 7] = block.bshort[i][4] >> FRACBITS;
  292.     }
  293. }
  294. //  Initialize tables for inverse DCT
  295. //  Note: This routine has not been optimized for speed
  296. static void init_inv_dct (void)
  297. {
  298.     int             i,j,m,n, index, zzpos;
  299.     double          magn;               /* amplitude of DCT coefficient */
  300.     static  double  bfunc[8][8][4][4];  /* DCT basis functions [vert freq][hor freq][][] */
  301.     for (n=0; n < 8; n++) {     /* Construct 2-D basis functions */
  302.       for (m=0; m < 8; m++) {
  303.         for (j=0; j < 4; j++) {
  304.           for (i=0; i < 4; i++) {
  305.               bfunc[n][m][j][i] = SCALE_FACTOR * dctfunc(n,j) * dctfunc(m,i);
  306.           }
  307.         }
  308.       }
  309.     }
  310.     //  Initialize table for INTRA DC coeff reconstruction */
  311.     for (index = 0; index < N_SYM_INDICES; index++) {
  312.         magn = 8 * index;
  313.         //printf( "Init index = %d   magn = %f n", index, magn);
  314.         intra_dc_tab [index] = dct_tab_entry (magn * bfunc[0][0][0][0],
  315.                                               magn * bfunc[0][0][0][1]);
  316.     }
  317.     //  128 is represented by index=255
  318.     index = 255;
  319.     magn = 8 * 128;
  320.     //printf( "Init index = %d   magn = %f n", index, magn);
  321.     intra_dc_tab [index] = dct_tab_entry (magn * bfunc[0][0][0][0],
  322.                                               magn * bfunc[0][0][0][1]);
  323.     
  324.     //  Initialize tables for DC and first two AC coeffs
  325.     for (index = 0; index < MAX_DCT_INDEX; index++) {
  326.         magn = 2*index + 1;
  327.         //printf( "Init index = %d   magn = %f n", index, magn);
  328.         dc_tab [index] = dct_tab_entry (magn * bfunc[0][0][0][0],
  329.                                         magn * bfunc[0][0][0][1]);
  330.         for (i = 0; i < 2; i++) {
  331.             hor_ac_tab [index][i]
  332.                         = dct_tab_entry (magn * bfunc[0][1][0][2*i],
  333.                                          magn * bfunc[0][1][0][2*i+1]);
  334.         }
  335.         for (j = 0; j < 4; j++) {
  336.             vert_ac_tab [index][j]
  337.                         = dct_tab_entry (magn * bfunc[1][0][j][0],
  338.                                          magn * bfunc[1][0][j][1]);
  339.         }
  340.     }
  341.     //  Initialize table for all coeffs
  342.     for (index = 0; index < IDCT_NTAB1_SIZE; index++) {
  343.         magn = 2*index + 1;
  344.         //printf( "Init index = %d   magn = %f n", index, magn);
  345.         for (zzpos = 0; zzpos < 8*8; zzpos++) {
  346.             n = InvZZ[zzpos] / 8;
  347.             m = InvZZ[zzpos] % 8;
  348.             for (j=0; j < 4; j++) {
  349.               for (i=0; i < 2; i++) {
  350.                   idct_tab [index][zzpos][2*j+i]
  351.                     = dct_tab_entry (magn * bfunc[n][m][j][2*i],
  352.                                     magn * bfunc[n][m][j][2*i+1]);
  353.               }
  354.             }
  355.         }
  356.     }
  357.     for (index = 0; index < IDCT_NTAB2_SIZE; index++) {
  358.         magn = 2 * IDCT_NTAB1_SIZE * (index + 1);
  359.         //printf( "Init index = %d   magn = %f n", index+IDCT_NTAB1_SIZE, magn);
  360.         for (zzpos = 0; zzpos < 8*8; zzpos++) {
  361.             n = InvZZ[zzpos] / 8;
  362.             m = InvZZ[zzpos] % 8;
  363.             for (j=0; j < 4; j++) {
  364.               for (i=0; i < 2; i++) {
  365.                   idct_tab [index + IDCT_NTAB1_SIZE][zzpos][2*j+i]
  366.                     = dct_tab_entry (magn * bfunc[n][m][j][2*i],
  367.                                     magn * bfunc[n][m][j][2*i+1]);
  368.               }
  369.             }
  370.         }
  371.     }
  372.     // Modify tables for index=1 to truncate more values to zero
  373.     Fix_PTel_S4000_mismatch();
  374.     //  LUT to clip to allowed range for PIXEL
  375.     for (i = CLIPMIN; i <= CLIPMAX; i++) {
  376.         clip[i-CLIPMIN] = max( PIXEL_MIN, min( PIXEL_MAX, i));
  377.     }
  378.     //  Classify zigzag position as even or odd, horizontally and vertically
  379.     for (zzpos = 0; zzpos < 8*8; zzpos++) {
  380.         n = InvZZ[zzpos] / 8;
  381.         m = InvZZ[zzpos] % 8;
  382.         even_odd_index[zzpos] = 2 * (n % 2) + m % 2;
  383.     }
  384. #ifdef DO_H263_PLUS
  385.     InitAdvancedIntraTables();
  386. #endif
  387.     return;
  388. }
  389. // Fix_PTel_S4000_mismatch - Modify tables for index=1 to truncate more 
  390. // values to zero.  This improves the quality when communicating with a 
  391. // system that has an IDCT mismatch problem (PTel S-4000, bug #250)
  392. static void Fix_PTel_S4000_mismatch( void )
  393. {
  394.     int index, i, j, zzpos;
  395.     
  396.     index = 1;
  397.     for (i = 0; i < 2; i++) {
  398.         truncate_more( &hor_ac_tab [index][i] );
  399.     }
  400.     for (j = 0; j < 4; j++) {
  401.         truncate_more( &vert_ac_tab [index][j] );
  402.     }
  403.     for (zzpos = 0; zzpos < 8*8; zzpos++) {
  404.         for (j=0; j < 4; j++) {
  405.             for (i=0; i < 2; i++) {
  406.                 truncate_more( &idct_tab [index][zzpos][2*j+i] );
  407.             }
  408.         }
  409.     }
  410.     return;
  411. }
  412. // truncate_more
  413. static void truncate_more( S32 * idct_tab_entry )
  414. {
  415. #define ONE_HALF            (1 << (FRACBITS - 1))
  416. #define PTEL_FIX_INTERVAL   (3)     // Set to 0 if no fix needed
  417.     S32 halfword[2];
  418.     int i;
  419.     
  420.     halfword[0] = *idct_tab_entry >> 16;            // Upper part of word
  421.     halfword[1] = (*idct_tab_entry << 16) >> 16;    // Lower part of word
  422.     for (i = 0; i < 2; ++i) {
  423.         if (halfword[i] >= ONE_HALF  &&  halfword[i] < ONE_HALF + PTEL_FIX_INTERVAL) {
  424.             halfword[i] = ONE_HALF - 1;
  425.         } else if (halfword[i] <= -ONE_HALF  &&  halfword[i] > -(ONE_HALF + PTEL_FIX_INTERVAL)) {
  426.             halfword[i] = -(ONE_HALF - 1);
  427.         }
  428.     }
  429.     *idct_tab_entry = (halfword[0] << 16) | (halfword[1] & 0xffff);
  430.     return;
  431. }
  432.  
  433. #ifdef WHY_IS_THIS_HERE
  434. static int idct2_energy_test( SYMBOL sym[], int nsym,
  435.                             S16 recon[] )
  436. {
  437.     int isym, zzpos;
  438.     int temp;
  439.     isym = 0;
  440.     temp = 0; 
  441.     zzpos = sym[0].type;
  442.     while (isym < nsym && zzpos < 10) {
  443.         temp += abs((int) recon[(U8)sym[isym].value]);
  444.         isym++;
  445.         zzpos += 1 + sym[isym].type; 
  446.     }
  447.     return(temp);
  448. }
  449. #endif
  450. static void idct2_goertzel( SYMBOL sym[], int nsym, S32 x[8][4],
  451.                             S16 recon[], int intra, int clean, int idct_class)
  452. {
  453.     int     i, zzpos, isym;
  454.     S32     even_odd[4][8]; /* Accumulate even/even, even/odd, odd/even, odd/odd */
  455.     S32     temp[4];        /* Used in final butterfly computations */
  456. #ifdef LITTLE_ENDIAN                    
  457.     char    msg[120]; /* Flawfinder: ignore */
  458.     int LUT_index;
  459. #endif
  460.     UNREFERENCED_PARAMETER(clean);
  461. //  The four special class implementations are specific to LITTLE_ENDIAN.
  462. #ifdef LITTLE_ENDIAN                    
  463.     switch (idct_class)
  464.     {
  465.         case GENERAL:
  466.             {
  467.                 memset(even_odd, 0, 128);
  468.                 isym = 0;
  469.                 zzpos = sym[0].type;
  470.                 //  Reconstruct DC coeff
  471.                 if (intra == YES) {
  472.                 recon_intra_dc( (U8) sym[0].value, even_odd[0]);
  473.                 isym++;
  474.                 zzpos += 1 + sym[isym].type;
  475.                 } 
  476.                 else if (zzpos == 0) {
  477.                 recon_dc( (S32) recon[(U8)sym[0].value], even_odd[0]);
  478.                 isym++;
  479.                 zzpos += 1 + sym[isym].type;
  480.                 }
  481.                 //  Init even/odd: reconstruct first hor. AC coeff
  482.                 if (isym < nsym  &&  zzpos == 1) {
  483.                 recon_hor_ac( (S32) recon[(U8)sym[isym].value], even_odd[1]);
  484.                 isym++;
  485.                 zzpos += 1 + sym[isym].type;
  486.                 }
  487.                 //  Init odd/even: reconstruct first vert. AC coeff
  488.                 if (isym < nsym  &&  zzpos == 2) {
  489.                 recon_vert_ac( (S32) recon[(U8)sym[isym].value], even_odd[2]); 
  490.                 isym++;
  491.                 zzpos += 1 + sym[isym].type;
  492.                 }
  493.                 //  Reconstruct remaining coeffs
  494. //  if (clean == YES) {      // activate this for sleazy IDCT decoder
  495.                 while (isym < nsym) {
  496.                 //printf(" Calling update with  zzpos = %dn", zzpos);
  497.                 update( &even_odd[ even_odd_index[zzpos]] [0],
  498.                     (S32) recon[(U8)sym[isym].value],
  499.                     (long (*)[512]) &idct_tab[0][zzpos][0]);
  500.                 isym++;
  501.                 zzpos += 1 + sym[isym].type;
  502.                 }
  503. //    }     // activate this for sleazy IDCT decoder
  504.  //   else {
  505.  //
  506.  // Sleazy reconstruction
  507.  //
  508.  //      while (isym < nsym && zzpos < 10) {
  509.  //       //printf(" Calling update with  zzpos = %dn", zzpos);
  510.  //       update( &even_odd[ even_odd_index[zzpos]] [0],
  511.  //               (S32) recon[(U8)sym[isym].value],  
  512.  //               (U32 (*)[8*8*8])&idct_tab[0][zzpos][0]);
  513.  //       isym++;
  514.  //       zzpos += 1 + sym[isym].type;
  515.  //         }
  516.  //   }             
  517.             }
  518.         break;
  519.         case DC_ONLY:
  520.         case DC_AC_H:
  521.         case DC_AC_V:
  522.         case DC_3:
  523.             {
  524.                 isym = 0;
  525.                 zzpos = sym[0].type;
  526.                 //  Reconstruct DC coeff
  527.                 if (intra == YES) 
  528.                     {
  529.                         LUT_index = (U8)sym[0].value;
  530.                         even_odd[0][0] = intra_dc_tab[LUT_index];
  531.                         isym++;
  532.                         zzpos += 1 + sym[isym].type;
  533.                     } 
  534.                 else if (zzpos == 0) 
  535.                         {
  536.                             LUT_index = (S32)recon[(U8)sym[0].value];
  537.                             if (LUT_index>0)
  538.                                 even_odd[0][0] = dc_tab[LUT_index-1];
  539.                             else if (LUT_index<0)
  540.                                     even_odd[0][0] = -dc_tab[-LUT_index-1];
  541.                             else
  542.                             {
  543.                                 //sprintf(msg, "ERROR:recon_dc called with arg=0");
  544.                                 //H261ErrMsg(msg);
  545.                             }
  546.                             isym++;
  547.                             zzpos += 1 + sym[isym].type;
  548.                         }
  549.                 //  Init even/odd: reconstruct first hor. AC coeff
  550.                 if (isym < nsym  &&  zzpos == 1) {
  551.                 recon_hor_ac( (S32) recon[(U8)sym[isym].value], even_odd[1]);
  552.                 isym++;
  553.                 zzpos += 1 + sym[isym].type;
  554.                 }
  555.                 //  Init odd/even: reconstruct first vert. AC coeff
  556.                 if (isym < nsym  &&  zzpos == 2) {
  557.                 recon_vert_ac( (S32) recon[(U8)sym[isym].value], even_odd[2]); 
  558.                 isym++;
  559.                 zzpos += 1 + sym[isym].type;
  560.                 }   
  561.             }
  562.         break;
  563.                     
  564.         default:
  565.             break;
  566.     }       
  567. #else
  568.                 memset(even_odd, 0, 128);
  569.                 isym = 0;
  570.                 zzpos = sym[0].type;
  571.                 //  Reconstruct DC coeff
  572.                 if (intra == YES) {
  573.                 recon_intra_dc( (U8) sym[0].value, even_odd[0]);
  574.                 isym++;
  575.                 zzpos += 1 + sym[isym].type;
  576.                 } 
  577.                 else if (zzpos == 0) {
  578.                 recon_dc( (S32) recon[(U8)sym[0].value], even_odd[0]);
  579.                 isym++;
  580.                 zzpos += 1 + sym[isym].type;
  581.                 }
  582.                 //  Init even/odd: reconstruct first hor. AC coeff
  583.                 if (isym < nsym  &&  zzpos == 1) {
  584.                 recon_hor_ac( (S32) recon[(U8)sym[isym].value], even_odd[1]);
  585.                 isym++;
  586.                 zzpos += 1 + sym[isym].type;
  587.                 }
  588.                 //  Init odd/even: reconstruct first vert. AC coeff
  589.                 if (isym < nsym  &&  zzpos == 2) {
  590.                 recon_vert_ac( (S32) recon[(U8)sym[isym].value], even_odd[2]); 
  591.                 isym++;
  592.                 zzpos += 1 + sym[isym].type;
  593.                 }
  594.                 //  Reconstruct remaining coeffs
  595. //  if (clean == YES) {      // activate this for sleazy IDCT decoder
  596.                 while (isym < nsym) {
  597.                 //printf(" Calling update with  zzpos = %dn", zzpos);
  598.                 update( &even_odd[ even_odd_index[zzpos]] [0],
  599.                     (S32) recon[(U8)sym[isym].value],  
  600.                     (S32 (*)[8*8*8]) &idct_tab[0][zzpos][0]);
  601.                 isym++;
  602.                 zzpos += 1 + sym[isym].type;
  603.                 }
  604. //    }     // activate this for sleazy IDCT decoder
  605.  //   else {
  606.  //
  607.  // Sleazy reconstruction
  608.  //
  609.  //      while (isym < nsym && zzpos < 10) {
  610.  //       //printf(" Calling update with  zzpos = %dn", zzpos);
  611.  //       update( &even_odd[ even_odd_index[zzpos]] [0],
  612.  //               (S32) recon[(U8)sym[isym].value],  
  613.  //               (U32 (*)[8*8*8]) &idct_tab[0][zzpos][0]);
  614.  //       isym++;
  615.  //       zzpos += 1 + sym[isym].type;
  616.  //         }
  617.  //   }             
  618. #endif
  619. #ifdef LITTLE_ENDIAN
  620.     //  Final butterflies
  621.     switch (idct_class)
  622.     {
  623.     //  DC only case
  624.         case DC_ONLY:
  625.             {
  626.                 temp[0] = even_odd[0][0];                   
  627.                 temp[0] += (0x10001L << (FRACBITS-1));      
  628.                 x[0][0] = temp[0];
  629.             }
  630.         break;
  631.         
  632.     //  DC + 1 horizontal AC case   
  633.         case DC_AC_H:
  634.              {
  635.                 temp[0] = even_odd[0][0];
  636.                 
  637.                 temp[0] += (0x10001L << (FRACBITS-1));
  638.                 
  639.                 x[0][0] = temp[0] + even_odd[1][0];
  640.                 x[0][2] = temp[0] - even_odd[1][0];
  641.                 x[0][1] = temp[0] + even_odd[1][1];
  642.                 x[0][3] = temp[0] - even_odd[1][1];
  643.              }
  644.         break;   
  645.     // DC + 1 vertical AC case
  646.         case DC_AC_V:
  647.              {
  648.                 for (i = 0; i < 4; i++)
  649.                     {
  650.                         temp[0] = even_odd[0][0] + even_odd[2][2*i];
  651.                         temp[1] = even_odd[0][0] - even_odd[2][2*i];
  652.                         temp[0] += (0x10001L << (FRACBITS-1));    
  653.                         temp[1] += (0x10001L << (FRACBITS-1));    
  654.                         x[i][0]     = temp[0];
  655.                         x[i][1]     = temp[0];
  656.                         x[i][2]     = temp[0];
  657.                         x[i][3]     = temp[0];                                              
  658.                         x[7-i][0]   = temp[1];
  659.                         x[7-i][1]   = temp[1];
  660.                         x[7-i][2]   = temp[1];
  661.                         x[7-i][3]   = temp[1];                                                                      
  662.                     }
  663.              }      
  664.         break;                              
  665.     // DC + 1 vertical AC + 1 horizontal AC case                                    
  666.         case DC_3:
  667.              {
  668.                 for (i = 0; i < 4; i++)
  669.                     {
  670.                         temp[0] = even_odd[0][0] + even_odd[2][2*i];
  671.                         temp[2] = even_odd[0][0] - even_odd[2][2*i];
  672.                         temp[0] += (0x10001L << (FRACBITS-1));    
  673.                         temp[2] += (0x10001L << (FRACBITS-1));    
  674.                         x[i][0]     = temp[0] + even_odd[1][2*i];
  675.                         x[i][2]     = temp[0] - even_odd[1][2*i];                                               
  676.                         x[7-i][0]   = temp[2] + even_odd[1][2*i];
  677.                         x[7-i][2]   = temp[2] - even_odd[1][2*i];
  678.                         x[i][1]     = temp[0] + even_odd[1][2*i+1];
  679.                         x[i][3]     = temp[0] - even_odd[1][2*i+1];                                             
  680.                         x[7-i][1]   = temp[2] + even_odd[1][2*i+1];
  681.                         x[7-i][3]   = temp[2] - even_odd[1][2*i+1];
  682.                     }
  683.              }
  684.         break;   
  685.         case GENERAL:
  686.             {
  687.                 for (i = 0; i < 4; i++) 
  688.                     {
  689.                     // j=0
  690.                         temp[0] = even_odd[0][2*i] + even_odd[2][2*i];
  691.                         temp[2] = even_odd[0][2*i] - even_odd[2][2*i];
  692.                         temp[1] = even_odd[1][2*i] + even_odd[3][2*i];
  693.                         temp[3] = even_odd[1][2*i] - even_odd[3][2*i];
  694.                         temp[0] += (0x10001L << (FRACBITS-1));    /* Round */
  695.                         x[i][0] = temp[0] + temp[1];
  696.                         x[i][2] = temp[0] - temp[1];
  697.                         temp[2] += (0x10001L << (FRACBITS-1));    /* Round */
  698.                         x[7-i][0] = temp[2] + temp[3];
  699.                         x[7-i][2] = temp[2] - temp[3];
  700.                     // j=1
  701.                         temp[0] = even_odd[0][2*i+1] + even_odd[2][2*i+1];
  702.                         temp[2] = even_odd[0][2*i+1] - even_odd[2][2*i+1];
  703.                         temp[1] = even_odd[1][2*i+1] + even_odd[3][2*i+1];
  704.                         temp[3] = even_odd[1][2*i+1] - even_odd[3][2*i+1];
  705.                         temp[0] += (0x10001L << (FRACBITS-1));    /* Round */
  706.                         x[i][1] = temp[0] + temp[1];
  707.                         x[i][3] = temp[0] - temp[1];
  708.                         temp[2] += (0x10001L << (FRACBITS-1));    /* Round */
  709.                         x[7-i][1] = temp[2] + temp[3];
  710.                         x[7-i][3] = temp[2] - temp[3];
  711.                 }
  712.             }
  713.         break;
  714.     
  715.         default:
  716.             break;
  717.     }
  718. #else
  719.             {
  720.                 for (i = 0; i < 4; i++) 
  721.                     {
  722.                     // j=0
  723.                         temp[0] = even_odd[0][2*i] + even_odd[2][2*i];
  724.                         temp[2] = even_odd[0][2*i] - even_odd[2][2*i];
  725.                         temp[1] = even_odd[1][2*i] + even_odd[3][2*i];
  726.                         temp[3] = even_odd[1][2*i] - even_odd[3][2*i];
  727.                         temp[0] += (0x10001L << (FRACBITS-1));    /* Round */
  728.                         x[i][0] = temp[0] + temp[1];
  729.                         x[i][2] = temp[0] - temp[1];
  730.                         temp[2] += (0x10001L << (FRACBITS-1));    /* Round */
  731.                         x[7-i][0] = temp[2] + temp[3];
  732.                         x[7-i][2] = temp[2] - temp[3];
  733.                     // j=1
  734.                         temp[0] = even_odd[0][2*i+1] + even_odd[2][2*i+1];
  735.                         temp[2] = even_odd[0][2*i+1] - even_odd[2][2*i+1];
  736.                         temp[1] = even_odd[1][2*i+1] + even_odd[3][2*i+1];
  737.                         temp[3] = even_odd[1][2*i+1] - even_odd[3][2*i+1];
  738.                         temp[0] += (0x10001L << (FRACBITS-1));    /* Round */
  739.                         x[i][1] = temp[0] + temp[1];
  740.                         x[i][3] = temp[0] - temp[1];
  741.                         temp[2] += (0x10001L << (FRACBITS-1));    /* Round */
  742.                         x[7-i][1] = temp[2] + temp[3];
  743.                         x[7-i][3] = temp[2] - temp[3];
  744.                 }
  745.             }
  746. #endif                          
  747.     return;
  748. }
  749. #ifdef DO_H263_PLUS
  750. //  recon_advanced_intra_dc - Reconstruct DC coeff in INTRA block
  751. static void recon_advanced_intra_dc( U8 index, S32 vec[8])
  752. {
  753.     int j, temp;
  754.     double bfunc;
  755.     bfunc = SCALE_FACTOR * dctfunc(0,0) * dctfunc(0,0);
  756.     temp = 8 * index;
  757.     temp = dct_tab_entry( temp * bfunc, temp * bfunc);
  758.     for (j = 0; j < 8; j++) {
  759.         vec[j] = temp;
  760.     }
  761.     return;
  762. }
  763. //
  764. // Quick implementation of intra prediction
  765. //
  766. extern void idct2_advanced_intra( SYMBOL sym[], int nsym, S32 x[8][4], S16 recon[],
  767.                             U8 rDCpred, S8 rACpred[8], U8 rDCstore[1], S8 rACstore[8], 
  768.                             U8 cDCpred, S8 cACpred[8], U8 cDCstore[1], S8 cACstore[8],
  769.                             int predtype, int fixedDC, int leftBoundary, int upperBoundary)
  770. {
  771.     int     i, pos, isym;
  772.     S32     even_odd[4][8]; /* Accumulate even/even, even/odd, odd/even, odd/odd */
  773.     S32     temp[4];        /* Used in final butterfly computations */
  774.     int     skip;
  775.     S8      value;
  776.     int    *scan_to_zz;
  777.     int    *inv_scan_order;
  778.     memset(even_odd, 0, 128);
  779.     
  780.     // in advanced intra mode, the AC and DC are coded in the same way, so it
  781.     // is possible for the DC residual to be zero and the first symbol to 
  782.     // have a non-trivial zero run
  783.     if(nsym) {
  784.         if(sym[0].type) {
  785.             value = 0;
  786.             isym = 0;
  787.             skip = sym[0].type - 1; // we'll take care of DC outside the loop
  788.         } else {
  789.             value = sym[0].value;
  790.             isym = 1;
  791.             skip = sym[isym].type;
  792.         }
  793.     } else {
  794.         value = 0;
  795.         isym = 0;
  796.         skip = 0;
  797.     }
  798.     //  Reconstruct DC coeff
  799.     switch(predtype) {
  800.     case ADV_INTRA_PRED_DC_ONLY:
  801.         scan_to_zz = &zigzag_to_zigzag[0];
  802.         inv_scan_order = &InvZZ[0];
  803.         rDCstore[0] = cDCstore[0] = (U8)(value + (( 
  804.             (upperBoundary ? cDCpred : rDCpred) + // use row predictor unless on upper boundary
  805.             (leftBoundary ? rDCpred : cDCpred) + // use column predictor unless on left boundary
  806.             1)>>1) );
  807.         break;
  808.     case ADV_INTRA_PRED_COLUMN:
  809.         scan_to_zz = &alt_ver_to_zigzag[0];
  810.         inv_scan_order = &inv_alt_ver_scan_no_reorder[0];
  811.         rDCstore[0] = cDCstore[0] = (U8)(value + cDCpred);
  812.         break;
  813.     case ADV_INTRA_PRED_ROW:
  814.         scan_to_zz = &alt_hor_to_zigzag[0];
  815.         inv_scan_order = &inv_alt_hor_scan_no_reorder[0];
  816.         rDCstore[0] = cDCstore[0] = (U8)(value + rDCpred);
  817.         break;
  818.     case ADV_INTRA_PRED_NONE:
  819.         scan_to_zz = &zigzag_to_zigzag[0];
  820.         inv_scan_order = &InvZZ[0];
  821.         rDCstore[0] = cDCstore[0] = (U8)(value);
  822.         break;
  823.     }
  824.     // We deviate from the H.263+ spec and the standard H.263 8-bit INTRA_DC quantizer
  825.     // for small quantizer values so that we avoid problems with the dynamic range
  826.     // getting too small
  827.     if(fixedDC) {
  828.         recon_advanced_intra_dc( rDCstore[0], even_odd[0]);
  829.     } else {
  830.         if(rDCstore[0]) update( &even_odd[even_odd_index[0]][0],
  831.                         (S32) recon[rDCstore[0]],  
  832.                         (S32 (*)[8*8*8]) &idct_tab[0][0][0]);
  833.     }
  834.     for(pos=1; pos<64; pos++)
  835.     {
  836.        // compute the quantized AC coefficient
  837.         if(skip || isym>=nsym) {
  838.             value = 0;
  839.             skip--;
  840.         } else {
  841.             value = sym[isym++].value;
  842.             skip = sym[isym].type;
  843.         }
  844.          // row predict and store reconstructed
  845.         if(inv_scan_order[pos] < 8) {
  846.             if(predtype == ADV_INTRA_PRED_ROW)
  847.                 value += rACpred[inv_scan_order[pos]];
  848.             rACstore[inv_scan_order[pos]] = value;
  849.         }
  850.          // col predict and store reconstructed
  851.         if((inv_scan_order[pos] & 7) == 0) {
  852.             if(predtype == ADV_INTRA_PRED_COLUMN)
  853.                 value += cACpred[inv_scan_order[pos]>>3];
  854.             cACstore[inv_scan_order[pos]>>3] = value;
  855.         }
  856.     
  857.         // note that both even_odd_index and idct_tab assume that we are indexing
  858.         // by zigzag order; hence the conversion of the variable pos
  859.         if(value) update( &even_odd[ even_odd_index[scan_to_zz[pos]]] [0],
  860.                     (S32) recon[ (U8)value],  
  861.                     (S32 (*)[8*8*8]) &idct_tab[0][scan_to_zz[pos]][0]);
  862.     }
  863.     // Do the final butterfly
  864.     for (i = 0; i < 4; i++) 
  865.     {
  866.         // j=0
  867.         temp[0] = even_odd[0][2*i] + even_odd[2][2*i];
  868.         temp[2] = even_odd[0][2*i] - even_odd[2][2*i];
  869.         temp[1] = even_odd[1][2*i] + even_odd[3][2*i];
  870.         temp[3] = even_odd[1][2*i] - even_odd[3][2*i];
  871.         temp[0] += (0x10001L << (FRACBITS-1));    /* Round */
  872.         x[i][0] = temp[0] + temp[1];
  873.         x[i][2] = temp[0] - temp[1];
  874.         temp[2] += (0x10001L << (FRACBITS-1));    /* Round */
  875.         x[7-i][0] = temp[2] + temp[3];
  876.         x[7-i][2] = temp[2] - temp[3];
  877.         // j=1
  878.         temp[0] = even_odd[0][2*i+1] + even_odd[2][2*i+1];
  879.         temp[2] = even_odd[0][2*i+1] - even_odd[2][2*i+1];
  880.         temp[1] = even_odd[1][2*i+1] + even_odd[3][2*i+1];
  881.         temp[3] = even_odd[1][2*i+1] - even_odd[3][2*i+1];
  882.         temp[0] += (0x10001L << (FRACBITS-1));    /* Round */
  883.         x[i][1] = temp[0] + temp[1];
  884.         x[i][3] = temp[0] - temp[1];
  885.         temp[2] += (0x10001L << (FRACBITS-1));    /* Round */
  886.         x[7-i][1] = temp[2] + temp[3];
  887.         x[7-i][3] = temp[2] - temp[3];
  888.     }
  889.     return;
  890. }
  891. //  Idct2 - Reconstruct DCT coeffs, perform IDCT, and clip to allowed pixel range */
  892. //  Requires nsym > 0
  893. extern void Idct2AdvancedIntra( SYMBOL sym[], int nsym, PIXEL x[], int xdim, S16 recon[],
  894.                                U8 rDCpred, S8 rACpred[8], U8 rDCstore[1], S8 rACstore[8], 
  895.                                U8 cDCpred, S8 cACpred[8], U8 cDCstore[1], S8 cACstore[8],
  896.                                int predtype, int fixedDC, int leftBoundary, int upperBoundary)
  897. {
  898.     union {
  899.         S16   bshort[8][8];
  900.         S32    blong[8][4];
  901.     } block;    /* Output from IDCT */
  902.     idct2_advanced_intra( sym, nsym, block.blong, recon, 
  903.         rDCpred, rACpred, rDCstore, rACstore,
  904.         cDCpred, cACpred, cDCstore, cACstore,
  905.         predtype, fixedDC,leftBoundary,upperBoundary);
  906.     idct2_clip(x, xdim, block.blong, GENERAL);
  907.     return;
  908. }
  909. #endif
  910. //  recon_intra_dc - Reconstruct DC coeff in INTRA block
  911. static void recon_intra_dc( U8 index, S32 vec[8])
  912. {
  913.     int j, temp;
  914.     
  915.     temp = intra_dc_tab [index];
  916.     for (j = 0; j < 8; j++) {
  917.         vec[j] = temp;
  918.     }
  919.     return;
  920. }
  921. //  recon_dc - Reconstruct DC coeff
  922. static void recon_dc( S32 y, S32 vec[8])
  923. {
  924.     int j, temp;
  925.     char msg[120]; /* Flawfinder: ignore */
  926.     
  927.     if (y > 0) {
  928.         temp = dc_tab[ y - 1 ];
  929.     } else if (y < 0) {
  930.         temp = -dc_tab[ -y - 1 ];
  931.     } else {
  932.         //sprintf( msg, "ERROR: recon_dc called with arg=0");
  933.         //H261ErrMsg( msg );
  934.     }
  935.     for (j = 0; j < 8; j++) {
  936.         vec[j] = temp;
  937.     }
  938.     return;
  939. }
  940. //  recon_hor_ac - Reconstruct first hor. AC coeff
  941. static void recon_hor_ac( S32 y, S32 vec[8])
  942. {
  943.     int j, temp0, temp1;
  944.     char msg[120]; /* Flawfinder: ignore */
  945.     
  946.     if (y > 0) {
  947.         temp0 = hor_ac_tab[ y - 1 ] [0];
  948.         temp1 = hor_ac_tab[ y - 1 ] [1];
  949.     } else if (y < 0) {
  950.         temp0 = -hor_ac_tab[ -y - 1 ] [0];
  951.         temp1 = -hor_ac_tab[ -y - 1 ] [1];
  952.     } else {
  953.         //sprintf( msg, "ERROR: recon_hor_ac called with arg=0");
  954.         //H261ErrMsg( msg );
  955.     }
  956.     for (j = 0; j < 8; j += 2) {
  957.         vec[j] = temp0;
  958.         vec[j+1] = temp1;
  959.     }
  960.     return;
  961. }
  962. //  recon_vert_ac - Reconstruct first vert. AC coeff
  963. static void recon_vert_ac( S32 y, S32 vec[8])
  964. {
  965.     int j, temp, index;
  966.     char msg[120]; /* Flawfinder: ignore */
  967.     
  968.     if (y > 0) {
  969.         for (j = 0; j < 4; j++) {
  970.             vec[2*j] = vert_ac_tab[ y - 1 ] [j];
  971.             vec[2*j+1] = vert_ac_tab[ y - 1 ] [j];
  972.         }
  973.     } else if (y < 0) {
  974.         index = -y - 1;
  975.         for (j = 0; j < 4; j++) {
  976.             temp = -vert_ac_tab[ index ] [j];
  977.             vec[2*j] = temp;
  978.             vec[2*j+1] = temp;
  979.         }
  980.     } else {
  981.         //sprintf( msg, "ERROR: recon_vert_ac called with arg=0");
  982.         //H261ErrMsg( msg );
  983.     }
  984.     return;
  985. }
  986. static void update( S32 x[8], S32 index, S32 table[][8*8*8])
  987. {
  988.     int tab1_index, tab2_index;
  989.     char msg[120]; /* Flawfinder: ignore */
  990.     
  991.     //printf( "Entered updaten" );
  992.     if (index > 0) {
  993.         index -= 1;
  994.         tab1_index = index & ((0x1L << IDCT_NTAB1_BITS) - 1);  /* index % SIZE */
  995.         tab2_index = index >> IDCT_NTAB1_BITS;
  996.         //printf( "update plus: tab2 = %d    tab1 = %dn", tab2_index, tab1_index);
  997.         //printf( "x0 = %d  table = %dn", x[0], table[tab1_index][0]);
  998.         x[0] += table [tab1_index][0];
  999.         x[1] += table [tab1_index][1];
  1000.         x[2] += table [tab1_index][2];
  1001.         x[3] += table [tab1_index][3];
  1002.         x[4] += table [tab1_index][4];
  1003.         x[5] += table [tab1_index][5];
  1004.         x[6] += table [tab1_index][6];
  1005.         x[7] += table [tab1_index][7];
  1006.         if (tab2_index != 0) {
  1007.             //printf( "x0 = %d  table = %dn", x[0],
  1008.             //            table[tab2_index - 1 + IDCT_NTAB1_SIZE][0]);
  1009.             x[0] += table [tab2_index - 1 + IDCT_NTAB1_SIZE][0];
  1010.             x[1] += table [tab2_index - 1 + IDCT_NTAB1_SIZE][1];
  1011.             x[2] += table [tab2_index - 1 + IDCT_NTAB1_SIZE][2];
  1012.             x[3] += table [tab2_index - 1 + IDCT_NTAB1_SIZE][3];
  1013.             x[4] += table [tab2_index - 1 + IDCT_NTAB1_SIZE][4];
  1014.             x[5] += table [tab2_index - 1 + IDCT_NTAB1_SIZE][5];
  1015.             x[6] += table [tab2_index - 1 + IDCT_NTAB1_SIZE][6];
  1016.             x[7] += table [tab2_index - 1 + IDCT_NTAB1_SIZE][7];
  1017.         //printf( "x0 = %dn", x[0]);
  1018.         }
  1019.     } else if (index < 0) {
  1020.         index = -index - 1;
  1021.         tab1_index = index & ((0x1L << IDCT_NTAB1_BITS) - 1);  /* index % SIZE */
  1022.         tab2_index = index >> IDCT_NTAB1_BITS;
  1023.         //printf( "update minus: tab2 = %d    tab1 = %dn", tab2_index, tab1_index);
  1024.         x[0] -= table [tab1_index][0];
  1025.         x[1] -= table [tab1_index][1];
  1026.         x[2] -= table [tab1_index][2];
  1027.         x[3] -= table [tab1_index][3];
  1028.         x[4] -= table [tab1_index][4];
  1029.         x[5] -= table [tab1_index][5];
  1030.         x[6] -= table [tab1_index][6];
  1031.         x[7] -= table [tab1_index][7];
  1032.         if (tab2_index != 0) {
  1033.             x[0] -= table [tab2_index - 1 + IDCT_NTAB1_SIZE][0];
  1034.             x[1] -= table [tab2_index - 1 + IDCT_NTAB1_SIZE][1];
  1035.             x[2] -= table [tab2_index - 1 + IDCT_NTAB1_SIZE][2];
  1036.             x[3] -= table [tab2_index - 1 + IDCT_NTAB1_SIZE][3];
  1037.             x[4] -= table [tab2_index - 1 + IDCT_NTAB1_SIZE][4];
  1038.             x[5] -= table [tab2_index - 1 + IDCT_NTAB1_SIZE][5];
  1039.             x[6] -= table [tab2_index - 1 + IDCT_NTAB1_SIZE][6];
  1040.             x[7] -= table [tab2_index - 1 + IDCT_NTAB1_SIZE][7];
  1041.         }
  1042.     } else if (index == 0) {
  1043.         //sprintf( msg, "ERROR: update called with arg=0");
  1044.         //H261ErrMsg( msg );
  1045.     }
  1046.     return;
  1047. }
  1048. static double dctfunc (int freq, int index)
  1049. {
  1050.     if (freq == 0) {
  1051.         return (1./sqrt(8.));
  1052.     }
  1053.     return ( cos(PI*freq*(index+0.5)/8.) / 2.);
  1054. }
  1055. // Turn off "warning C4244: '=' : conversion from 'double ' to 'long ', 
  1056. //     possible loss of data" for MSVC 4.0
  1057. #pragma message("Turning off ConvFromDblToLong Warning")
  1058. #pragma warning(disable:4244)
  1059. //  Round x and y; put x in lower halfword, y in upper halfword (if little-endian)
  1060. static S32 dct_tab_entry (double x, double y)
  1061. {
  1062.     S32 ix, iy;
  1063.     ix = x * 65536.;    /* Mult by 2**16 */
  1064.     iy = y * 65536.;
  1065. #ifdef LITTLE_ENDIAN    /* x in lower halfword, y in upper */
  1066.     return (combine (iy, ix));
  1067. #elif defined BIG_ENDIAN    /* x in upper halfword, y in lower */
  1068.     return (combine (ix, iy));
  1069. #else
  1070. #   error
  1071. #endif
  1072. }
  1073. // Turn back on "warning C4244: '=' : conversion from 'double ' to 'long ', 
  1074. //     possible loss of data" for MSVC 4.0
  1075. #pragma warning(default:4244)
  1076. //  iy in upper halfword, ix>>16 in lower
  1077. static S32 combine (S32 iy, S32 ix)
  1078. {
  1079.     S32 low_tab, high_tab;
  1080. // Note: this should not be a big-endian problem because calls to this function
  1081. // exchange the order of ix and iy as needed. (Though wouldn't it have been
  1082. // simpler to make the change here?) tkent
  1083.     low_tab = (ix + 0x8000L) >> 16  &  0x0000ffffL;
  1084.     high_tab = iy + 0x8000L - low_tab;
  1085.     high_tab &= 0xffff0000L;
  1086.     return (low_tab | high_tab);
  1087. }