annotate ra288.c @ 7375:981b14d8b0e9 libavcodec

Cosmetics: grammar nits
author vitor
date Thu, 24 Jul 2008 11:55:01 +0000
parents e97d0795ee70
children d41948bf80a1
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"
7171
9176fe6f17c9 Rewrite unpack() using the bitstream reader
vitor
parents: 7169
diff changeset
23 #define ALT_BITSTREAM_READER_LE
9176fe6f17c9 Rewrite unpack() using the bitstream reader
vitor
parents: 7169
diff changeset
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
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2956
diff changeset
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
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
28 float history[8];
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
29 float output[40];
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
30 float pr1[36];
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
31 float pr2[10];
7213
cf82f8a56940 Remove phasep context var, it is just phase*5
vitor
parents: 7212
diff changeset
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
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
34 float st1a[111], st1b[37], st1[37];
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
35 float st2a[38], st2b[11], st2[11];
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
36 float sb[41];
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
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
bf3952d5e76c Declare function parameters as const
vitor
parents: 7275
diff changeset
40 static inline float scalar_product_float(const float * v1, const float * v2,
bf3952d5e76c Declare function parameters as const
vitor
parents: 7275
diff changeset
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
9517beb3b491 Simplify
vitor
parents: 7191
diff changeset
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
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
57
7208
297b5219cd31 Do not reimplement memmove()
vitor
parents: 7202
diff changeset
58 memmove(glob->sb + 5, glob->sb, 36 * sizeof(*glob->sb));
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
59
7202
2a4ac127112c Cosmetics: remove braces
vitor
parents: 7201
diff changeset
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
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
62
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
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
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
65
7269
04ecb6594999 Another av_clipf() usage
vitor
parents: 7268
diff changeset
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
9517beb3b491 Simplify
vitor
parents: 7191
diff changeset
68 sumsum = exp(sum * 0.1151292546497) * gain; /* pow(10.0,sum/20)*f */
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
69
7210
43048f7a1d7c Cosmetics: remove braces
vitor
parents: 7209
diff changeset
70 for (x=0; x < 5; x++)
7191
98c5f3839e9b Remove unneeded var
vitor
parents: 7190
diff changeset
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
c5bcb9e4c5b2 Revert r14218. FFMAX is a macro, so
vitor
parents: 7270
diff changeset
73 sum = scalar_product_float(buffer, buffer, 5) / 5;
c5bcb9e4c5b2 Revert r14218. FFMAX is a macro, so
vitor
parents: 7270
diff changeset
74
c5bcb9e4c5b2 Revert r14218. FFMAX is a macro, so
vitor
parents: 7270
diff changeset
75 sum = FFMAX(sum, 1);
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
76
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
77 /* shift and store */
7208
297b5219cd31 Do not reimplement memmove()
vitor
parents: 7202
diff changeset
78 memmove(glob->lhist, glob->lhist - 1, 10 * sizeof(*glob->lhist));
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
79
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
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
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
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
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
86 /* output */
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
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
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
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
bf3952d5e76c Declare function parameters as const
vitor
parents: 7275
diff changeset
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
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
96 while (n--)
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
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 *
7370
61df1ddb1001 Follow FFmpeg convention of returning negative values on error in eval_lpc_coeffs()
vitor
parents: 7369
diff changeset
104 * @return 0 if success, -1 if fail
7369
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
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
108 int x, y;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
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
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
111 if (in[n] == 0)
7370
61df1ddb1001 Follow FFmpeg convention of returning negative values on error in eval_lpc_coeffs()
vitor
parents: 7369
diff changeset
112 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
113
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
114 if ((f0 = *in) <= 0)
7370
61df1ddb1001 Follow FFmpeg convention of returning negative values on error in eval_lpc_coeffs()
vitor
parents: 7369
diff changeset
115 return -1;
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
116
7296
6221f1f81f9b Simplify
vitor
parents: 7295
diff changeset
117 in--; // To avoid a -1 subtraction in the inner loop
6221f1f81f9b Simplify
vitor
parents: 7295
diff changeset
118
7295
f3923fea3a8c Simplify
vitor
parents: 7294
diff changeset
119 for (x=1; x <= n; x++) {
7296
6221f1f81f9b Simplify
vitor
parents: 7295
diff changeset
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
6221f1f81f9b Simplify
vitor
parents: 7295
diff changeset
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
1b5bc92244de Simplify: do not overuse pointer aritmetic
vitor
parents: 7298
diff changeset
125 tgt[x-1] = f2 = -f1/f0;
1b5bc92244de Simplify: do not overuse pointer aritmetic
vitor
parents: 7298
diff changeset
126 for (y=0; y < x >> 1; y++) {
1b5bc92244de Simplify: do not overuse pointer aritmetic
vitor
parents: 7298
diff changeset
127 float temp = tgt[y] + tgt[x-y-2]*f2;
1b5bc92244de Simplify: do not overuse pointer aritmetic
vitor
parents: 7298
diff changeset
128 tgt[x-y-2] += tgt[y]*f2;
1b5bc92244de Simplify: do not overuse pointer aritmetic
vitor
parents: 7298
diff changeset
129 tgt[y] = temp;
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
130 }
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
131 if ((f0 += f1*f2) < 0)
7370
61df1ddb1001 Follow FFmpeg convention of returning negative values on error in eval_lpc_coeffs()
vitor
parents: 7369
diff changeset
132 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
133 }
7295
f3923fea3a8c Simplify
vitor
parents: 7294
diff changeset
134
7370
61df1ddb1001 Follow FFmpeg convention of returning negative values on error in eval_lpc_coeffs()
vitor
parents: 7369
diff changeset
135 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
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
f12513065d85 Move function to avoid forward declaration
vitor
parents: 7168
diff changeset
138 /* product sum (lsf) */
7294
bf3952d5e76c Declare function parameters as const
vitor
parents: 7275
diff changeset
139 static void prodsum(float *tgt, const float *src, int len, int n)
7169
f12513065d85 Move function to avoid forward declaration
vitor
parents: 7168
diff changeset
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
f12513065d85 Move function to avoid forward declaration
vitor
parents: 7168
diff changeset
143
f12513065d85 Move function to avoid forward declaration
vitor
parents: 7168
diff changeset
144 }
f12513065d85 Move function to avoid forward declaration
vitor
parents: 7168
diff changeset
145
7367
f8e1a1ef4a56 Add comments to do_hybrid_window()
vitor
parents: 7366
diff changeset
146 /**
f8e1a1ef4a56 Add comments to do_hybrid_window()
vitor
parents: 7366
diff changeset
147 * Hybrid window filtering. See blocks 36 and 49 of the G.728 specification.
f8e1a1ef4a56 Add comments to do_hybrid_window()
vitor
parents: 7366
diff changeset
148 *
f8e1a1ef4a56 Add comments to do_hybrid_window()
vitor
parents: 7366
diff changeset
149 * @param order the order of the filter
f8e1a1ef4a56 Add comments to do_hybrid_window()
vitor
parents: 7366
diff changeset
150 * @param n the length of the input
7375
981b14d8b0e9 Cosmetics: grammar nits
vitor
parents: 7372
diff changeset
151 * @param non_rec the number of non-recursive samples
7367
f8e1a1ef4a56 Add comments to do_hybrid_window()
vitor
parents: 7366
diff changeset
152 * @param out the filter output
f8e1a1ef4a56 Add comments to do_hybrid_window()
vitor
parents: 7366
diff changeset
153 * @param in pointer to the input of the filter
f8e1a1ef4a56 Add comments to do_hybrid_window()
vitor
parents: 7366
diff changeset
154 * @param hist pointer to the input history of the filter. It is updated by
f8e1a1ef4a56 Add comments to do_hybrid_window()
vitor
parents: 7366
diff changeset
155 * this function.
7375
981b14d8b0e9 Cosmetics: grammar nits
vitor
parents: 7372
diff changeset
156 * @param out pointer to the non-recursive part of the output
7367
f8e1a1ef4a56 Add comments to do_hybrid_window()
vitor
parents: 7366
diff changeset
157 * @param out2 pointer to the recursive part of the output
f8e1a1ef4a56 Add comments to do_hybrid_window()
vitor
parents: 7366
diff changeset
158 * @param window pointer to the windowing function table
f8e1a1ef4a56 Add comments to do_hybrid_window()
vitor
parents: 7366
diff changeset
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
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
164 unsigned int x;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
165 float buffer1[37];
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
166 float buffer2[37];
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
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
f8e1a1ef4a56 Add comments to do_hybrid_window()
vitor
parents: 7366
diff changeset
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
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2956
diff changeset
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
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
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
7372
e97d0795ee70 Rename update() function to backward_filter() and add a doxy comment
vitor
parents: 7371
diff changeset
187 /**
e97d0795ee70 Rename update() function to backward_filter() and add a doxy comment
vitor
parents: 7371
diff changeset
188 * Backward synthesis filter. Find the LPC coefficients from past speech data.
e97d0795ee70 Rename update() function to backward_filter() and add a doxy comment
vitor
parents: 7371
diff changeset
189 */
e97d0795ee70 Rename update() function to backward_filter() and add a doxy comment
vitor
parents: 7371
diff changeset
190 static void backward_filter(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
191 {
7169
f12513065d85 Move function to avoid forward declaration
vitor
parents: 7168
diff changeset
192 float buffer1[40], temp1[37];
f12513065d85 Move function to avoid forward declaration
vitor
parents: 7168
diff changeset
193 float buffer2[8], temp2[11];
f12513065d85 Move function to avoid forward declaration
vitor
parents: 7168
diff changeset
194
7215
77d27130c9af Simplify: glob->phase is always == 3
vitor
parents: 7213
diff changeset
195 memcpy(buffer1 , glob->output + 20, 20*sizeof(*buffer1));
77d27130c9af Simplify: glob->phase is always == 3
vitor
parents: 7213
diff changeset
196 memcpy(buffer1 + 20, glob->output , 20*sizeof(*buffer1));
7169
f12513065d85 Move function to avoid forward declaration
vitor
parents: 7168
diff changeset
197
7366
d74804a3a18b Give parameters of do_hybrid_window() more meaningful names
vitor
parents: 7365
diff changeset
198 do_hybrid_window(36, 40, 35, buffer1, temp1, glob->st1a, glob->st1b,
7368
166e5712dcd8 Give windowing tables a more descriptive name
vitor
parents: 7367
diff changeset
199 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
200
7370
61df1ddb1001 Follow FFmpeg convention of returning negative values on error in eval_lpc_coeffs()
vitor
parents: 7369
diff changeset
201 if (!eval_lpc_coeffs(temp1, glob->st1, 36))
7371
c6c6b6236ff3 Rename and comment bandwidth broadening tables
vitor
parents: 7370
diff changeset
202 colmult(glob->pr1, glob->st1, syn_bw_tab, 36);
7169
f12513065d85 Move function to avoid forward declaration
vitor
parents: 7168
diff changeset
203
7215
77d27130c9af Simplify: glob->phase is always == 3
vitor
parents: 7213
diff changeset
204 memcpy(buffer2 , glob->history + 4, 4*sizeof(*buffer2));
77d27130c9af Simplify: glob->phase is always == 3
vitor
parents: 7213
diff changeset
205 memcpy(buffer2 + 4, glob->history , 4*sizeof(*buffer2));
7169
f12513065d85 Move function to avoid forward declaration
vitor
parents: 7168
diff changeset
206
7366
d74804a3a18b Give parameters of do_hybrid_window() more meaningful names
vitor
parents: 7365
diff changeset
207 do_hybrid_window(10, 8, 20, buffer2, temp2, glob->st2a, glob->st2b,
7368
166e5712dcd8 Give windowing tables a more descriptive name
vitor
parents: 7367
diff changeset
208 gain_window);
7169
f12513065d85 Move function to avoid forward declaration
vitor
parents: 7168
diff changeset
209
7370
61df1ddb1001 Follow FFmpeg convention of returning negative values on error in eval_lpc_coeffs()
vitor
parents: 7369
diff changeset
210 if (!eval_lpc_coeffs(temp2, glob->st2, 10))
7371
c6c6b6236ff3 Rename and comment bandwidth broadening tables
vitor
parents: 7370
diff changeset
211 colmult(glob->pr2, glob->st2, gain_bw_tab, 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
212 }
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
213
7174
7c4589349c01 Remove useless wrapper around ra288_decode_frame()
vitor
parents: 7173
diff changeset
214 /* Decode a block (celp) */
7c4589349c01 Remove useless wrapper around ra288_decode_frame()
vitor
parents: 7173
diff changeset
215 static int ra288_decode_frame(AVCodecContext * avctx, void *data,
7c4589349c01 Remove useless wrapper around ra288_decode_frame()
vitor
parents: 7173
diff changeset
216 int *data_size, const uint8_t * buf,
7c4589349c01 Remove useless wrapper around ra288_decode_frame()
vitor
parents: 7173
diff changeset
217 int buf_size)
1313
d6da658fe6c6 finally works now
nickols_k
parents: 1308
diff changeset
218 {
7174
7c4589349c01 Remove useless wrapper around ra288_decode_frame()
vitor
parents: 7173
diff changeset
219 int16_t *out = data;
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
220 int x, y;
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
221 Real288_internal *glob = avctx->priv_data;
7173
bc2fd265f52b Remove unpack() function, read the bitstream as needed
vitor
parents: 7172
diff changeset
222 GetBitContext gb;
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
223
7174
7c4589349c01 Remove useless wrapper around ra288_decode_frame()
vitor
parents: 7173
diff changeset
224 if (buf_size < avctx->block_align) {
7c4589349c01 Remove useless wrapper around ra288_decode_frame()
vitor
parents: 7173
diff changeset
225 av_log(avctx, AV_LOG_ERROR,
7c4589349c01 Remove useless wrapper around ra288_decode_frame()
vitor
parents: 7173
diff changeset
226 "Error! Input buffer is too small [%d<%d]\n",
7c4589349c01 Remove useless wrapper around ra288_decode_frame()
vitor
parents: 7173
diff changeset
227 buf_size, avctx->block_align);
7c4589349c01 Remove useless wrapper around ra288_decode_frame()
vitor
parents: 7173
diff changeset
228 return 0;
7c4589349c01 Remove useless wrapper around ra288_decode_frame()
vitor
parents: 7173
diff changeset
229 }
7c4589349c01 Remove useless wrapper around ra288_decode_frame()
vitor
parents: 7173
diff changeset
230
7c4589349c01 Remove useless wrapper around ra288_decode_frame()
vitor
parents: 7173
diff changeset
231 init_get_bits(&gb, buf, avctx->block_align * 8);
1313
d6da658fe6c6 finally works now
nickols_k
parents: 1308
diff changeset
232
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
233 for (x=0; x < 32; x++) {
7192
9517beb3b491 Simplify
vitor
parents: 7191
diff changeset
234 float gain = amptable[get_bits(&gb, 3)];
7173
bc2fd265f52b Remove unpack() function, read the bitstream as needed
vitor
parents: 7172
diff changeset
235 int cb_coef = get_bits(&gb, 6 + (x&1));
7213
cf82f8a56940 Remove phasep context var, it is just phase*5
vitor
parents: 7212
diff changeset
236 glob->phase = x & 7;
7192
9517beb3b491 Simplify
vitor
parents: 7191
diff changeset
237 decode(glob, gain, cb_coef);
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
238
7195
5e5c1178ae9a Write for loops in a more standard way. In my opinion, they are much more readable now.
vitor
parents: 7193
diff changeset
239 for (y=0; y < 5; y++)
7213
cf82f8a56940 Remove phasep context var, it is just phase*5
vitor
parents: 7212
diff changeset
240 *(out++) = 8 * glob->output[glob->phase*5 + y];
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
241
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
242 if (glob->phase == 3)
7372
e97d0795ee70 Rename update() function to backward_filter() and add a doxy comment
vitor
parents: 7371
diff changeset
243 backward_filter(glob);
7167
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
244 }
9b93a3cf6440 Reindent the whole file
vitor
parents: 7040
diff changeset
245
7174
7c4589349c01 Remove useless wrapper around ra288_decode_frame()
vitor
parents: 7173
diff changeset
246 *data_size = (char *)out - (char *)data;
2956
5f51b1e0bed6 Cook compatibe decoder, patch by Benjamin Larsson
rtognimp
parents: 2288
diff changeset
247 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
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
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 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
251 {
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 "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
253 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
254 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
255 sizeof(Real288_internal),
7168
c2691f22708b Remove useless initialization
vitor
parents: 7167
diff changeset
256 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
257 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
258 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
259 ra288_decode_frame,
7040
e943e1409077 Make AVCodec long_names definition conditional depending on CONFIG_SMALL.
stefano
parents: 6712
diff changeset
260 .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
261 };