You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

335 lines
11KB

  1. /*
  2. * jfdctfst.c
  3. *
  4. * This file is part of the Independent JPEG Group's software.
  5. *
  6. * The authors make NO WARRANTY or representation, either express or implied,
  7. * with respect to this software, its quality, accuracy, merchantability, or
  8. * fitness for a particular purpose. This software is provided "AS IS", and
  9. * you, its user, assume the entire risk as to its quality and accuracy.
  10. *
  11. * This software is copyright (C) 1994-1996, Thomas G. Lane.
  12. * All Rights Reserved except as specified below.
  13. *
  14. * Permission is hereby granted to use, copy, modify, and distribute this
  15. * software (or portions thereof) for any purpose, without fee, subject to
  16. * these conditions:
  17. * (1) If any part of the source code for this software is distributed, then
  18. * this README file must be included, with this copyright and no-warranty
  19. * notice unaltered; and any additions, deletions, or changes to the original
  20. * files must be clearly indicated in accompanying documentation.
  21. * (2) If only executable code is distributed, then the accompanying
  22. * documentation must state that "this software is based in part on the work
  23. * of the Independent JPEG Group".
  24. * (3) Permission for use of this software is granted only if the user accepts
  25. * full responsibility for any undesirable consequences; the authors accept
  26. * NO LIABILITY for damages of any kind.
  27. *
  28. * These conditions apply to any software derived from or based on the IJG
  29. * code, not just to the unmodified library. If you use our work, you ought
  30. * to acknowledge us.
  31. *
  32. * Permission is NOT granted for the use of any IJG author's name or company
  33. * name in advertising or publicity relating to this software or products
  34. * derived from it. This software may be referred to only as "the Independent
  35. * JPEG Group's software".
  36. *
  37. * We specifically permit and encourage the use of this software as the basis
  38. * of commercial products, provided that all warranty or liability claims are
  39. * assumed by the product vendor.
  40. *
  41. * This file contains a fast, not so accurate integer implementation of the
  42. * forward DCT (Discrete Cosine Transform).
  43. *
  44. * A 2-D DCT can be done by 1-D DCT on each row followed by 1-D DCT
  45. * on each column. Direct algorithms are also available, but they are
  46. * much more complex and seem not to be any faster when reduced to code.
  47. *
  48. * This implementation is based on Arai, Agui, and Nakajima's algorithm for
  49. * scaled DCT. Their original paper (Trans. IEICE E-71(11):1095) is in
  50. * Japanese, but the algorithm is described in the Pennebaker & Mitchell
  51. * JPEG textbook (see REFERENCES section in file README). The following code
  52. * is based directly on figure 4-8 in P&M.
  53. * While an 8-point DCT cannot be done in less than 11 multiplies, it is
  54. * possible to arrange the computation so that many of the multiplies are
  55. * simple scalings of the final outputs. These multiplies can then be
  56. * folded into the multiplications or divisions by the JPEG quantization
  57. * table entries. The AA&N method leaves only 5 multiplies and 29 adds
  58. * to be done in the DCT itself.
  59. * The primary disadvantage of this method is that with fixed-point math,
  60. * accuracy is lost due to imprecise representation of the scaled
  61. * quantization values. The smaller the quantization table entry, the less
  62. * precise the scaled value, so this implementation does worse with high-
  63. * quality-setting files than with low-quality ones.
  64. */
  65. /**
  66. * @file
  67. * Independent JPEG Group's fast AAN dct.
  68. */
  69. #include <stdlib.h>
  70. #include <stdio.h>
  71. #include "libavutil/common.h"
  72. #include "dsputil.h"
  73. #define DCTSIZE 8
  74. #define GLOBAL(x) x
  75. #define RIGHT_SHIFT(x, n) ((x) >> (n))
  76. /*
  77. * This module is specialized to the case DCTSIZE = 8.
  78. */
  79. #if DCTSIZE != 8
  80. Sorry, this code only copes with 8x8 DCTs. /* deliberate syntax err */
  81. #endif
  82. /* Scaling decisions are generally the same as in the LL&M algorithm;
  83. * see jfdctint.c for more details. However, we choose to descale
  84. * (right shift) multiplication products as soon as they are formed,
  85. * rather than carrying additional fractional bits into subsequent additions.
  86. * This compromises accuracy slightly, but it lets us save a few shifts.
  87. * More importantly, 16-bit arithmetic is then adequate (for 8-bit samples)
  88. * everywhere except in the multiplications proper; this saves a good deal
  89. * of work on 16-bit-int machines.
  90. *
  91. * Again to save a few shifts, the intermediate results between pass 1 and
  92. * pass 2 are not upscaled, but are represented only to integral precision.
  93. *
  94. * A final compromise is to represent the multiplicative constants to only
  95. * 8 fractional bits, rather than 13. This saves some shifting work on some
  96. * machines, and may also reduce the cost of multiplication (since there
  97. * are fewer one-bits in the constants).
  98. */
  99. #define CONST_BITS 8
  100. /* Some C compilers fail to reduce "FIX(constant)" at compile time, thus
  101. * causing a lot of useless floating-point operations at run time.
  102. * To get around this we use the following pre-calculated constants.
  103. * If you change CONST_BITS you may want to add appropriate values.
  104. * (With a reasonable C compiler, you can just rely on the FIX() macro...)
  105. */
  106. #if CONST_BITS == 8
  107. #define FIX_0_382683433 ((int32_t) 98) /* FIX(0.382683433) */
  108. #define FIX_0_541196100 ((int32_t) 139) /* FIX(0.541196100) */
  109. #define FIX_0_707106781 ((int32_t) 181) /* FIX(0.707106781) */
  110. #define FIX_1_306562965 ((int32_t) 334) /* FIX(1.306562965) */
  111. #else
  112. #define FIX_0_382683433 FIX(0.382683433)
  113. #define FIX_0_541196100 FIX(0.541196100)
  114. #define FIX_0_707106781 FIX(0.707106781)
  115. #define FIX_1_306562965 FIX(1.306562965)
  116. #endif
  117. /* We can gain a little more speed, with a further compromise in accuracy,
  118. * by omitting the addition in a descaling shift. This yields an incorrectly
  119. * rounded result half the time...
  120. */
  121. #ifndef USE_ACCURATE_ROUNDING
  122. #undef DESCALE
  123. #define DESCALE(x,n) RIGHT_SHIFT(x, n)
  124. #endif
  125. /* Multiply a DCTELEM variable by an int32_t constant, and immediately
  126. * descale to yield a DCTELEM result.
  127. */
  128. #define MULTIPLY(var,const) ((DCTELEM) DESCALE((var) * (const), CONST_BITS))
  129. static av_always_inline void row_fdct(DCTELEM * data){
  130. int_fast16_t tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7;
  131. int_fast16_t tmp10, tmp11, tmp12, tmp13;
  132. int_fast16_t z1, z2, z3, z4, z5, z11, z13;
  133. DCTELEM *dataptr;
  134. int ctr;
  135. /* Pass 1: process rows. */
  136. dataptr = data;
  137. for (ctr = DCTSIZE-1; ctr >= 0; ctr--) {
  138. tmp0 = dataptr[0] + dataptr[7];
  139. tmp7 = dataptr[0] - dataptr[7];
  140. tmp1 = dataptr[1] + dataptr[6];
  141. tmp6 = dataptr[1] - dataptr[6];
  142. tmp2 = dataptr[2] + dataptr[5];
  143. tmp5 = dataptr[2] - dataptr[5];
  144. tmp3 = dataptr[3] + dataptr[4];
  145. tmp4 = dataptr[3] - dataptr[4];
  146. /* Even part */
  147. tmp10 = tmp0 + tmp3; /* phase 2 */
  148. tmp13 = tmp0 - tmp3;
  149. tmp11 = tmp1 + tmp2;
  150. tmp12 = tmp1 - tmp2;
  151. dataptr[0] = tmp10 + tmp11; /* phase 3 */
  152. dataptr[4] = tmp10 - tmp11;
  153. z1 = MULTIPLY(tmp12 + tmp13, FIX_0_707106781); /* c4 */
  154. dataptr[2] = tmp13 + z1; /* phase 5 */
  155. dataptr[6] = tmp13 - z1;
  156. /* Odd part */
  157. tmp10 = tmp4 + tmp5; /* phase 2 */
  158. tmp11 = tmp5 + tmp6;
  159. tmp12 = tmp6 + tmp7;
  160. /* The rotator is modified from fig 4-8 to avoid extra negations. */
  161. z5 = MULTIPLY(tmp10 - tmp12, FIX_0_382683433); /* c6 */
  162. z2 = MULTIPLY(tmp10, FIX_0_541196100) + z5; /* c2-c6 */
  163. z4 = MULTIPLY(tmp12, FIX_1_306562965) + z5; /* c2+c6 */
  164. z3 = MULTIPLY(tmp11, FIX_0_707106781); /* c4 */
  165. z11 = tmp7 + z3; /* phase 5 */
  166. z13 = tmp7 - z3;
  167. dataptr[5] = z13 + z2; /* phase 6 */
  168. dataptr[3] = z13 - z2;
  169. dataptr[1] = z11 + z4;
  170. dataptr[7] = z11 - z4;
  171. dataptr += DCTSIZE; /* advance pointer to next row */
  172. }
  173. }
  174. /*
  175. * Perform the forward DCT on one block of samples.
  176. */
  177. GLOBAL(void)
  178. fdct_ifast (DCTELEM * data)
  179. {
  180. int_fast16_t tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7;
  181. int_fast16_t tmp10, tmp11, tmp12, tmp13;
  182. int_fast16_t z1, z2, z3, z4, z5, z11, z13;
  183. DCTELEM *dataptr;
  184. int ctr;
  185. row_fdct(data);
  186. /* Pass 2: process columns. */
  187. dataptr = data;
  188. for (ctr = DCTSIZE-1; ctr >= 0; ctr--) {
  189. tmp0 = dataptr[DCTSIZE*0] + dataptr[DCTSIZE*7];
  190. tmp7 = dataptr[DCTSIZE*0] - dataptr[DCTSIZE*7];
  191. tmp1 = dataptr[DCTSIZE*1] + dataptr[DCTSIZE*6];
  192. tmp6 = dataptr[DCTSIZE*1] - dataptr[DCTSIZE*6];
  193. tmp2 = dataptr[DCTSIZE*2] + dataptr[DCTSIZE*5];
  194. tmp5 = dataptr[DCTSIZE*2] - dataptr[DCTSIZE*5];
  195. tmp3 = dataptr[DCTSIZE*3] + dataptr[DCTSIZE*4];
  196. tmp4 = dataptr[DCTSIZE*3] - dataptr[DCTSIZE*4];
  197. /* Even part */
  198. tmp10 = tmp0 + tmp3; /* phase 2 */
  199. tmp13 = tmp0 - tmp3;
  200. tmp11 = tmp1 + tmp2;
  201. tmp12 = tmp1 - tmp2;
  202. dataptr[DCTSIZE*0] = tmp10 + tmp11; /* phase 3 */
  203. dataptr[DCTSIZE*4] = tmp10 - tmp11;
  204. z1 = MULTIPLY(tmp12 + tmp13, FIX_0_707106781); /* c4 */
  205. dataptr[DCTSIZE*2] = tmp13 + z1; /* phase 5 */
  206. dataptr[DCTSIZE*6] = tmp13 - z1;
  207. /* Odd part */
  208. tmp10 = tmp4 + tmp5; /* phase 2 */
  209. tmp11 = tmp5 + tmp6;
  210. tmp12 = tmp6 + tmp7;
  211. /* The rotator is modified from fig 4-8 to avoid extra negations. */
  212. z5 = MULTIPLY(tmp10 - tmp12, FIX_0_382683433); /* c6 */
  213. z2 = MULTIPLY(tmp10, FIX_0_541196100) + z5; /* c2-c6 */
  214. z4 = MULTIPLY(tmp12, FIX_1_306562965) + z5; /* c2+c6 */
  215. z3 = MULTIPLY(tmp11, FIX_0_707106781); /* c4 */
  216. z11 = tmp7 + z3; /* phase 5 */
  217. z13 = tmp7 - z3;
  218. dataptr[DCTSIZE*5] = z13 + z2; /* phase 6 */
  219. dataptr[DCTSIZE*3] = z13 - z2;
  220. dataptr[DCTSIZE*1] = z11 + z4;
  221. dataptr[DCTSIZE*7] = z11 - z4;
  222. dataptr++; /* advance pointer to next column */
  223. }
  224. }
  225. /*
  226. * Perform the forward 2-4-8 DCT on one block of samples.
  227. */
  228. GLOBAL(void)
  229. fdct_ifast248 (DCTELEM * data)
  230. {
  231. int_fast16_t tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7;
  232. int_fast16_t tmp10, tmp11, tmp12, tmp13;
  233. int_fast16_t z1;
  234. DCTELEM *dataptr;
  235. int ctr;
  236. row_fdct(data);
  237. /* Pass 2: process columns. */
  238. dataptr = data;
  239. for (ctr = DCTSIZE-1; ctr >= 0; ctr--) {
  240. tmp0 = dataptr[DCTSIZE*0] + dataptr[DCTSIZE*1];
  241. tmp1 = dataptr[DCTSIZE*2] + dataptr[DCTSIZE*3];
  242. tmp2 = dataptr[DCTSIZE*4] + dataptr[DCTSIZE*5];
  243. tmp3 = dataptr[DCTSIZE*6] + dataptr[DCTSIZE*7];
  244. tmp4 = dataptr[DCTSIZE*0] - dataptr[DCTSIZE*1];
  245. tmp5 = dataptr[DCTSIZE*2] - dataptr[DCTSIZE*3];
  246. tmp6 = dataptr[DCTSIZE*4] - dataptr[DCTSIZE*5];
  247. tmp7 = dataptr[DCTSIZE*6] - dataptr[DCTSIZE*7];
  248. /* Even part */
  249. tmp10 = tmp0 + tmp3;
  250. tmp11 = tmp1 + tmp2;
  251. tmp12 = tmp1 - tmp2;
  252. tmp13 = tmp0 - tmp3;
  253. dataptr[DCTSIZE*0] = tmp10 + tmp11;
  254. dataptr[DCTSIZE*4] = tmp10 - tmp11;
  255. z1 = MULTIPLY(tmp12 + tmp13, FIX_0_707106781);
  256. dataptr[DCTSIZE*2] = tmp13 + z1;
  257. dataptr[DCTSIZE*6] = tmp13 - z1;
  258. tmp10 = tmp4 + tmp7;
  259. tmp11 = tmp5 + tmp6;
  260. tmp12 = tmp5 - tmp6;
  261. tmp13 = tmp4 - tmp7;
  262. dataptr[DCTSIZE*1] = tmp10 + tmp11;
  263. dataptr[DCTSIZE*5] = tmp10 - tmp11;
  264. z1 = MULTIPLY(tmp12 + tmp13, FIX_0_707106781);
  265. dataptr[DCTSIZE*3] = tmp13 + z1;
  266. dataptr[DCTSIZE*7] = tmp13 - z1;
  267. dataptr++; /* advance pointer to next column */
  268. }
  269. }
  270. #undef GLOBAL
  271. #undef CONST_BITS
  272. #undef DESCALE
  273. #undef FIX_0_541196100
  274. #undef FIX_1_306562965