• Main Page
  • Related Pages
  • Modules
  • Data Structures
  • Files
  • File List
  • Globals

libavcodec/jfdctfst.c

Go to the documentation of this file.
00001 /*
00002  * jfdctfst.c
00003  *
00004  * This file is part of the Independent JPEG Group's software.
00005  *
00006  * The authors make NO WARRANTY or representation, either express or implied,
00007  * with respect to this software, its quality, accuracy, merchantability, or
00008  * fitness for a particular purpose.  This software is provided "AS IS", and
00009  * you, its user, assume the entire risk as to its quality and accuracy.
00010  *
00011  * This software is copyright (C) 1994-1996, Thomas G. Lane.
00012  * All Rights Reserved except as specified below.
00013  *
00014  * Permission is hereby granted to use, copy, modify, and distribute this
00015  * software (or portions thereof) for any purpose, without fee, subject to
00016  * these conditions:
00017  * (1) If any part of the source code for this software is distributed, then
00018  * this README file must be included, with this copyright and no-warranty
00019  * notice unaltered; and any additions, deletions, or changes to the original
00020  * files must be clearly indicated in accompanying documentation.
00021  * (2) If only executable code is distributed, then the accompanying
00022  * documentation must state that "this software is based in part on the work
00023  * of the Independent JPEG Group".
00024  * (3) Permission for use of this software is granted only if the user accepts
00025  * full responsibility for any undesirable consequences; the authors accept
00026  * NO LIABILITY for damages of any kind.
00027  *
00028  * These conditions apply to any software derived from or based on the IJG
00029  * code, not just to the unmodified library.  If you use our work, you ought
00030  * to acknowledge us.
00031  *
00032  * Permission is NOT granted for the use of any IJG author's name or company
00033  * name in advertising or publicity relating to this software or products
00034  * derived from it.  This software may be referred to only as "the Independent
00035  * JPEG Group's software".
00036  *
00037  * We specifically permit and encourage the use of this software as the basis
00038  * of commercial products, provided that all warranty or liability claims are
00039  * assumed by the product vendor.
00040  *
00041  * This file contains a fast, not so accurate integer implementation of the
00042  * forward DCT (Discrete Cosine Transform).
00043  *
00044  * A 2-D DCT can be done by 1-D DCT on each row followed by 1-D DCT
00045  * on each column.  Direct algorithms are also available, but they are
00046  * much more complex and seem not to be any faster when reduced to code.
00047  *
00048  * This implementation is based on Arai, Agui, and Nakajima's algorithm for
00049  * scaled DCT.  Their original paper (Trans. IEICE E-71(11):1095) is in
00050  * Japanese, but the algorithm is described in the Pennebaker & Mitchell
00051  * JPEG textbook (see REFERENCES section in file README).  The following code
00052  * is based directly on figure 4-8 in P&M.
00053  * While an 8-point DCT cannot be done in less than 11 multiplies, it is
00054  * possible to arrange the computation so that many of the multiplies are
00055  * simple scalings of the final outputs.  These multiplies can then be
00056  * folded into the multiplications or divisions by the JPEG quantization
00057  * table entries.  The AA&N method leaves only 5 multiplies and 29 adds
00058  * to be done in the DCT itself.
00059  * The primary disadvantage of this method is that with fixed-point math,
00060  * accuracy is lost due to imprecise representation of the scaled
00061  * quantization values.  The smaller the quantization table entry, the less
00062  * precise the scaled value, so this implementation does worse with high-
00063  * quality-setting files than with low-quality ones.
00064  */
00065 
00071 #include <stdlib.h>
00072 #include <stdio.h>
00073 #include "libavutil/common.h"
00074 #include "dsputil.h"
00075 
00076 #define DCTSIZE 8
00077 #define GLOBAL(x) x
00078 #define RIGHT_SHIFT(x, n) ((x) >> (n))
00079 #define SHIFT_TEMPS
00080 
00081 /*
00082  * This module is specialized to the case DCTSIZE = 8.
00083  */
00084 
00085 #if DCTSIZE != 8
00086   Sorry, this code only copes with 8x8 DCTs. /* deliberate syntax err */
00087 #endif
00088 
00089 
00090 /* Scaling decisions are generally the same as in the LL&M algorithm;
00091  * see jfdctint.c for more details.  However, we choose to descale
00092  * (right shift) multiplication products as soon as they are formed,
00093  * rather than carrying additional fractional bits into subsequent additions.
00094  * This compromises accuracy slightly, but it lets us save a few shifts.
00095  * More importantly, 16-bit arithmetic is then adequate (for 8-bit samples)
00096  * everywhere except in the multiplications proper; this saves a good deal
00097  * of work on 16-bit-int machines.
00098  *
00099  * Again to save a few shifts, the intermediate results between pass 1 and
00100  * pass 2 are not upscaled, but are represented only to integral precision.
00101  *
00102  * A final compromise is to represent the multiplicative constants to only
00103  * 8 fractional bits, rather than 13.  This saves some shifting work on some
00104  * machines, and may also reduce the cost of multiplication (since there
00105  * are fewer one-bits in the constants).
00106  */
00107 
00108 #define CONST_BITS  8
00109 
00110 
00111 /* Some C compilers fail to reduce "FIX(constant)" at compile time, thus
00112  * causing a lot of useless floating-point operations at run time.
00113  * To get around this we use the following pre-calculated constants.
00114  * If you change CONST_BITS you may want to add appropriate values.
00115  * (With a reasonable C compiler, you can just rely on the FIX() macro...)
00116  */
00117 
00118 #if CONST_BITS == 8
00119 #define FIX_0_382683433  ((int32_t)   98)       /* FIX(0.382683433) */
00120 #define FIX_0_541196100  ((int32_t)  139)       /* FIX(0.541196100) */
00121 #define FIX_0_707106781  ((int32_t)  181)       /* FIX(0.707106781) */
00122 #define FIX_1_306562965  ((int32_t)  334)       /* FIX(1.306562965) */
00123 #else
00124 #define FIX_0_382683433  FIX(0.382683433)
00125 #define FIX_0_541196100  FIX(0.541196100)
00126 #define FIX_0_707106781  FIX(0.707106781)
00127 #define FIX_1_306562965  FIX(1.306562965)
00128 #endif
00129 
00130 
00131 /* We can gain a little more speed, with a further compromise in accuracy,
00132  * by omitting the addition in a descaling shift.  This yields an incorrectly
00133  * rounded result half the time...
00134  */
00135 
00136 #ifndef USE_ACCURATE_ROUNDING
00137 #undef DESCALE
00138 #define DESCALE(x,n)  RIGHT_SHIFT(x, n)
00139 #endif
00140 
00141 
00142 /* Multiply a DCTELEM variable by an int32_t constant, and immediately
00143  * descale to yield a DCTELEM result.
00144  */
00145 
00146 #define MULTIPLY(var,const)  ((DCTELEM) DESCALE((var) * (const), CONST_BITS))
00147 
00148 static av_always_inline void row_fdct(DCTELEM * data){
00149   int_fast16_t tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7;
00150   int_fast16_t tmp10, tmp11, tmp12, tmp13;
00151   int_fast16_t z1, z2, z3, z4, z5, z11, z13;
00152   DCTELEM *dataptr;
00153   int ctr;
00154   SHIFT_TEMPS
00155 
00156   /* Pass 1: process rows. */
00157 
00158   dataptr = data;
00159   for (ctr = DCTSIZE-1; ctr >= 0; ctr--) {
00160     tmp0 = dataptr[0] + dataptr[7];
00161     tmp7 = dataptr[0] - dataptr[7];
00162     tmp1 = dataptr[1] + dataptr[6];
00163     tmp6 = dataptr[1] - dataptr[6];
00164     tmp2 = dataptr[2] + dataptr[5];
00165     tmp5 = dataptr[2] - dataptr[5];
00166     tmp3 = dataptr[3] + dataptr[4];
00167     tmp4 = dataptr[3] - dataptr[4];
00168 
00169     /* Even part */
00170 
00171     tmp10 = tmp0 + tmp3;        /* phase 2 */
00172     tmp13 = tmp0 - tmp3;
00173     tmp11 = tmp1 + tmp2;
00174     tmp12 = tmp1 - tmp2;
00175 
00176     dataptr[0] = tmp10 + tmp11; /* phase 3 */
00177     dataptr[4] = tmp10 - tmp11;
00178 
00179     z1 = MULTIPLY(tmp12 + tmp13, FIX_0_707106781); /* c4 */
00180     dataptr[2] = tmp13 + z1;    /* phase 5 */
00181     dataptr[6] = tmp13 - z1;
00182 
00183     /* Odd part */
00184 
00185     tmp10 = tmp4 + tmp5;        /* phase 2 */
00186     tmp11 = tmp5 + tmp6;
00187     tmp12 = tmp6 + tmp7;
00188 
00189     /* The rotator is modified from fig 4-8 to avoid extra negations. */
00190     z5 = MULTIPLY(tmp10 - tmp12, FIX_0_382683433); /* c6 */
00191     z2 = MULTIPLY(tmp10, FIX_0_541196100) + z5;    /* c2-c6 */
00192     z4 = MULTIPLY(tmp12, FIX_1_306562965) + z5;    /* c2+c6 */
00193     z3 = MULTIPLY(tmp11, FIX_0_707106781);         /* c4 */
00194 
00195     z11 = tmp7 + z3;            /* phase 5 */
00196     z13 = tmp7 - z3;
00197 
00198     dataptr[5] = z13 + z2;      /* phase 6 */
00199     dataptr[3] = z13 - z2;
00200     dataptr[1] = z11 + z4;
00201     dataptr[7] = z11 - z4;
00202 
00203     dataptr += DCTSIZE;         /* advance pointer to next row */
00204   }
00205 }
00206 
00207 /*
00208  * Perform the forward DCT on one block of samples.
00209  */
00210 
00211 GLOBAL(void)
00212 fdct_ifast (DCTELEM * data)
00213 {
00214   int_fast16_t tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7;
00215   int_fast16_t tmp10, tmp11, tmp12, tmp13;
00216   int_fast16_t z1, z2, z3, z4, z5, z11, z13;
00217   DCTELEM *dataptr;
00218   int ctr;
00219   SHIFT_TEMPS
00220 
00221   row_fdct(data);
00222 
00223   /* Pass 2: process columns. */
00224 
00225   dataptr = data;
00226   for (ctr = DCTSIZE-1; ctr >= 0; ctr--) {
00227     tmp0 = dataptr[DCTSIZE*0] + dataptr[DCTSIZE*7];
00228     tmp7 = dataptr[DCTSIZE*0] - dataptr[DCTSIZE*7];
00229     tmp1 = dataptr[DCTSIZE*1] + dataptr[DCTSIZE*6];
00230     tmp6 = dataptr[DCTSIZE*1] - dataptr[DCTSIZE*6];
00231     tmp2 = dataptr[DCTSIZE*2] + dataptr[DCTSIZE*5];
00232     tmp5 = dataptr[DCTSIZE*2] - dataptr[DCTSIZE*5];
00233     tmp3 = dataptr[DCTSIZE*3] + dataptr[DCTSIZE*4];
00234     tmp4 = dataptr[DCTSIZE*3] - dataptr[DCTSIZE*4];
00235 
00236     /* Even part */
00237 
00238     tmp10 = tmp0 + tmp3;        /* phase 2 */
00239     tmp13 = tmp0 - tmp3;
00240     tmp11 = tmp1 + tmp2;
00241     tmp12 = tmp1 - tmp2;
00242 
00243     dataptr[DCTSIZE*0] = tmp10 + tmp11; /* phase 3 */
00244     dataptr[DCTSIZE*4] = tmp10 - tmp11;
00245 
00246     z1 = MULTIPLY(tmp12 + tmp13, FIX_0_707106781); /* c4 */
00247     dataptr[DCTSIZE*2] = tmp13 + z1; /* phase 5 */
00248     dataptr[DCTSIZE*6] = tmp13 - z1;
00249 
00250     /* Odd part */
00251 
00252     tmp10 = tmp4 + tmp5;        /* phase 2 */
00253     tmp11 = tmp5 + tmp6;
00254     tmp12 = tmp6 + tmp7;
00255 
00256     /* The rotator is modified from fig 4-8 to avoid extra negations. */
00257     z5 = MULTIPLY(tmp10 - tmp12, FIX_0_382683433); /* c6 */
00258     z2 = MULTIPLY(tmp10, FIX_0_541196100) + z5; /* c2-c6 */
00259     z4 = MULTIPLY(tmp12, FIX_1_306562965) + z5; /* c2+c6 */
00260     z3 = MULTIPLY(tmp11, FIX_0_707106781); /* c4 */
00261 
00262     z11 = tmp7 + z3;            /* phase 5 */
00263     z13 = tmp7 - z3;
00264 
00265     dataptr[DCTSIZE*5] = z13 + z2; /* phase 6 */
00266     dataptr[DCTSIZE*3] = z13 - z2;
00267     dataptr[DCTSIZE*1] = z11 + z4;
00268     dataptr[DCTSIZE*7] = z11 - z4;
00269 
00270     dataptr++;                  /* advance pointer to next column */
00271   }
00272 }
00273 
00274 /*
00275  * Perform the forward 2-4-8 DCT on one block of samples.
00276  */
00277 
00278 GLOBAL(void)
00279 fdct_ifast248 (DCTELEM * data)
00280 {
00281   int_fast16_t tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7;
00282   int_fast16_t tmp10, tmp11, tmp12, tmp13;
00283   int_fast16_t z1;
00284   DCTELEM *dataptr;
00285   int ctr;
00286   SHIFT_TEMPS
00287 
00288   row_fdct(data);
00289 
00290   /* Pass 2: process columns. */
00291 
00292   dataptr = data;
00293   for (ctr = DCTSIZE-1; ctr >= 0; ctr--) {
00294     tmp0 = dataptr[DCTSIZE*0] + dataptr[DCTSIZE*1];
00295     tmp1 = dataptr[DCTSIZE*2] + dataptr[DCTSIZE*3];
00296     tmp2 = dataptr[DCTSIZE*4] + dataptr[DCTSIZE*5];
00297     tmp3 = dataptr[DCTSIZE*6] + dataptr[DCTSIZE*7];
00298     tmp4 = dataptr[DCTSIZE*0] - dataptr[DCTSIZE*1];
00299     tmp5 = dataptr[DCTSIZE*2] - dataptr[DCTSIZE*3];
00300     tmp6 = dataptr[DCTSIZE*4] - dataptr[DCTSIZE*5];
00301     tmp7 = dataptr[DCTSIZE*6] - dataptr[DCTSIZE*7];
00302 
00303     /* Even part */
00304 
00305     tmp10 = tmp0 + tmp3;
00306     tmp11 = tmp1 + tmp2;
00307     tmp12 = tmp1 - tmp2;
00308     tmp13 = tmp0 - tmp3;
00309 
00310     dataptr[DCTSIZE*0] = tmp10 + tmp11;
00311     dataptr[DCTSIZE*4] = tmp10 - tmp11;
00312 
00313     z1 = MULTIPLY(tmp12 + tmp13, FIX_0_707106781);
00314     dataptr[DCTSIZE*2] = tmp13 + z1;
00315     dataptr[DCTSIZE*6] = tmp13 - z1;
00316 
00317     tmp10 = tmp4 + tmp7;
00318     tmp11 = tmp5 + tmp6;
00319     tmp12 = tmp5 - tmp6;
00320     tmp13 = tmp4 - tmp7;
00321 
00322     dataptr[DCTSIZE*1] = tmp10 + tmp11;
00323     dataptr[DCTSIZE*5] = tmp10 - tmp11;
00324 
00325     z1 = MULTIPLY(tmp12 + tmp13, FIX_0_707106781);
00326     dataptr[DCTSIZE*3] = tmp13 + z1;
00327     dataptr[DCTSIZE*7] = tmp13 - z1;
00328 
00329     dataptr++;                        /* advance pointer to next column */
00330   }
00331 }
00332 
00333 
00334 #undef GLOBAL
00335 #undef CONST_BITS
00336 #undef DESCALE
00337 #undef FIX_0_541196100
00338 #undef FIX_1_306562965

Generated on Tue Nov 4 2014 12:59:22 for ffmpeg by  doxygen 1.7.1