Mercurial > libavcodec.hg
annotate ra288.c @ 7369:b0d8a3985f96 libavcodec
Rename pred() to eval_lpc_coeffs() and add a doxy comment
| author | vitor |
|---|---|
| date | Thu, 24 Jul 2008 04:05:41 +0000 |
| parents | 166e5712dcd8 |
| children | 61df1ddb1001 |
| 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 |
| 7294 | 40 static inline float scalar_product_float(const float * v1, const float * v2, |
| 41 int size) | |
|
7201
4d441356fa23
Create a function for float dot product instead of duplicating all over the file
vitor
parents:
7195
diff
changeset
|
42 { |
|
4d441356fa23
Create a function for float dot product instead of duplicating all over the file
vitor
parents:
7195
diff
changeset
|
43 float res = 0.; |
|
4d441356fa23
Create a function for float dot product instead of duplicating all over the file
vitor
parents:
7195
diff
changeset
|
44 |
|
4d441356fa23
Create a function for float dot product instead of duplicating all over the file
vitor
parents:
7195
diff
changeset
|
45 while (size--) |
|
4d441356fa23
Create a function for float dot product instead of duplicating all over the file
vitor
parents:
7195
diff
changeset
|
46 res += *v1++ * *v2++; |
|
4d441356fa23
Create a function for float dot product instead of duplicating all over the file
vitor
parents:
7195
diff
changeset
|
47 |
|
4d441356fa23
Create a function for float dot product instead of duplicating all over the file
vitor
parents:
7195
diff
changeset
|
48 return res; |
|
4d441356fa23
Create a function for float dot product instead of duplicating all over the file
vitor
parents:
7195
diff
changeset
|
49 } |
|
4d441356fa23
Create a function for float dot product instead of duplicating all over the file
vitor
parents:
7195
diff
changeset
|
50 |
|
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 /* Decode and produce output */ |
| 7192 | 52 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
|
53 { |
|
7195
5e5c1178ae9a
Write for loops in a more standard way. In my opinion, they are much more readable now.
vitor
parents:
7193
diff
changeset
|
54 int x, y; |
|
7268
7e51fc7805ac
Do not declare as double a var that only stores a float
vitor
parents:
7267
diff
changeset
|
55 double sumsum; |
|
7e51fc7805ac
Do not declare as double a var that only stores a float
vitor
parents:
7267
diff
changeset
|
56 float sum, buffer[5]; |
| 7167 | 57 |
| 7208 | 58 memmove(glob->sb + 5, glob->sb, 36 * sizeof(*glob->sb)); |
| 7167 | 59 |
| 7202 | 60 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
|
61 glob->sb[x] = -scalar_product_float(glob->sb + x + 1, glob->pr1, 36); |
| 7167 | 62 |
| 63 /* 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
|
64 sum = 32. - scalar_product_float(glob->pr2, glob->lhist, 10); |
| 7167 | 65 |
| 7269 | 66 sum = av_clipf(sum, 0, 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
|
67 |
| 7192 | 68 sumsum = exp(sum * 0.1151292546497) * gain; /* pow(10.0,sum/20)*f */ |
| 7167 | 69 |
| 7210 | 70 for (x=0; x < 5; x++) |
| 7191 | 71 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
|
72 |
| 7275 | 73 sum = scalar_product_float(buffer, buffer, 5) / 5; |
| 74 | |
| 75 sum = FFMAX(sum, 1); | |
| 7167 | 76 |
| 77 /* shift and store */ | |
| 7208 | 78 memmove(glob->lhist, glob->lhist - 1, 10 * sizeof(*glob->lhist)); |
| 7167 | 79 |
| 80 *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
|
81 |
| 7167 | 82 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
|
83 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
|
84 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
|
85 |
| 7167 | 86 /* output */ |
| 87 for (x=0; x < 5; x++) { | |
|
7265
433a8fbbdd00
Add av_clipf() function to common.h and use it in ra288.c
vitor
parents:
7215
diff
changeset
|
88 glob->output[glob->phase*5+x] = glob->sb[4-x] = |
|
433a8fbbdd00
Add av_clipf() function to common.h and use it in ra288.c
vitor
parents:
7215
diff
changeset
|
89 av_clipf(glob->sb[4-x] + buffer[x], -4095, 4095); |
| 7167 | 90 } |
|
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 /* column multiply */ |
| 7294 | 94 static void colmult(float *tgt, const float *m1, const float *m2, int 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
|
95 { |
| 7167 | 96 while (n--) |
| 97 *(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
|
98 } |
|
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
|
99 |
|
7369
b0d8a3985f96
Rename pred() to eval_lpc_coeffs() and add a doxy comment
vitor
parents:
7368
diff
changeset
|
100 /** |
|
b0d8a3985f96
Rename pred() to eval_lpc_coeffs() and add a doxy comment
vitor
parents:
7368
diff
changeset
|
101 * Converts autocorrelation coefficients to LPC coefficients using the |
|
b0d8a3985f96
Rename pred() to eval_lpc_coeffs() and add a doxy comment
vitor
parents:
7368
diff
changeset
|
102 * Levinson-Durbin algorithm. See blocks 37 and 50 of the G.728 specification. |
|
b0d8a3985f96
Rename pred() to eval_lpc_coeffs() and add a doxy comment
vitor
parents:
7368
diff
changeset
|
103 * |
|
b0d8a3985f96
Rename pred() to eval_lpc_coeffs() and add a doxy comment
vitor
parents:
7368
diff
changeset
|
104 * @return 1 if success, 0 if fail |
|
b0d8a3985f96
Rename pred() to eval_lpc_coeffs() and add a doxy comment
vitor
parents:
7368
diff
changeset
|
105 */ |
|
b0d8a3985f96
Rename pred() to eval_lpc_coeffs() and add a doxy comment
vitor
parents:
7368
diff
changeset
|
106 static int eval_lpc_coeffs(const float *in, float *tgt, int 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
|
107 { |
| 7167 | 108 int x, y; |
| 109 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
|
110 |
| 7167 | 111 if (in[n] == 0) |
| 112 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
|
113 |
| 7167 | 114 if ((f0 = *in) <= 0) |
| 115 return 0; | |
| 116 | |
| 7296 | 117 in--; // To avoid a -1 subtraction in the inner loop |
| 118 | |
| 7295 | 119 for (x=1; x <= n; x++) { |
| 7296 | 120 f1 = in[x+1]; |
|
7195
5e5c1178ae9a
Write for loops in a more standard way. In my opinion, they are much more readable now.
vitor
parents:
7193
diff
changeset
|
121 |
|
5e5c1178ae9a
Write for loops in a more standard way. In my opinion, they are much more readable now.
vitor
parents:
7193
diff
changeset
|
122 for (y=0; y < x - 1; y++) |
| 7296 | 123 f1 += in[x-y]*tgt[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
|
124 |
| 7299 | 125 tgt[x-1] = f2 = -f1/f0; |
| 126 for (y=0; y < x >> 1; y++) { | |
| 127 float temp = tgt[y] + tgt[x-y-2]*f2; | |
| 128 tgt[x-y-2] += tgt[y]*f2; | |
| 129 tgt[y] = temp; | |
| 7167 | 130 } |
| 131 if ((f0 += f1*f2) < 0) | |
| 132 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
|
133 } |
| 7295 | 134 |
| 135 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
|
136 } |
|
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
|
137 |
| 7169 | 138 /* product sum (lsf) */ |
| 7294 | 139 static void prodsum(float *tgt, const float *src, int len, int n) |
| 7169 | 140 { |
|
7201
4d441356fa23
Create a function for float dot product instead of duplicating all over the file
vitor
parents:
7195
diff
changeset
|
141 for (; n >= 0; n--) |
|
4d441356fa23
Create a function for float dot product instead of duplicating all over the file
vitor
parents:
7195
diff
changeset
|
142 tgt[n] = scalar_product_float(src, src - n, len); |
| 7169 | 143 |
| 144 } | |
| 145 | |
| 7367 | 146 /** |
| 147 * Hybrid window filtering. See blocks 36 and 49 of the G.728 specification. | |
| 148 * | |
| 149 * @param order the order of the filter | |
| 150 * @param n the length of the input | |
| 151 * @param non_rec the number of non recursive samples | |
| 152 * @param out the filter output | |
| 153 * @param in pointer to the input of the filter | |
| 154 * @param hist pointer to the input history of the filter. It is updated by | |
| 155 * this function. | |
| 156 * @param out pointer to the non recursive part of the output | |
| 157 * @param out2 pointer to the recursive part of the output | |
| 158 * @param window pointer to the windowing function table | |
| 159 */ | |
|
7366
d74804a3a18b
Give parameters of do_hybrid_window() more meaningful names
vitor
parents:
7365
diff
changeset
|
160 static void do_hybrid_window(int order, int n, int non_rec, const float *in, |
|
d74804a3a18b
Give parameters of do_hybrid_window() more meaningful names
vitor
parents:
7365
diff
changeset
|
161 float *out, float *hist, float *out2, |
|
d74804a3a18b
Give parameters of do_hybrid_window() more meaningful names
vitor
parents:
7365
diff
changeset
|
162 const float *window) |
|
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
|
163 { |
| 7167 | 164 unsigned int x; |
| 165 float buffer1[37]; | |
| 166 float buffer2[37]; | |
| 167 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
|
168 |
| 7367 | 169 /* update history */ |
|
7366
d74804a3a18b
Give parameters of do_hybrid_window() more meaningful names
vitor
parents:
7365
diff
changeset
|
170 memmove(hist , hist + n, (order + non_rec)*sizeof(*hist)); |
|
d74804a3a18b
Give parameters of do_hybrid_window() more meaningful names
vitor
parents:
7365
diff
changeset
|
171 memcpy (hist + order + non_rec, in , n *sizeof(*hist)); |
|
7363
d346c4da00bd
Simplify co(), use memcpy/memmove and colmult() when useful.
vitor
parents:
7322
diff
changeset
|
172 |
|
7366
d74804a3a18b
Give parameters of do_hybrid_window() more meaningful names
vitor
parents:
7365
diff
changeset
|
173 colmult(work, window, hist, order + n + non_rec); |
| 2967 | 174 |
|
7366
d74804a3a18b
Give parameters of do_hybrid_window() more meaningful names
vitor
parents:
7365
diff
changeset
|
175 prodsum(buffer1, work + order , n , order); |
|
d74804a3a18b
Give parameters of do_hybrid_window() more meaningful names
vitor
parents:
7365
diff
changeset
|
176 prodsum(buffer2, work + order + n, non_rec, order); |
|
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
|
177 |
|
7366
d74804a3a18b
Give parameters of do_hybrid_window() more meaningful names
vitor
parents:
7365
diff
changeset
|
178 for (x=0; x <= order; x++) { |
|
d74804a3a18b
Give parameters of do_hybrid_window() more meaningful names
vitor
parents:
7365
diff
changeset
|
179 out2[x] = out2[x] * 0.5625 + buffer1[x]; |
|
d74804a3a18b
Give parameters of do_hybrid_window() more meaningful names
vitor
parents:
7365
diff
changeset
|
180 out [x] = out2[x] + buffer2[x]; |
| 7167 | 181 } |
|
7365
031d4866b192
Rename co() function to the much more descriptive name of
vitor
parents:
7364
diff
changeset
|
182 |
|
031d4866b192
Rename co() function to the much more descriptive name of
vitor
parents:
7364
diff
changeset
|
183 /* Multiply by the white noise correcting factor (WNCF) */ |
|
031d4866b192
Rename co() function to the much more descriptive name of
vitor
parents:
7364
diff
changeset
|
184 *out *= 257./256.; |
|
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
|
185 } |
|
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
|
186 |
| 7169 | 187 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
|
188 { |
| 7169 | 189 float buffer1[40], temp1[37]; |
| 190 float buffer2[8], temp2[11]; | |
| 191 | |
| 7215 | 192 memcpy(buffer1 , glob->output + 20, 20*sizeof(*buffer1)); |
| 193 memcpy(buffer1 + 20, glob->output , 20*sizeof(*buffer1)); | |
| 7169 | 194 |
|
7366
d74804a3a18b
Give parameters of do_hybrid_window() more meaningful names
vitor
parents:
7365
diff
changeset
|
195 do_hybrid_window(36, 40, 35, buffer1, temp1, glob->st1a, glob->st1b, |
| 7368 | 196 syn_window); |
|
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
|
197 |
|
7369
b0d8a3985f96
Rename pred() to eval_lpc_coeffs() and add a doxy comment
vitor
parents:
7368
diff
changeset
|
198 if (eval_lpc_coeffs(temp1, glob->st1, 36)) |
| 7169 | 199 colmult(glob->pr1, glob->st1, table1a, 36); |
| 200 | |
| 7215 | 201 memcpy(buffer2 , glob->history + 4, 4*sizeof(*buffer2)); |
| 202 memcpy(buffer2 + 4, glob->history , 4*sizeof(*buffer2)); | |
| 7169 | 203 |
|
7366
d74804a3a18b
Give parameters of do_hybrid_window() more meaningful names
vitor
parents:
7365
diff
changeset
|
204 do_hybrid_window(10, 8, 20, buffer2, temp2, glob->st2a, glob->st2b, |
| 7368 | 205 gain_window); |
| 7169 | 206 |
|
7369
b0d8a3985f96
Rename pred() to eval_lpc_coeffs() and add a doxy comment
vitor
parents:
7368
diff
changeset
|
207 if (eval_lpc_coeffs(temp2, glob->st2, 10)) |
| 7169 | 208 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
|
209 } |
|
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
|
210 |
| 7174 | 211 /* Decode a block (celp) */ |
| 212 static int ra288_decode_frame(AVCodecContext * avctx, void *data, | |
| 213 int *data_size, const uint8_t * buf, | |
| 214 int buf_size) | |
| 1313 | 215 { |
| 7174 | 216 int16_t *out = data; |
| 7167 | 217 int x, y; |
| 218 Real288_internal *glob = avctx->priv_data; | |
|
7173
bc2fd265f52b
Remove unpack() function, read the bitstream as needed
vitor
parents:
7172
diff
changeset
|
219 GetBitContext gb; |
| 7167 | 220 |
| 7174 | 221 if (buf_size < avctx->block_align) { |
| 222 av_log(avctx, AV_LOG_ERROR, | |
| 223 "Error! Input buffer is too small [%d<%d]\n", | |
| 224 buf_size, avctx->block_align); | |
| 225 return 0; | |
| 226 } | |
| 227 | |
| 228 init_get_bits(&gb, buf, avctx->block_align * 8); | |
| 1313 | 229 |
| 7167 | 230 for (x=0; x < 32; x++) { |
| 7192 | 231 float gain = amptable[get_bits(&gb, 3)]; |
|
7173
bc2fd265f52b
Remove unpack() function, read the bitstream as needed
vitor
parents:
7172
diff
changeset
|
232 int cb_coef = get_bits(&gb, 6 + (x&1)); |
| 7213 | 233 glob->phase = x & 7; |
| 7192 | 234 decode(glob, gain, cb_coef); |
| 7167 | 235 |
|
7195
5e5c1178ae9a
Write for loops in a more standard way. In my opinion, they are much more readable now.
vitor
parents:
7193
diff
changeset
|
236 for (y=0; y < 5; y++) |
| 7213 | 237 *(out++) = 8 * glob->output[glob->phase*5 + y]; |
| 7167 | 238 |
| 239 if (glob->phase == 3) | |
| 240 update(glob); | |
| 241 } | |
| 242 | |
| 7174 | 243 *data_size = (char *)out - (char *)data; |
|
2956
5f51b1e0bed6
Cook compatibe decoder, patch by Benjamin Larsson
rtognimp
parents:
2288
diff
changeset
|
244 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
|
245 } |
|
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 |
|
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 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
|
248 { |
|
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
|
249 "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
|
250 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
|
251 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
|
252 sizeof(Real288_internal), |
| 7168 | 253 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
|
254 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
|
255 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
|
256 ra288_decode_frame, |
|
7040
e943e1409077
Make AVCodec long_names definition conditional depending on CONFIG_SMALL.
stefano
parents:
6712
diff
changeset
|
257 .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
|
258 }; |
