simple_idct.c
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:16k
源码类别:

Windows CE

开发平台:

C/C++

  1. /*
  2.  * Simple IDCT
  3.  *
  4.  * Copyright (c) 2001 Michael Niedermayer <michaelni@gmx.at>
  5.  *
  6.  * This library is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU Lesser General Public
  8.  * License as published by the Free Software Foundation; either
  9.  * version 2 of the License, or (at your option) any later version.
  10.  *
  11.  * This library 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 GNU
  14.  * Lesser General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU Lesser General Public
  17.  * License along with this library; if not, write to the Free Software
  18.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  19.  */
  20.  
  21. /**
  22.  * @file simple_idct.c
  23.  * simpleidct in C.
  24.  */
  25.  
  26. /*
  27.   based upon some outcommented c code from mpeg2dec (idct_mmx.c
  28.   written by Aaron Holtzman <aholtzma@ess.engr.uvic.ca>) 
  29.  */
  30. #include "avcodec.h"
  31. #include "dsputil.h"
  32. #include "simple_idct.h"
  33. #if 0
  34. #define W1 2841 /* 2048*sqrt (2)*cos (1*pi/16) */
  35. #define W2 2676 /* 2048*sqrt (2)*cos (2*pi/16) */
  36. #define W3 2408 /* 2048*sqrt (2)*cos (3*pi/16) */
  37. #define W4 2048 /* 2048*sqrt (2)*cos (4*pi/16) */
  38. #define W5 1609 /* 2048*sqrt (2)*cos (5*pi/16) */
  39. #define W6 1108 /* 2048*sqrt (2)*cos (6*pi/16) */
  40. #define W7 565  /* 2048*sqrt (2)*cos (7*pi/16) */
  41. #define ROW_SHIFT 8
  42. #define COL_SHIFT 17
  43. #else
  44. #define W1  22725  //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5
  45. #define W2  21407  //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5
  46. #define W3  19266  //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5
  47. #define W4  16383  //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5
  48. #define W5  12873  //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5
  49. #define W6  8867   //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5
  50. #define W7  4520   //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5
  51. #define ROW_SHIFT 11
  52. #define COL_SHIFT 20 // 6
  53. #endif
  54. #if defined(ARCH_POWERPC_405)
  55. /* signed 16x16 -> 32 multiply add accumulate */
  56. #define MAC16(rt, ra, rb) 
  57.     asm ("maclhw %0, %2, %3" : "=r" (rt) : "0" (rt), "r" (ra), "r" (rb));
  58. /* signed 16x16 -> 32 multiply */
  59. #define MUL16(rt, ra, rb) 
  60.     asm ("mullhw %0, %1, %2" : "=r" (rt) : "r" (ra), "r" (rb));
  61. #else
  62. /* signed 16x16 -> 32 multiply add accumulate */
  63. #define MAC16(rt, ra, rb) rt += (ra) * (rb)
  64. /* signed 16x16 -> 32 multiply */
  65. #define MUL16(rt, ra, rb) rt = (ra) * (rb)
  66. #endif
  67. static inline void idctRowCondDC (DCTELEM * row)
  68. {
  69. int a0, a1, a2, a3, b0, b1, b2, b3;
  70. #ifdef FAST_64BIT
  71.         uint64_t temp;
  72. #else
  73.         uint32_t temp;
  74. #endif
  75. #ifdef FAST_64BIT
  76. #ifdef WORDS_BIGENDIAN
  77. #define ROW0_MASK 0xffff000000000000LL
  78. #else
  79. #define ROW0_MASK 0xffffLL
  80. #endif
  81.         if(sizeof(DCTELEM)==2){
  82.             if ( ((((uint64_t *)row)[0] & ~ROW0_MASK) | 
  83.                   ((uint64_t *)row)[1]) == 0) {
  84.                 temp = (row[0] << 3) & 0xffff;
  85.                 temp += temp << 16;
  86.                 temp += temp << 32;
  87.                 ((uint64_t *)row)[0] = temp;
  88.                 ((uint64_t *)row)[1] = temp;
  89.                 return;
  90.     }
  91.         }else{
  92.             if (!(row[1]|row[2]|row[3]|row[4]|row[5]|row[6]|row[7])) {
  93.                 row[0]=row[1]=row[2]=row[3]=row[4]=row[5]=row[6]=row[7]= row[0] << 3;
  94.                 return;
  95.             }
  96.         }
  97. #else
  98.         if(sizeof(DCTELEM)==2){
  99.             if (!(((uint32_t*)row)[1] |
  100.                   ((uint32_t*)row)[2] |
  101.                   ((uint32_t*)row)[3] | 
  102.                   row[1])) {
  103.                 temp = (row[0] << 3) & 0xffff;
  104.                 temp += temp << 16;
  105.                 ((uint32_t*)row)[0]=((uint32_t*)row)[1] =
  106.                 ((uint32_t*)row)[2]=((uint32_t*)row)[3] = temp;
  107.                 return;
  108.             }
  109.         }else{
  110.             if (!(row[1]|row[2]|row[3]|row[4]|row[5]|row[6]|row[7])) {
  111.                 row[0]=row[1]=row[2]=row[3]=row[4]=row[5]=row[6]=row[7]= row[0] << 3;
  112.                 return;
  113.             }
  114.         }
  115. #endif
  116.         a0 = (W4 * row[0]) + (1 << (ROW_SHIFT - 1));
  117. a1 = a0;
  118. a2 = a0;
  119. a3 = a0;
  120.         /* no need to optimize : gcc does it */
  121.         a0 += W2 * row[2];
  122.         a1 += W6 * row[2];
  123.         a2 -= W6 * row[2];
  124.         a3 -= W2 * row[2];
  125.         MUL16(b0, W1, row[1]);
  126.         MAC16(b0, W3, row[3]);
  127.         MUL16(b1, W3, row[1]);
  128.         MAC16(b1, -W7, row[3]);
  129.         MUL16(b2, W5, row[1]);
  130.         MAC16(b2, -W1, row[3]);
  131.         MUL16(b3, W7, row[1]);
  132.         MAC16(b3, -W5, row[3]);
  133. #ifdef FAST_64BIT
  134.         temp = ((uint64_t*)row)[1];
  135. #else
  136.         temp = ((uint32_t*)row)[2] | ((uint32_t*)row)[3];
  137. #endif
  138. if (temp != 0) {
  139.             a0 += W4*row[4] + W6*row[6];
  140.             a1 += - W4*row[4] - W2*row[6];
  141.             a2 += - W4*row[4] + W2*row[6];
  142.             a3 += W4*row[4] - W6*row[6];
  143.             MAC16(b0, W5, row[5]);
  144.             MAC16(b0, W7, row[7]);
  145.             
  146.             MAC16(b1, -W1, row[5]);
  147.             MAC16(b1, -W5, row[7]);
  148.             
  149.             MAC16(b2, W7, row[5]);
  150.             MAC16(b2, W3, row[7]);
  151.             
  152.             MAC16(b3, W3, row[5]);
  153.             MAC16(b3, -W1, row[7]);
  154. }
  155. row[0] = (a0 + b0) >> ROW_SHIFT;
  156. row[7] = (a0 - b0) >> ROW_SHIFT;
  157. row[1] = (a1 + b1) >> ROW_SHIFT;
  158. row[6] = (a1 - b1) >> ROW_SHIFT;
  159. row[2] = (a2 + b2) >> ROW_SHIFT;
  160. row[5] = (a2 - b2) >> ROW_SHIFT;
  161. row[3] = (a3 + b3) >> ROW_SHIFT;
  162. row[4] = (a3 - b3) >> ROW_SHIFT;
  163. }
  164. static inline void idctSparseColPut (uint8_t *dest, int line_size, 
  165.                                      DCTELEM * col)
  166. {
  167. int a0, a1, a2, a3, b0, b1, b2, b3;
  168.         uint8_t *cm = cropTbl + MAX_NEG_CROP;
  169.         /* XXX: I did that only to give same values as previous code */
  170. a0 = W4 * (col[8*0] + ((1<<(COL_SHIFT-1))/W4));
  171. a1 = a0;
  172. a2 = a0;
  173. a3 = a0;
  174.         a0 +=  + W2*col[8*2];
  175.         a1 +=  + W6*col[8*2];
  176.         a2 +=  - W6*col[8*2];
  177.         a3 +=  - W2*col[8*2];
  178.         MUL16(b0, W1, col[8*1]);
  179.         MUL16(b1, W3, col[8*1]);
  180.         MUL16(b2, W5, col[8*1]);
  181.         MUL16(b3, W7, col[8*1]);
  182.         MAC16(b0, + W3, col[8*3]);
  183.         MAC16(b1, - W7, col[8*3]);
  184.         MAC16(b2, - W1, col[8*3]);
  185.         MAC16(b3, - W5, col[8*3]);
  186. if(col[8*4]){
  187.             a0 += + W4*col[8*4];
  188.             a1 += - W4*col[8*4];
  189.             a2 += - W4*col[8*4];
  190.             a3 += + W4*col[8*4];
  191. }
  192. if (col[8*5]) {
  193.             MAC16(b0, + W5, col[8*5]);
  194.             MAC16(b1, - W1, col[8*5]);
  195.             MAC16(b2, + W7, col[8*5]);
  196.             MAC16(b3, + W3, col[8*5]);
  197. }
  198. if(col[8*6]){
  199.             a0 += + W6*col[8*6];
  200.             a1 += - W2*col[8*6];
  201.             a2 += + W2*col[8*6];
  202.             a3 += - W6*col[8*6];
  203. }
  204. if (col[8*7]) {
  205.             MAC16(b0, + W7, col[8*7]);
  206.             MAC16(b1, - W5, col[8*7]);
  207.             MAC16(b2, + W3, col[8*7]);
  208.             MAC16(b3, - W1, col[8*7]);
  209. }
  210.         dest[0] = cm[(a0 + b0) >> COL_SHIFT];
  211.         dest += line_size;
  212.         dest[0] = cm[(a1 + b1) >> COL_SHIFT];
  213.         dest += line_size;
  214.         dest[0] = cm[(a2 + b2) >> COL_SHIFT];
  215.         dest += line_size;
  216.         dest[0] = cm[(a3 + b3) >> COL_SHIFT];
  217.         dest += line_size;
  218.         dest[0] = cm[(a3 - b3) >> COL_SHIFT];
  219.         dest += line_size;
  220.         dest[0] = cm[(a2 - b2) >> COL_SHIFT];
  221.         dest += line_size;
  222.         dest[0] = cm[(a1 - b1) >> COL_SHIFT];
  223.         dest += line_size;
  224.         dest[0] = cm[(a0 - b0) >> COL_SHIFT];
  225. }
  226. static inline void idctSparseColAdd (uint8_t *dest, int line_size, 
  227.                                      DCTELEM * col)
  228. {
  229. int a0, a1, a2, a3, b0, b1, b2, b3;
  230.         uint8_t *cm = cropTbl + MAX_NEG_CROP;
  231.         /* XXX: I did that only to give same values as previous code */
  232. a0 = W4 * (col[8*0] + ((1<<(COL_SHIFT-1))/W4));
  233. a1 = a0;
  234. a2 = a0;
  235. a3 = a0;
  236.         a0 +=  + W2*col[8*2];
  237.         a1 +=  + W6*col[8*2];
  238.         a2 +=  - W6*col[8*2];
  239.         a3 +=  - W2*col[8*2];
  240.         MUL16(b0, W1, col[8*1]);
  241.         MUL16(b1, W3, col[8*1]);
  242.         MUL16(b2, W5, col[8*1]);
  243.         MUL16(b3, W7, col[8*1]);
  244.         MAC16(b0, + W3, col[8*3]);
  245.         MAC16(b1, - W7, col[8*3]);
  246.         MAC16(b2, - W1, col[8*3]);
  247.         MAC16(b3, - W5, col[8*3]);
  248. if(col[8*4]){
  249.             a0 += + W4*col[8*4];
  250.             a1 += - W4*col[8*4];
  251.             a2 += - W4*col[8*4];
  252.             a3 += + W4*col[8*4];
  253. }
  254. if (col[8*5]) {
  255.             MAC16(b0, + W5, col[8*5]);
  256.             MAC16(b1, - W1, col[8*5]);
  257.             MAC16(b2, + W7, col[8*5]);
  258.             MAC16(b3, + W3, col[8*5]);
  259. }
  260. if(col[8*6]){
  261.             a0 += + W6*col[8*6];
  262.             a1 += - W2*col[8*6];
  263.             a2 += + W2*col[8*6];
  264.             a3 += - W6*col[8*6];
  265. }
  266. if (col[8*7]) {
  267.             MAC16(b0, + W7, col[8*7]);
  268.             MAC16(b1, - W5, col[8*7]);
  269.             MAC16(b2, + W3, col[8*7]);
  270.             MAC16(b3, - W1, col[8*7]);
  271. }
  272.         dest[0] = cm[dest[0] + ((a0 + b0) >> COL_SHIFT)];
  273.         dest += line_size;
  274.         dest[0] = cm[dest[0] + ((a1 + b1) >> COL_SHIFT)];
  275.         dest += line_size;
  276.         dest[0] = cm[dest[0] + ((a2 + b2) >> COL_SHIFT)];
  277.         dest += line_size;
  278.         dest[0] = cm[dest[0] + ((a3 + b3) >> COL_SHIFT)];
  279.         dest += line_size;
  280.         dest[0] = cm[dest[0] + ((a3 - b3) >> COL_SHIFT)];
  281.         dest += line_size;
  282.         dest[0] = cm[dest[0] + ((a2 - b2) >> COL_SHIFT)];
  283.         dest += line_size;
  284.         dest[0] = cm[dest[0] + ((a1 - b1) >> COL_SHIFT)];
  285.         dest += line_size;
  286.         dest[0] = cm[dest[0] + ((a0 - b0) >> COL_SHIFT)];
  287. }
  288. static inline void idctSparseCol (DCTELEM * col)
  289. {
  290. int a0, a1, a2, a3, b0, b1, b2, b3;
  291.         /* XXX: I did that only to give same values as previous code */
  292. a0 = W4 * (col[8*0] + ((1<<(COL_SHIFT-1))/W4));
  293. a1 = a0;
  294. a2 = a0;
  295. a3 = a0;
  296.         a0 +=  + W2*col[8*2];
  297.         a1 +=  + W6*col[8*2];
  298.         a2 +=  - W6*col[8*2];
  299.         a3 +=  - W2*col[8*2];
  300.         MUL16(b0, W1, col[8*1]);
  301.         MUL16(b1, W3, col[8*1]);
  302.         MUL16(b2, W5, col[8*1]);
  303.         MUL16(b3, W7, col[8*1]);
  304.         MAC16(b0, + W3, col[8*3]);
  305.         MAC16(b1, - W7, col[8*3]);
  306.         MAC16(b2, - W1, col[8*3]);
  307.         MAC16(b3, - W5, col[8*3]);
  308. if(col[8*4]){
  309.             a0 += + W4*col[8*4];
  310.             a1 += - W4*col[8*4];
  311.             a2 += - W4*col[8*4];
  312.             a3 += + W4*col[8*4];
  313. }
  314. if (col[8*5]) {
  315.             MAC16(b0, + W5, col[8*5]);
  316.             MAC16(b1, - W1, col[8*5]);
  317.             MAC16(b2, + W7, col[8*5]);
  318.             MAC16(b3, + W3, col[8*5]);
  319. }
  320. if(col[8*6]){
  321.             a0 += + W6*col[8*6];
  322.             a1 += - W2*col[8*6];
  323.             a2 += + W2*col[8*6];
  324.             a3 += - W6*col[8*6];
  325. }
  326. if (col[8*7]) {
  327.             MAC16(b0, + W7, col[8*7]);
  328.             MAC16(b1, - W5, col[8*7]);
  329.             MAC16(b2, + W3, col[8*7]);
  330.             MAC16(b3, - W1, col[8*7]);
  331. }
  332.         col[0 ] = ((a0 + b0) >> COL_SHIFT);
  333.         col[8 ] = ((a1 + b1) >> COL_SHIFT);
  334.         col[16] = ((a2 + b2) >> COL_SHIFT);
  335.         col[24] = ((a3 + b3) >> COL_SHIFT);
  336.         col[32] = ((a3 - b3) >> COL_SHIFT);
  337.         col[40] = ((a2 - b2) >> COL_SHIFT);
  338.         col[48] = ((a1 - b1) >> COL_SHIFT);
  339.         col[56] = ((a0 - b0) >> COL_SHIFT);
  340. }
  341. void simple_idct_put(uint8_t *dest, int line_size, DCTELEM *block)
  342. {
  343.     int i;
  344.     for(i=0; i<8; i++)
  345.         idctRowCondDC(block + i*8);
  346.     
  347.     for(i=0; i<8; i++)
  348.         idctSparseColPut(dest + i, line_size, block + i);
  349. }
  350. void simple_idct_add(uint8_t *dest, int line_size, DCTELEM *block)
  351. {
  352.     int i;
  353.     for(i=0; i<8; i++)
  354.         idctRowCondDC(block + i*8);
  355.     
  356.     for(i=0; i<8; i++)
  357.         idctSparseColAdd(dest + i, line_size, block + i);
  358. }
  359. void simple_idct(DCTELEM *block)
  360. {
  361.     int i;
  362.     for(i=0; i<8; i++)
  363.         idctRowCondDC(block + i*8);
  364.     
  365.     for(i=0; i<8; i++)
  366.         idctSparseCol(block + i);
  367. }
  368. /* 2x4x8 idct */
  369. #define CN_SHIFT 12
  370. #define C_FIX(x) ((int)((x) * (1 << CN_SHIFT) + 0.5))
  371. #define C1 C_FIX(0.6532814824)
  372. #define C2 C_FIX(0.2705980501)
  373. /* row idct is multiple by 16 * sqrt(2.0), col idct4 is normalized,
  374.    and the butterfly must be multiplied by 0.5 * sqrt(2.0) */
  375. #define C_SHIFT (4+1+12)
  376. static inline void idct4col(uint8_t *dest, int line_size, const DCTELEM *col)
  377. {
  378.     int c0, c1, c2, c3, a0, a1, a2, a3;
  379.     const uint8_t *cm = cropTbl + MAX_NEG_CROP;
  380.     a0 = col[8*0];
  381.     a1 = col[8*2];
  382.     a2 = col[8*4];
  383.     a3 = col[8*6];
  384.     c0 = ((a0 + a2) << (CN_SHIFT - 1)) + (1 << (C_SHIFT - 1));
  385.     c2 = ((a0 - a2) << (CN_SHIFT - 1)) + (1 << (C_SHIFT - 1));
  386.     c1 = a1 * C1 + a3 * C2;
  387.     c3 = a1 * C2 - a3 * C1;
  388.     dest[0] = cm[(c0 + c1) >> C_SHIFT];
  389.     dest += line_size;
  390.     dest[0] = cm[(c2 + c3) >> C_SHIFT];
  391.     dest += line_size;
  392.     dest[0] = cm[(c2 - c3) >> C_SHIFT];
  393.     dest += line_size;
  394.     dest[0] = cm[(c0 - c1) >> C_SHIFT];
  395. }
  396. #define BF(k) 
  397. {
  398.     int a0, a1;
  399.     a0 = ptr[k];
  400.     a1 = ptr[8 + k];
  401.     ptr[k] = a0 + a1;
  402.     ptr[8 + k] = a0 - a1;
  403. }
  404. /* only used by DV codec. The input must be interlaced. 128 is added
  405.    to the pixels before clamping to avoid systematic error
  406.    (1024*sqrt(2)) offset would be needed otherwise. */
  407. /* XXX: I think a 1.0/sqrt(2) normalization should be needed to
  408.    compensate the extra butterfly stage - I don't have the full DV
  409.    specification */
  410. void simple_idct248_put(uint8_t *dest, int line_size, DCTELEM *block)
  411. {
  412.     int i;
  413.     DCTELEM *ptr;
  414.     
  415.     /* butterfly */
  416.     ptr = block;
  417.     for(i=0;i<4;i++) {
  418.         BF(0);
  419.         BF(1);
  420.         BF(2);
  421.         BF(3);
  422.         BF(4);
  423.         BF(5);
  424.         BF(6);
  425.         BF(7);
  426.         ptr += 2 * 8;
  427.     }
  428.     /* IDCT8 on each line */
  429.     for(i=0; i<8; i++) {
  430.         idctRowCondDC(block + i*8);
  431.     }
  432.     /* IDCT4 and store */
  433.     for(i=0;i<8;i++) {
  434.         idct4col(dest + i, 2 * line_size, block + i);
  435.         idct4col(dest + line_size + i, 2 * line_size, block + 8 + i);
  436.     }
  437. }
  438. /* 8x4 & 4x8 WMV2 IDCT */
  439. #undef CN_SHIFT
  440. #undef C_SHIFT
  441. #undef C_FIX
  442. #undef C1
  443. #undef C2
  444. #define CN_SHIFT 12
  445. #define C_FIX(x) ((int)((x) * 1.414213562 * (1 << CN_SHIFT) + 0.5))
  446. #define C1 C_FIX(0.6532814824)
  447. #define C2 C_FIX(0.2705980501)
  448. #define C3 C_FIX(0.5)
  449. #define C_SHIFT (4+1+12)
  450. static inline void idct4col_add(uint8_t *dest, int line_size, const DCTELEM *col)
  451. {
  452.     int c0, c1, c2, c3, a0, a1, a2, a3;
  453.     const uint8_t *cm = cropTbl + MAX_NEG_CROP;
  454.     a0 = col[8*0];
  455.     a1 = col[8*1];
  456.     a2 = col[8*2];
  457.     a3 = col[8*3];
  458.     c0 = (a0 + a2)*C3 + (1 << (C_SHIFT - 1));
  459.     c2 = (a0 - a2)*C3 + (1 << (C_SHIFT - 1));
  460.     c1 = a1 * C1 + a3 * C2;
  461.     c3 = a1 * C2 - a3 * C1;
  462.     dest[0] = cm[dest[0] + ((c0 + c1) >> C_SHIFT)];
  463.     dest += line_size;
  464.     dest[0] = cm[dest[0] + ((c2 + c3) >> C_SHIFT)];
  465.     dest += line_size;
  466.     dest[0] = cm[dest[0] + ((c2 - c3) >> C_SHIFT)];
  467.     dest += line_size;
  468.     dest[0] = cm[dest[0] + ((c0 - c1) >> C_SHIFT)];
  469. }
  470. #define RN_SHIFT 15
  471. #define R_FIX(x) ((int)((x) * 1.414213562 * (1 << RN_SHIFT) + 0.5))
  472. #define R1 R_FIX(0.6532814824)
  473. #define R2 R_FIX(0.2705980501)
  474. #define R3 R_FIX(0.5)
  475. #define R_SHIFT 11
  476. static inline void idct4row(DCTELEM *row)
  477. {
  478.     int c0, c1, c2, c3, a0, a1, a2, a3;
  479.     //const uint8_t *cm = cropTbl + MAX_NEG_CROP;
  480.     a0 = row[0];
  481.     a1 = row[1];
  482.     a2 = row[2];
  483.     a3 = row[3];
  484.     c0 = (a0 + a2)*R3 + (1 << (R_SHIFT - 1));
  485.     c2 = (a0 - a2)*R3 + (1 << (R_SHIFT - 1));
  486.     c1 = a1 * R1 + a3 * R2;
  487.     c3 = a1 * R2 - a3 * R1;
  488.     row[0]= (c0 + c1) >> R_SHIFT;
  489.     row[1]= (c2 + c3) >> R_SHIFT;
  490.     row[2]= (c2 - c3) >> R_SHIFT;
  491.     row[3]= (c0 - c1) >> R_SHIFT;
  492. }
  493. void simple_idct84_add(uint8_t *dest, int line_size, DCTELEM *block)
  494. {
  495.     int i;
  496.     /* IDCT8 on each line */
  497.     for(i=0; i<4; i++) {
  498.         idctRowCondDC(block + i*8);
  499.     }
  500.     /* IDCT4 and store */
  501.     for(i=0;i<8;i++) {
  502.         idct4col_add(dest + i, line_size, block + i);
  503.     }
  504. }
  505. void simple_idct48_add(uint8_t *dest, int line_size, DCTELEM *block)
  506. {
  507.     int i;
  508.     /* IDCT4 on each line */
  509.     for(i=0; i<8; i++) {
  510.         idct4row(block + i*8);
  511.     }
  512.     /* IDCT8 and store */
  513.     for(i=0; i<4; i++){
  514.         idctSparseColAdd(dest + i, line_size, block + i);
  515.     }
  516. }