annotate ra288.c @ 7168:c2691f22708b libavcodec

Remove useless initialization
author vitor
date Mon, 30 Jun 2008 16:54:49 +0000
parents 9b93a3cf6440
children f12513065d85
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1304
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
1 /*
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
2 * RealAudio 2.0 (28.8K)
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
3 * Copyright (c) 2003 the ffmpeg project
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
4 *
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3036
diff changeset
5 * This file is part of FFmpeg.
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3036
diff changeset
6 *
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3036
diff changeset
7 * FFmpeg is free software; you can redistribute it and/or
1304
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
8 * modify it under the terms of the GNU Lesser General Public
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
9 * License as published by the Free Software Foundation; either
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3036
diff changeset
10 * version 2.1 of the License, or (at your option) any later version.
1304
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
11 *
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3036
diff changeset
12 * FFmpeg is distributed in the hope that it will be useful,
1304
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
15 * Lesser General Public License for more details.
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
16 *
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
17 * You should have received a copy of the GNU Lesser General Public
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3036
diff changeset
18 * License along with FFmpeg; if not, write to the Free Software
3036
0b546eab515d Update licensing information: The FSF changed postal address.
diego
parents: 2979
diff changeset
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
1304
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
20 */
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
21
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
22 #include "avcodec.h"
1335
b4a72edb3a71 moved the tables into header files (and applied the 'static' patch). Nick: why do you like mergeing tables and code into one file, so making it unusable big?
al3x
parents: 1316
diff changeset
23 #include "ra288.h"
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2956
diff changeset
24
1304
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
25 typedef struct {
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
26 float history[8];
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
27 float output[40];
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
28 float pr1[36];
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
29 float pr2[10];
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
30 int phase, phasep;
1304
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
31
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
32 float st1a[111], st1b[37], st1[37];
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
33 float st2a[38], st2b[11], st2[11];
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
34 float sb[41];
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
35 float lhist[10];
1304
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
36 } Real288_internal;
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
37
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
38 static void prodsum(float *tgt, float *src, int len, int n);
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
39 static void co(int n, int i, int j, float *in, float *out, float *st1, float *st2, const float *table);
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
40 static int pred(float *in, float *tgt, int n);
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
41 static void colmult(float *tgt, float *m1, const float *m2, int n);
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
42
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
43
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
44 /* initial decode */
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
45 static void unpack(unsigned short *tgt, const unsigned char *src,
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
46 unsigned int len)
1304
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
47 {
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
48 int x, y, z;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
49 int n, temp;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
50 int buffer[len];
1304
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
51
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
52 for (x=0; x < len; tgt[x++] = 0)
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
53 buffer[x] = 9 + (x & 1);
1304
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
54
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
55 for (x=y=z=0; x < len/*was 38*/; x++) {
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
56 n = buffer[y] - z;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
57 temp = src[x];
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
58
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
59 if (n < 8)
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
60 temp &= 255 >> (8 - n);
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
61
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
62 tgt[y] += temp << z;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
63
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
64 if (n <= 8) {
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
65 tgt[++y] += src[x] >> n;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
66 z = 8 - n;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
67 } else
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
68 z += 8;
1304
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
69 }
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
70 }
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
71
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
72 static void update(Real288_internal *glob)
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
73 {
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
74 int x,y;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
75 float buffer1[40], temp1[37];
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
76 float buffer2[8], temp2[11];
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
77
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
78 for (x=0, y=glob->phasep+5; x < 40; buffer1[x++] = glob->output[(y++)%40]);
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
79
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
80 co(36, 40, 35, buffer1, temp1, glob->st1a, glob->st1b, table1);
1304
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
81
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
82 if (pred(temp1, glob->st1, 36))
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
83 colmult(glob->pr1, glob->st1, table1a, 36);
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
84
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
85 for (x=0, y=glob->phase + 1; x < 8; buffer2[x++] = glob->history[(y++) % 8]);
1304
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
86
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
87 co(10, 8, 20, buffer2, temp2, glob->st2a, glob->st2b, table2);
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
88
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
89 if (pred(temp2, glob->st2, 10))
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
90 colmult(glob->pr2, glob->st2, table2a, 10);
1304
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
91 }
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
92
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
93 /* Decode and produce output */
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
94 static void decode(Real288_internal *glob, unsigned int input)
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
95 {
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
96 unsigned int x, y;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
97 float f;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
98 double sum, sumsum;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
99 float *p1, *p2;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
100 float buffer[5];
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
101 const float *table;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
102
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
103 for (x=36; x--; glob->sb[x+5] = glob->sb[x]);
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
104
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
105 for (x=5; x--;) {
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
106 p1 = glob->sb+x;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
107 p2 = glob->pr1;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
108 for (sum=0, y=36; y--; sum -= (*(++p1))*(*(p2++)));
1304
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
109
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
110 glob->sb[x] = sum;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
111 }
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
112
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
113 f = amptable[input & 7];
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
114 table = codetable + (input >> 3) * 5;
1304
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
115
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
116 /* convert log and do rms */
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
117 for (sum=32, x=10; x--; sum -= glob->pr2[x] * glob->lhist[x]);
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
118
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
119 if (sum < 0)
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
120 sum = 0;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
121 else if (sum > 60)
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
122 sum = 60;
1304
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
123
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
124 sumsum = exp(sum * 0.1151292546497) * f; /* pow(10.0,sum/20)*f */
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
125
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
126 for (sum=0, x=5; x--;) {
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
127 buffer[x] = table[x] * sumsum;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
128 sum += buffer[x] * buffer[x];
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
129 }
1304
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
130
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
131 if ((sum /= 5) < 1)
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
132 sum = 1;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
133
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
134 /* shift and store */
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
135 for (x=10; --x; glob->lhist[x] = glob->lhist[x-1]);
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
136
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
137 *glob->lhist = glob->history[glob->phase] = 10 * log10(sum) - 32;
1304
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
138
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
139 for (x=1; x < 5; x++)
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
140 for (y=x; y--; buffer[x] -= glob->pr1[x-y-1] * buffer[y]);
1304
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
141
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
142 /* output */
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
143 for (x=0; x < 5; x++) {
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
144 f = glob->sb[4-x] + buffer[x];
1304
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
145
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
146 if (f > 4095)
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
147 f = 4095;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
148 else if (f < -4095)
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
149 f = -4095;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
150
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
151 glob->output[glob->phasep+x] = glob->sb[4-x] = f;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
152 }
1304
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
153 }
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
154
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
155 /* column multiply */
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
156 static void colmult(float *tgt, float *m1, const float *m2, int n)
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
157 {
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
158 while (n--)
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
159 *(tgt++) = (*(m1++)) * (*(m2++));
1304
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
160 }
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
161
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
162 static int pred(float *in, float *tgt, int n)
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
163 {
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
164 int x, y;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
165 float *p1, *p2;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
166 double f0, f1, f2;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
167 float temp;
1304
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
168
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
169 if (in[n] == 0)
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
170 return 0;
1304
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
171
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
172 if ((f0 = *in) <= 0)
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
173 return 0;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
174
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
175 for (x=1 ; ; x++) {
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
176 if (n < x)
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
177 return 1;
1304
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
178
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
179 p1 = in + x;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
180 p2 = tgt;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
181 f1 = *(p1--);
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
182 for (y=x; --y; f1 += (*(p1--))*(*(p2++)));
1304
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
183
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
184 p1 = tgt + x - 1;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
185 p2 = tgt;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
186 *(p1--) = f2 = -f1/f0;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
187 for (y=x >> 1; y--;) {
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
188 temp = *p2 + *p1 * f2;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
189 *(p1--) += *p2 * f2;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
190 *(p2++) = temp;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
191 }
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
192 if ((f0 += f1*f2) < 0)
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
193 return 0;
1304
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
194 }
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
195 }
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
196
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
197 static void co(int n, int i, int j, float *in, float *out, float *st1,
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
198 float *st2, const float *table)
1304
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
199 {
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
200 int a, b, c;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
201 unsigned int x;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
202 float *fp;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
203 float buffer1[37];
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
204 float buffer2[37];
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
205 float work[111];
1304
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
206
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
207 /* rotate and multiply */
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
208 c = (b = (a = n + i) + j) - i;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
209 fp = st1 + i;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
210 for (x=0; x < b; x++) {
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
211 if (x == c)
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
212 fp=in;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
213 work[x] = *(table++) * (*(st1++) = *(fp++));
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
214 }
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2956
diff changeset
215
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
216 prodsum(buffer1, work + n, i, n);
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
217 prodsum(buffer2, work + a, j, n);
1304
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
218
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
219 for (x=0;x<=n;x++) {
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
220 *st2 = *st2 * (0.5625) + buffer1[x];
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
221 out[x] = *(st2++) + buffer2[x];
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
222 }
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
223 *out *= 1.00390625; /* to prevent clipping */
1304
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
224 }
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
225
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
226 /* product sum (lsf) */
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
227 static void prodsum(float *tgt, float *src, int len, int n)
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
228 {
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
229 unsigned int x;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
230 float *p1, *p2;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
231 double sum;
1304
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
232
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
233 while (n >= 0) {
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
234 p1 = (p2 = src) - n;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
235 for (sum=0, x=len; x--; sum += (*p1++) * (*p2++));
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
236 tgt[n--] = sum;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
237 }
1304
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
238 }
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
239
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
240 static void * decode_block(AVCodecContext * avctx, const unsigned char *in,
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
241 signed short int *out, unsigned len)
1313
d6da658fe6c6 finally works now
nickols_k
parents: 1308
diff changeset
242 {
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
243 int x, y;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
244 Real288_internal *glob = avctx->priv_data;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
245 unsigned short int buffer[len];
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
246
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
247 unpack(buffer, in, len);
1313
d6da658fe6c6 finally works now
nickols_k
parents: 1308
diff changeset
248
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
249 for (x=0; x < 32; x++) {
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
250 glob->phasep = (glob->phase = x & 7) * 5;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
251 decode(glob, buffer[x]);
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
252
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
253 for (y=0; y<5; *(out++) = 8 * glob->output[glob->phasep+(y++)]);
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
254
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
255 if (glob->phase == 3)
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
256 update(glob);
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
257 }
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
258
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
259 return out;
1313
d6da658fe6c6 finally works now
nickols_k
parents: 1308
diff changeset
260 }
1304
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
261
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
262 /* Decode a block (celp) */
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
263 static int ra288_decode_frame(AVCodecContext * avctx, void *data,
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
264 int *data_size, const uint8_t * buf,
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
265 int buf_size)
1304
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
266 {
1313
d6da658fe6c6 finally works now
nickols_k
parents: 1308
diff changeset
267 void *datao;
2956
5f51b1e0bed6 Cook compatibe decoder, patch by Benjamin Larsson
rtognimp
parents: 2288
diff changeset
268
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
269 if (buf_size < avctx->block_align) {
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
270 av_log(avctx, AV_LOG_ERROR,
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
271 "ffra288: Error! Input buffer is too small [%d<%d]\n",
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
272 buf_size, avctx->block_align);
2979
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
273 return 0;
1308
98e270096355 some useful warning
nickols_k
parents: 1305
diff changeset
274 }
2956
5f51b1e0bed6 Cook compatibe decoder, patch by Benjamin Larsson
rtognimp
parents: 2288
diff changeset
275
1313
d6da658fe6c6 finally works now
nickols_k
parents: 1308
diff changeset
276 datao = data;
2956
5f51b1e0bed6 Cook compatibe decoder, patch by Benjamin Larsson
rtognimp
parents: 2288
diff changeset
277 data = decode_block(avctx, buf, (signed short *)data, avctx->block_align);
5f51b1e0bed6 Cook compatibe decoder, patch by Benjamin Larsson
rtognimp
parents: 2288
diff changeset
278
2024
f65d87bfdd5a some of the warning fixes by (Michael Roitzsch <mroi at users dot sourceforge dot net>)
michael
parents: 1598
diff changeset
279 *data_size = (char *)data - (char *)datao;
2956
5f51b1e0bed6 Cook compatibe decoder, patch by Benjamin Larsson
rtognimp
parents: 2288
diff changeset
280 return avctx->block_align;
1304
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
281 }
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
282
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
283 AVCodec ra_288_decoder =
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
284 {
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
285 "real_288",
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
286 CODEC_TYPE_AUDIO,
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
287 CODEC_ID_RA_288,
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
288 sizeof(Real288_internal),
7168
c2691f22708b Remove useless initialization
vitor
parents: 7167
diff changeset
289 NULL,
1304
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
290 NULL,
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
291 NULL,
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
292 ra288_decode_frame,
7040
e943e1409077 Make AVCodec long_names definition conditional depending on CONFIG_SMALL.
stefano
parents: 6712
diff changeset
293 .long_name = NULL_IF_CONFIG_SMALL("RealAudio 2.0 (28.8K)"),
1304
e8543aab0cc9 RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff changeset
294 };