Move/add COSTABLE/SINTABLE macros to dsputil to add extern definitions
[FFMpeg-mirror/lagarith.git] / libavcodec / dctref.c
blobfaad057a9a68f50f7e67ed8dcf12a44b5715c71a
1 /*
2 * reference discrete cosine transform (double precision)
3 * Copyright (C) 2009 Dylan Yudaken
5 * This file is part of FFmpeg.
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 /**
23 * @file libavcodec/dctref.c
24 * reference discrete cosine transform (double precision)
26 * @author Dylan Yudaken (dyudaken at gmail)
28 * @note This file could be optimized a lot, but is for
29 * reference and so readability is better.
32 #include "libavutil/mathematics.h"
33 static double coefficients[8 * 8];
35 /**
36 * Initialize the double precision discrete cosine transform
37 * functions fdct & idct.
39 av_cold void ff_ref_dct_init(void)
41 unsigned int i, j;
43 for (j = 0; j < 8; ++j) {
44 coefficients[j] = sqrt(0.125);
45 for (i = 8; i < 64; i += 8) {
46 coefficients[i + j] = 0.5 * cos(i * (j + 0.5) * M_PI / 64.0);
51 /**
52 * Transform 8x8 block of data with a double precision forward DCT <br>
53 * This is a reference implementation.
55 * @param block pointer to 8x8 block of data to transform
57 void ff_ref_fdct(short *block)
59 /* implement the equation: block = coefficients * block * coefficients' */
61 unsigned int i, j, k;
62 double out[8 * 8];
64 /* out = coefficients * block */
65 for (i = 0; i < 64; i += 8) {
66 for (j = 0; j < 8; ++j) {
67 double tmp = 0;
68 for (k = 0; k < 8; ++k) {
69 tmp += coefficients[i + k] * block[k * 8 + j];
71 out[i + j] = tmp * 8;
75 /* block = out * (coefficients') */
76 for (j = 0; j < 8; ++j) {
77 for (i = 0; i < 64; i += 8) {
78 double tmp = 0;
79 for (k = 0; k < 8; ++k) {
80 tmp += out[i + k] * coefficients[j * 8 + k];
82 block[i + j] = floor(tmp + 0.499999999999);
87 /**
88 * Transform 8x8 block of data with a double precision inverse DCT <br>
89 * This is a reference implementation.
91 * @param block pointer to 8x8 block of data to transform
93 void ff_ref_idct(short *block)
95 /* implement the equation: block = (coefficients') * block * coefficients */
97 unsigned int i, j, k;
98 double out[8 * 8];
100 /* out = block * coefficients */
101 for (i = 0; i < 64; i += 8) {
102 for (j = 0; j < 8; ++j) {
103 double tmp = 0;
104 for (k = 0; k < 8; ++k) {
105 tmp += block[i + k] * coefficients[k * 8 + j];
107 out[i + j] = tmp;
111 /* block = (coefficients') * out */
112 for (i = 0; i < 8; ++i) {
113 for (j = 0; j < 8; ++j) {
114 double tmp = 0;
115 for (k = 0; k < 64; k += 8) {
116 tmp += coefficients[k + i] * out[k + j];
118 block[i * 8 + j] = floor(tmp + 0.5);