Mercurial > libavcodec.hg
annotate ra288.c @ 7213:cf82f8a56940 libavcodec
Remove phasep context var, it is just phase*5
| author | vitor |
|---|---|
| date | Sun, 06 Jul 2008 12:03:21 +0000 |
| parents | bced5f60fcaf |
| children | 77d27130c9af |
| 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" |
| 7171 | 23 #define ALT_BITSTREAM_READER_LE |
| 24 #include "bitstream.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
|
25 #include "ra288.h" |
| 2967 | 26 |
|
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
|
27 typedef struct { |
| 7167 | 28 float history[8]; |
| 29 float output[40]; | |
| 30 float pr1[36]; | |
| 31 float pr2[10]; | |
| 7213 | 32 int phase; |
|
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
|
33 |
| 7167 | 34 float st1a[111], st1b[37], st1[37]; |
| 35 float st2a[38], st2b[11], st2[11]; | |
| 36 float sb[41]; | |
| 37 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
|
38 } 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
|
39 |
|
7201
4d441356fa23
Create a function for float dot product instead of duplicating all over the file
vitor
parents:
7195
diff
changeset
|
40 static inline float scalar_product_float(float * v1, float * v2, int size) |
|
4d441356fa23
Create a function for float dot product instead of duplicating all over the file
vitor
parents:
7195
diff
changeset
|
41 { |
|
4d441356fa23
Create a function for float dot product instead of duplicating all over the file
vitor
parents:
7195
diff
changeset
|
42 float res = 0.; |
|
4d441356fa23
Create a function for float dot product instead of duplicating all over the file
vitor
parents:
7195
diff
changeset
|
43 |
|
4d441356fa23
Create a function for float dot product instead of duplicating all over the file
vitor
parents:
7195
diff
changeset
|
44 while (size--) |
|
4d441356fa23
Create a function for float dot product instead of duplicating all over the file
vitor
parents:
7195
diff
changeset
|
45 res += *v1++ * *v2++; |
|
4d441356fa23
Create a function for float dot product instead of duplicating all over the file
vitor
parents:
7195
diff
changeset
|
46 |
|
4d441356fa23
Create a function for float dot product instead of duplicating all over the file
vitor
parents:
7195
diff
changeset
|
47 return res; |
|
4d441356fa23
Create a function for float dot product instead of duplicating all over the file
vitor
parents:
7195
diff
changeset
|
48 } |
|
4d441356fa23
Create a function for float dot product instead of duplicating all over the file
vitor
parents:
7195
diff
changeset
|
49 |
|
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
|
50 /* Decode and produce output */ |
| 7192 | 51 static void decode(Real288_internal *glob, float gain, int cb_coef) |
|
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
|
52 { |
|
7195
5e5c1178ae9a
Write for loops in a more standard way. In my opinion, they are much more readable now.
vitor
parents:
7193
diff
changeset
|
53 int x, y; |
| 7167 | 54 double sum, sumsum; |
| 55 float buffer[5]; | |
| 56 | |
| 7208 | 57 memmove(glob->sb + 5, glob->sb, 36 * sizeof(*glob->sb)); |
| 7167 | 58 |
| 7202 | 59 for (x=4; x >= 0; x--) |
|
7201
4d441356fa23
Create a function for float dot product instead of duplicating all over the file
vitor
parents:
7195
diff
changeset
|
60 glob->sb[x] = -scalar_product_float(glob->sb + x + 1, glob->pr1, 36); |
| 7167 | 61 |
| 62 /* convert log and do rms */ | |
|
7201
4d441356fa23
Create a function for float dot product instead of duplicating all over the file
vitor
parents:
7195
diff
changeset
|
63 sum = 32. - scalar_product_float(glob->pr2, glob->lhist, 10); |
| 7167 | 64 |
| 65 if (sum < 0) | |
| 66 sum = 0; | |
| 67 else if (sum > 60) | |
| 68 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
|
69 |
| 7192 | 70 sumsum = exp(sum * 0.1151292546497) * gain; /* pow(10.0,sum/20)*f */ |
| 7167 | 71 |
| 7210 | 72 for (x=0; x < 5; x++) |
| 7191 | 73 buffer[x] = codetable[cb_coef][x] * sumsum; |
|
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
|
74 |
| 7209 | 75 sum = scalar_product_float(buffer, buffer, 5) / 5; |
| 76 | |
|
7195
5e5c1178ae9a
Write for loops in a more standard way. In my opinion, they are much more readable now.
vitor
parents:
7193
diff
changeset
|
77 if (sum < 1) |
| 7167 | 78 sum = 1; |
| 79 | |
| 80 /* shift and store */ | |
| 7208 | 81 memmove(glob->lhist, glob->lhist - 1, 10 * sizeof(*glob->lhist)); |
| 7167 | 82 |
| 83 *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
|
84 |
| 7167 | 85 for (x=1; x < 5; x++) |
|
7195
5e5c1178ae9a
Write for loops in a more standard way. In my opinion, they are much more readable now.
vitor
parents:
7193
diff
changeset
|
86 for (y=x-1; y >= 0; y--) |
|
5e5c1178ae9a
Write for loops in a more standard way. In my opinion, they are much more readable now.
vitor
parents:
7193
diff
changeset
|
87 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
|
88 |
| 7167 | 89 /* output */ |
| 90 for (x=0; x < 5; x++) { | |
| 7193 | 91 float 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
|
92 |
| 7167 | 93 if (f > 4095) |
| 94 f = 4095; | |
| 95 else if (f < -4095) | |
| 96 f = -4095; | |
| 97 | |
| 7213 | 98 glob->output[glob->phase*5+x] = glob->sb[4-x] = f; |
| 7167 | 99 } |
|
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
|
100 } |
|
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
|
101 |
|
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
|
102 /* 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
|
103 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
|
104 { |
| 7167 | 105 while (n--) |
| 106 *(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
|
107 } |
|
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
|
108 |
|
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 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
|
110 { |
| 7167 | 111 int x, y; |
| 112 double f0, f1, f2; | |
|
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
|
113 |
| 7167 | 114 if (in[n] == 0) |
| 115 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
|
116 |
| 7167 | 117 if ((f0 = *in) <= 0) |
| 118 return 0; | |
| 119 | |
| 120 for (x=1 ; ; x++) { | |
| 7193 | 121 float *p1 = in + x; |
| 122 float *p2 = tgt; | |
| 123 | |
| 7167 | 124 if (n < x) |
| 125 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
|
126 |
| 7167 | 127 f1 = *(p1--); |
|
7195
5e5c1178ae9a
Write for loops in a more standard way. In my opinion, they are much more readable now.
vitor
parents:
7193
diff
changeset
|
128 |
|
5e5c1178ae9a
Write for loops in a more standard way. In my opinion, they are much more readable now.
vitor
parents:
7193
diff
changeset
|
129 for (y=0; y < x - 1; y++) |
|
5e5c1178ae9a
Write for loops in a more standard way. In my opinion, they are much more readable now.
vitor
parents:
7193
diff
changeset
|
130 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
|
131 |
| 7167 | 132 p1 = tgt + x - 1; |
| 133 p2 = tgt; | |
| 134 *(p1--) = f2 = -f1/f0; | |
| 135 for (y=x >> 1; y--;) { | |
| 7193 | 136 float temp = *p2 + *p1 * f2; |
| 7167 | 137 *(p1--) += *p2 * f2; |
| 138 *(p2++) = temp; | |
| 139 } | |
| 140 if ((f0 += f1*f2) < 0) | |
| 141 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
|
142 } |
|
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
|
143 } |
|
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
|
144 |
| 7169 | 145 /* product sum (lsf) */ |
| 146 static void prodsum(float *tgt, float *src, int len, int n) | |
| 147 { | |
|
7201
4d441356fa23
Create a function for float dot product instead of duplicating all over the file
vitor
parents:
7195
diff
changeset
|
148 for (; n >= 0; n--) |
|
4d441356fa23
Create a function for float dot product instead of duplicating all over the file
vitor
parents:
7195
diff
changeset
|
149 tgt[n] = scalar_product_float(src, src - n, len); |
| 7169 | 150 |
| 151 } | |
| 152 | |
| 7167 | 153 static void co(int n, int i, int j, float *in, float *out, float *st1, |
| 154 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
|
155 { |
| 7167 | 156 int a, b, c; |
| 157 unsigned int x; | |
| 158 float *fp; | |
| 159 float buffer1[37]; | |
| 160 float buffer2[37]; | |
| 161 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
|
162 |
| 7167 | 163 /* rotate and multiply */ |
| 164 c = (b = (a = n + i) + j) - i; | |
| 165 fp = st1 + i; | |
| 166 for (x=0; x < b; x++) { | |
| 167 if (x == c) | |
| 168 fp=in; | |
| 169 work[x] = *(table++) * (*(st1++) = *(fp++)); | |
| 170 } | |
| 2967 | 171 |
| 7167 | 172 prodsum(buffer1, work + n, i, n); |
| 173 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
|
174 |
| 7167 | 175 for (x=0;x<=n;x++) { |
| 176 *st2 = *st2 * (0.5625) + buffer1[x]; | |
| 177 out[x] = *(st2++) + buffer2[x]; | |
| 178 } | |
| 179 *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
|
180 } |
|
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
|
181 |
| 7169 | 182 static void update(Real288_internal *glob) |
|
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 { |
| 7169 | 184 int x,y; |
| 185 float buffer1[40], temp1[37]; | |
| 186 float buffer2[8], temp2[11]; | |
| 187 | |
| 7213 | 188 y = glob->phase*5+5; |
|
7195
5e5c1178ae9a
Write for loops in a more standard way. In my opinion, they are much more readable now.
vitor
parents:
7193
diff
changeset
|
189 for (x=0; x < 40; x++) |
|
5e5c1178ae9a
Write for loops in a more standard way. In my opinion, they are much more readable now.
vitor
parents:
7193
diff
changeset
|
190 buffer1[x] = glob->output[(y++)%40]; |
| 7169 | 191 |
| 192 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
|
193 |
| 7169 | 194 if (pred(temp1, glob->st1, 36)) |
| 195 colmult(glob->pr1, glob->st1, table1a, 36); | |
| 196 | |
|
7195
5e5c1178ae9a
Write for loops in a more standard way. In my opinion, they are much more readable now.
vitor
parents:
7193
diff
changeset
|
197 y = glob->phase + 1; |
|
5e5c1178ae9a
Write for loops in a more standard way. In my opinion, they are much more readable now.
vitor
parents:
7193
diff
changeset
|
198 for (x=0; x < 8; x++) |
| 7212 | 199 buffer2[x] = glob->history[(y++) & 7]; |
| 7169 | 200 |
| 201 co(10, 8, 20, buffer2, temp2, glob->st2a, glob->st2b, table2); | |
| 202 | |
| 203 if (pred(temp2, glob->st2, 10)) | |
| 204 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
|
205 } |
|
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 |
| 7174 | 207 /* Decode a block (celp) */ |
| 208 static int ra288_decode_frame(AVCodecContext * avctx, void *data, | |
| 209 int *data_size, const uint8_t * buf, | |
| 210 int buf_size) | |
| 1313 | 211 { |
| 7174 | 212 int16_t *out = data; |
| 7167 | 213 int x, y; |
| 214 Real288_internal *glob = avctx->priv_data; | |
|
7173
bc2fd265f52b
Remove unpack() function, read the bitstream as needed
vitor
parents:
7172
diff
changeset
|
215 GetBitContext gb; |
| 7167 | 216 |
| 7174 | 217 if (buf_size < avctx->block_align) { |
| 218 av_log(avctx, AV_LOG_ERROR, | |
| 219 "Error! Input buffer is too small [%d<%d]\n", | |
| 220 buf_size, avctx->block_align); | |
| 221 return 0; | |
| 222 } | |
| 223 | |
| 224 init_get_bits(&gb, buf, avctx->block_align * 8); | |
| 1313 | 225 |
| 7167 | 226 for (x=0; x < 32; x++) { |
| 7192 | 227 float gain = amptable[get_bits(&gb, 3)]; |
|
7173
bc2fd265f52b
Remove unpack() function, read the bitstream as needed
vitor
parents:
7172
diff
changeset
|
228 int cb_coef = get_bits(&gb, 6 + (x&1)); |
| 7213 | 229 glob->phase = x & 7; |
| 7192 | 230 decode(glob, gain, cb_coef); |
| 7167 | 231 |
|
7195
5e5c1178ae9a
Write for loops in a more standard way. In my opinion, they are much more readable now.
vitor
parents:
7193
diff
changeset
|
232 for (y=0; y < 5; y++) |
| 7213 | 233 *(out++) = 8 * glob->output[glob->phase*5 + y]; |
| 7167 | 234 |
| 235 if (glob->phase == 3) | |
| 236 update(glob); | |
| 237 } | |
| 238 | |
| 7174 | 239 *data_size = (char *)out - (char *)data; |
|
2956
5f51b1e0bed6
Cook compatibe decoder, patch by Benjamin Larsson
rtognimp
parents:
2288
diff
changeset
|
240 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
|
241 } |
|
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
|
242 |
|
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
|
243 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
|
244 { |
|
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
|
245 "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
|
246 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
|
247 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
|
248 sizeof(Real288_internal), |
| 7168 | 249 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
|
250 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
|
251 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
|
252 ra288_decode_frame, |
|
7040
e943e1409077
Make AVCodec long_names definition conditional depending on CONFIG_SMALL.
stefano
parents:
6712
diff
changeset
|
253 .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
|
254 }; |
