Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2150770
  • 博文数量: 438
  • 博客积分: 3871
  • 博客等级: 中校
  • 技术积分: 6075
  • 用 户 组: 普通用户
  • 注册时间: 2011-09-10 00:11
个人简介

邮箱: wangcong02345@163.com

文章分类

全部博文(438)

文章存档

2017年(15)

2016年(119)

2015年(91)

2014年(62)

2013年(56)

2012年(79)

2011年(16)

分类: LINUX

2016-07-08 19:02:15

在libgpeg-6b的jfdctint.c中是fdct的算法,现在提取出来单独研究,看能不能搞懂。



2. 代码 
出自jpeg-6b/jfdctint.c,这儿只是加了输入与输出
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <math.h>
  4. #define DCTSIZE 8
  5. #define CONST_BITS 13
  6. #define PASS1_BITS 2

  7. #define RIGHT_SHIFT(x,shft) ((x) >> (shft))
  8. #define ONE ((int) 1)
  9. #define CONST_SCALE (ONE << CONST_BITS)

  10. #define FIX(x) ((int) ((x) * CONST_SCALE + 0.5))

  11. #define DESCALE(x,n) RIGHT_SHIFT((x) + (ONE << ((n)-1)), n)

  12. #define MULTIPLY16C16(var,const) ((var) * (const))

  13. /* Some C compilers fail to reduce "FIX(constant)" at compile time, thus
  14.  * causing a lot of useless floating-point operations at run time.
  15.  * To get around this we use the following pre-calculated constants.
  16.  * If you change CONST_BITS you may want to add appropriate values.
  17.  * (With a reasonable C compiler, you can just rely on the FIX() macro...)
  18.  */
  19. #define FIX_0_298631336 ((int) 2446)    /* FIX(0.298631336) */
  20. #define FIX_0_390180644 ((int) 3196)    /* FIX(0.390180644) */
  21. #define FIX_0_541196100 ((int) 4433)    /* FIX(0.541196100) */
  22. #define FIX_0_765366865 ((int) 6270)    /* FIX(0.765366865) */
  23. #define FIX_0_899976223 ((int) 7373)    /* FIX(0.899976223) */
  24. #define FIX_1_175875602 ((int) 9633)    /* FIX(1.175875602) */
  25. #define FIX_1_501321110 ((int) 12299)    /* FIX(1.501321110) */
  26. #define FIX_1_847759065 ((int) 15137)    /* FIX(1.847759065) */
  27. #define FIX_1_961570560 ((int) 16069)    /* FIX(1.961570560) */
  28. #define FIX_2_053119869 ((int) 16819)    /* FIX(2.053119869) */
  29. #define FIX_2_562915447 ((int) 20995)    /* FIX(2.562915447) */
  30. #define FIX_3_072711026 ((int) 25172)    /* FIX(3.072711026) */

  31. /* Multiply an int variable by an int constant to yield an INT32 result.
  32.  * For 8-bit samples with the recommended scaling, all the variable
  33.  * and constant values involved are no more than 16 bits wide, so a
  34.  * 16x16->32 bit multiply can be used instead of a full 32x32 multiply.
  35.  * For 12-bit samples, a full 32-bit multiplication will be needed.
  36.  */
  37. #define MULTIPLY(var,const) MULTIPLY16C16(var,const)

  38. /*
  39.  * Perform the forward DCT on one block of samples.
  40.  */

  41. void jpeg_fdct_islow (int * data)
  42. {
  43.     int tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7;
  44.     int tmp10, tmp11, tmp12, tmp13;
  45.     int z1, z2, z3, z4, z5;
  46.     int *dataptr;
  47.     int ctr;

  48.     /* Pass 1: process rows. */
  49.     /* Note results are scaled up by sqrt(8) compared to a true DCT; */
  50.     /* furthermore, we scale the results by 2**PASS1_BITS. */

  51.     dataptr = data;
  52.     for (ctr = DCTSIZE-1; ctr >= 0; ctr--) {
  53.         tmp0 = dataptr[0] + dataptr[7];
  54.         tmp7 = dataptr[0] - dataptr[7];
  55.         tmp1 = dataptr[1] + dataptr[6];
  56.         tmp6 = dataptr[1] - dataptr[6];
  57.         tmp2 = dataptr[2] + dataptr[5];
  58.         tmp5 = dataptr[2] - dataptr[5];
  59.         tmp3 = dataptr[3] + dataptr[4];
  60.         tmp4 = dataptr[3] - dataptr[4];

  61.         /* Even part per LL&M figure 1 --- note that published figure is faulty;
  62.          * rotator "sqrt(2)*c1" should be "sqrt(2)*c6".
  63.          */

  64.         tmp10 = tmp0 + tmp3;
  65.         tmp13 = tmp0 - tmp3;
  66.         tmp11 = tmp1 + tmp2;
  67.         tmp12 = tmp1 - tmp2;

  68.         dataptr[0] = (int) ((tmp10 + tmp11) << PASS1_BITS);
  69.         dataptr[4] = (int) ((tmp10 - tmp11) << PASS1_BITS);

  70.         z1 = MULTIPLY(tmp12 + tmp13, FIX_0_541196100);
  71.         dataptr[2] = (int) DESCALE(z1 + MULTIPLY(tmp13, FIX_0_765366865),
  72.                 CONST_BITS-PASS1_BITS);
  73.         dataptr[6] = (int) DESCALE(z1 + MULTIPLY(tmp12, - FIX_1_847759065),
  74.                 CONST_BITS-PASS1_BITS);

  75.         /* Odd part per figure 8 --- note paper omits factor of sqrt(2).
  76.          * cK represents cos(K*pi/16).
  77.          * i0..i3 in the paper are tmp4..tmp7 here.
  78.          */

  79.         z1 = tmp4 + tmp7;
  80.         z2 = tmp5 + tmp6;
  81.         z3 = tmp4 + tmp6;
  82.         z4 = tmp5 + tmp7;
  83.         z5 = MULTIPLY(z3 + z4, FIX_1_175875602); /* sqrt(2) * c3 */

  84.         tmp4 = MULTIPLY(tmp4, FIX_0_298631336); /* sqrt(2) * (-c1+c3+c5-c7) */
  85.         tmp5 = MULTIPLY(tmp5, FIX_2_053119869); /* sqrt(2) * ( c1+c3-c5+c7) */
  86.         tmp6 = MULTIPLY(tmp6, FIX_3_072711026); /* sqrt(2) * ( c1+c3+c5-c7) */
  87.         tmp7 = MULTIPLY(tmp7, FIX_1_501321110); /* sqrt(2) * ( c1+c3-c5-c7) */
  88.         z1 = MULTIPLY(z1, - FIX_0_899976223); /* sqrt(2) * (c7-c3) */
  89.         z2 = MULTIPLY(z2, - FIX_2_562915447); /* sqrt(2) * (-c1-c3) */
  90.         z3 = MULTIPLY(z3, - FIX_1_961570560); /* sqrt(2) * (-c3-c5) */
  91.         z4 = MULTIPLY(z4, - FIX_0_390180644); /* sqrt(2) * (c5-c3) */

  92.         z3 += z5;
  93.         z4 += z5;

  94.         dataptr[7] = (int) DESCALE(tmp4 + z1 + z3, CONST_BITS-PASS1_BITS);
  95.         dataptr[5] = (int) DESCALE(tmp5 + z2 + z4, CONST_BITS-PASS1_BITS);
  96.         dataptr[3] = (int) DESCALE(tmp6 + z2 + z3, CONST_BITS-PASS1_BITS);
  97.         dataptr[1] = (int) DESCALE(tmp7 + z1 + z4, CONST_BITS-PASS1_BITS);

  98.         dataptr += DCTSIZE;        /* advance pointer to next row */
  99.     }

  100.     /* Pass 2: process columns.
  101.      * We remove the PASS1_BITS scaling, but leave the results scaled up
  102.      * by an overall factor of 8.
  103.      */

  104.     dataptr = data;
  105.     for (ctr = DCTSIZE-1; ctr >= 0; ctr--) {
  106.         tmp0 = dataptr[DCTSIZE*0] + dataptr[DCTSIZE*7];
  107.         tmp7 = dataptr[DCTSIZE*0] - dataptr[DCTSIZE*7];
  108.         tmp1 = dataptr[DCTSIZE*1] + dataptr[DCTSIZE*6];
  109.         tmp6 = dataptr[DCTSIZE*1] - dataptr[DCTSIZE*6];
  110.         tmp2 = dataptr[DCTSIZE*2] + dataptr[DCTSIZE*5];
  111.         tmp5 = dataptr[DCTSIZE*2] - dataptr[DCTSIZE*5];
  112.         tmp3 = dataptr[DCTSIZE*3] + dataptr[DCTSIZE*4];
  113.         tmp4 = dataptr[DCTSIZE*3] - dataptr[DCTSIZE*4];

  114.         /* Even part per LL&M figure 1 --- note that published figure is faulty;
  115.          * rotator "sqrt(2)*c1" should be "sqrt(2)*c6".
  116.          */

  117.         tmp10 = tmp0 + tmp3;
  118.         tmp13 = tmp0 - tmp3;
  119.         tmp11 = tmp1 + tmp2;
  120.         tmp12 = tmp1 - tmp2;

  121.         dataptr[DCTSIZE*0] = (int) DESCALE(tmp10 + tmp11, PASS1_BITS);
  122.         dataptr[DCTSIZE*4] = (int) DESCALE(tmp10 - tmp11, PASS1_BITS);

  123.         z1 = MULTIPLY(tmp12 + tmp13, FIX_0_541196100);
  124.         dataptr[DCTSIZE*2] = (int) DESCALE(z1 + MULTIPLY(tmp13, FIX_0_765366865),
  125.                 CONST_BITS+PASS1_BITS);
  126.         dataptr[DCTSIZE*6] = (int) DESCALE(z1 + MULTIPLY(tmp12, - FIX_1_847759065),
  127.                 CONST_BITS+PASS1_BITS);

  128.         /* Odd part per figure 8 --- note paper omits factor of sqrt(2).
  129.          * cK represents cos(K*pi/16).
  130.          * i0..i3 in the paper are tmp4..tmp7 here.
  131.          */

  132.         z1 = tmp4 + tmp7;
  133.         z2 = tmp5 + tmp6;
  134.         z3 = tmp4 + tmp6;
  135.         z4 = tmp5 + tmp7;
  136.         z5 = MULTIPLY(z3 + z4, FIX_1_175875602); /* sqrt(2) * c3 */

  137.         tmp4 = MULTIPLY(tmp4, FIX_0_298631336); /* sqrt(2) * (-c1+c3+c5-c7) */
  138.         tmp5 = MULTIPLY(tmp5, FIX_2_053119869); /* sqrt(2) * ( c1+c3-c5+c7) */
  139.         tmp6 = MULTIPLY(tmp6, FIX_3_072711026); /* sqrt(2) * ( c1+c3+c5-c7) */
  140.         tmp7 = MULTIPLY(tmp7, FIX_1_501321110); /* sqrt(2) * ( c1+c3-c5-c7) */
  141.         z1 = MULTIPLY(z1, - FIX_0_899976223); /* sqrt(2) * (c7-c3) */
  142.         z2 = MULTIPLY(z2, - FIX_2_562915447); /* sqrt(2) * (-c1-c3) */
  143.         z3 = MULTIPLY(z3, - FIX_1_961570560); /* sqrt(2) * (-c3-c5) */
  144.         z4 = MULTIPLY(z4, - FIX_0_390180644); /* sqrt(2) * (c5-c3) */

  145.         z3 += z5;
  146.         z4 += z5;

  147.         dataptr[DCTSIZE*7] = (int) DESCALE(tmp4 + z1 + z3,
  148.                 CONST_BITS+PASS1_BITS);
  149.         dataptr[DCTSIZE*5] = (int) DESCALE(tmp5 + z2 + z4,
  150.                 CONST_BITS+PASS1_BITS);
  151.         dataptr[DCTSIZE*3] = (int) DESCALE(tmp6 + z2 + z3,
  152.                 CONST_BITS+PASS1_BITS);
  153.         dataptr[DCTSIZE*1] = (int) DESCALE(tmp7 + z1 + z4,
  154.                 CONST_BITS+PASS1_BITS);

  155.         dataptr++;            /* advance pointer to next column */
  156.     }
  157. }


  158. int main(void)
  159. {
  160. #define NUM 8
  161.     short i = 0;
  162.     short j = 0;
  163.     short u = 0;
  164.     short v = 0;
  165.     int *data = (int*) malloc(sizeof(int)*NUM * NUM);
  166.     double sum = 0.0;

  167.     int input[NUM][NUM] =
  168.     {
  169.         {-70 ,-85 ,-102 ,-68 ,-91 ,-111 ,-118 ,-112},
  170.         {-77 ,-91 ,-78 ,-71 ,-89 ,-89 ,-99 ,-118},
  171.         {-77 ,-88 ,-91 ,-85 ,-101 ,-99 ,-92 ,-97},
  172.         {-86 ,-82 ,-82 ,-72 ,-100 ,-125 ,-123 ,-101},
  173.         {-96 ,-100 ,-87 ,-72 ,-91 ,-101 ,-97 ,-110},
  174.         {-93 ,-98 ,-92 ,-79 ,-72 ,-78 ,-75 ,-81},
  175.         {-119 ,-110 ,-99 ,-100 ,-90 ,-88 ,-94 ,-77},
  176.         {-122 ,-109 ,-93 ,-111 ,-101 ,-95 ,-111 ,-96}
  177.     };
  178.     // print the input data
  179.     printf("input:\n");
  180.     for(u=0; u<NUM; u++)
  181.     {
  182.         for(v = 0; v<NUM; v++)
  183.         {
  184.             printf("%d ", input[u][v]);
  185.         }
  186.         printf("\n");
  187.     }
  188.     printf("\n");
  189.     //2D --> 1D
  190.     for(i=0; i<NUM; i++)
  191.     {
  192.         for(j=0; j<NUM; j++)
  193.         {
  194.             data[i * NUM + j] = input[i][j];
  195.         }
  196.     }
  197.     jpeg_fdct_islow(data);
  198.     // print the result of FDCT
  199.     printf("result:\n");
  200.     for(u = 0; u < NUM; u++)
  201.     {
  202.         for(v = 0; v < NUM; v++)
  203.         {
  204.             printf("%d ", data[u*NUM + v]);
  205.         }
  206.         printf("\n");
  207.     }
  208.     free(data);
  209.     return 0;
  210. }
3.运行输出结果如下
  1. input:
  2. -70 -85 -102 -68 -91 -111 -118 -112
  3. -77 -91 -78 -71 -89 -89 -99 -118
  4. -77 -88 -91 -85 -101 -99 -92 -97
  5. -86 -82 -82 -72 -100 -125 -123 -101
  6. -96 -100 -87 -72 -91 -101 -97 -110
  7. -93 -98 -92 -79 -72 -78 -75 -81
  8. -119 -110 -99 -100 -90 -88 -94 -77
  9. -122 -109 -93 -111 -101 -95 -111 -96

  10. result:
  11. -6007 197 -215 -98 157 85 6 -56
  12. 135 500 5 64 135 159 -96 -89
  13. -141 -85 4 88 -32 -89 70 -12
  14. 177 -75 -95 103 97 45 -76 -13
  15. -233 240 -43 -119 87 -38 -24 -41
  16. -64 0 122 -99 122 -101 -38 -41
  17. 81 -43 100 69 19 -3 -40 -1
  18. -78 -83 36 39 -32 41 -10 -9









阅读(1783) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~