Mercurial > libavcodec.hg
annotate acelp_filters.c @ 7670:dabe2516abe2 libavcodec
Increase buffer size to 16384 patch by Alexander E. Patrakov" patrakov gmail
This fixes a (probably not exploitable) buffer overflow (apparently unknown to its author).
author | michael |
---|---|
date | Sat, 23 Aug 2008 13:29:13 +0000 |
parents | 155ec22a635a |
children | 3ced4fb23342 |
rev | line source |
---|---|
6772 | 1 /* |
2 * various filters for ACELP-based codecs | |
3 * | |
4 * Copyright (c) 2008 Vladimir Voroshilov | |
5 * | |
6 * This file is part of FFmpeg. | |
7 * | |
8 * FFmpeg is free software; you can redistribute it and/or | |
9 * modify it under the terms of the GNU Lesser General Public | |
10 * License as published by the Free Software Foundation; either | |
11 * version 2.1 of the License, or (at your option) any later version. | |
12 * | |
13 * FFmpeg is distributed in the hope that it will be useful, | |
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
16 * Lesser General Public License for more details. | |
17 * | |
18 * You should have received a copy of the GNU Lesser General Public | |
19 * License along with FFmpeg; if not, write to the Free Software | |
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | |
21 */ | |
22 | |
23 #include <inttypes.h> | |
24 | |
25 #include "avcodec.h" | |
26 #include "acelp_filters.h" | |
27 | |
6856
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
28 const int16_t ff_acelp_interp_filter[61] = |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
29 { /* (0.15) */ |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
30 29443, 28346, 25207, 20449, 14701, 8693, |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
31 3143, -1352, -4402, -5865, -5850, -4673, |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
32 -2783, -672, 1211, 2536, 3130, 2991, |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
33 2259, 1170, 0, -1001, -1652, -1868, |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
34 -1666, -1147, -464, 218, 756, 1060, |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
35 1099, 904, 550, 135, -245, -514, |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
36 -634, -602, -451, -231, 0, 191, |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
37 308, 340, 296, 198, 78, -36, |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
38 -120, -163, -165, -132, -79, -19, |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
39 34, 73, 91, 89, 70, 38, |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
40 0, |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
41 }; |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
42 |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
43 void ff_acelp_interpolate( |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
44 int16_t* out, |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
45 const int16_t* in, |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
46 const int16_t* filter_coeffs, |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
47 int precision, |
7649 | 48 int frac_pos, |
6856
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
49 int filter_length, |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
50 int length) |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
51 { |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
52 int n, i; |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
53 |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
54 assert(pitch_delay_frac >= 0 && pitch_delay_frac < precision); |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
55 |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
56 for(n=0; n<length; n++) |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
57 { |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
58 int idx = 0; |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
59 int v = 0x4000; |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
60 |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
61 for(i=0; i<filter_length;) |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
62 { |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
63 |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
64 /* The reference G.729 and AMR fixed point code performs clipping after |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
65 each of the two following accumulations. |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
66 Since clipping affects only the synthetic OVERFLOW test without |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
67 causing an int type overflow, it was moved outside the loop. */ |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
68 |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
69 /* R(x):=ac_v[-k+x] |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
70 v += R(n-i)*ff_acelp_interp_filter(t+6i) |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
71 v += R(n+i+1)*ff_acelp_interp_filter(6-t+6i) */ |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
72 |
7649 | 73 v += in[n + i] * filter_coeffs[idx + frac_pos]; |
6856
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
74 idx += precision; |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
75 i++; |
7649 | 76 v += in[n - i] * filter_coeffs[idx - frac_pos]; |
6856
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
77 } |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
78 out[n] = av_clip_int16(v >> 15); |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
79 } |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
80 } |
94465a2c3b34
Move pitch vector interpolation code to acelp_filters
voroshil
parents:
6775
diff
changeset
|
81 |
6772 | 82 void ff_acelp_convolve_circ( |
83 int16_t* fc_out, | |
84 const int16_t* fc_in, | |
85 const int16_t* filter, | |
7650
1e4ae5de68a4
Rename subframe_size to a name that is not specific to some specific use
michael
parents:
7649
diff
changeset
|
86 int len) |
6772 | 87 { |
88 int i, k; | |
89 | |
7650
1e4ae5de68a4
Rename subframe_size to a name that is not specific to some specific use
michael
parents:
7649
diff
changeset
|
90 memset(fc_out, 0, len * sizeof(int16_t)); |
6772 | 91 |
6775
1f02f929b9ff
Update comment to version, negotiated with Diego, and
voroshil
parents:
6772
diff
changeset
|
92 /* Since there are few pulses over an entire subframe (i.e. almost |
7641
73f5625538d3
Document code, do not document difference to a irrelevant reference implementation.
michael
parents:
7640
diff
changeset
|
93 all fc_in[i] are zero) it is faster to loop over fc_in first. */ |
7650
1e4ae5de68a4
Rename subframe_size to a name that is not specific to some specific use
michael
parents:
7649
diff
changeset
|
94 for(i=0; i<len; i++) |
6772 | 95 { |
96 if(fc_in[i]) | |
97 { | |
98 for(k=0; k<i; k++) | |
7650
1e4ae5de68a4
Rename subframe_size to a name that is not specific to some specific use
michael
parents:
7649
diff
changeset
|
99 fc_out[k] += (fc_in[i] * filter[len + k - i]) >> 15; |
6772 | 100 |
7650
1e4ae5de68a4
Rename subframe_size to a name that is not specific to some specific use
michael
parents:
7649
diff
changeset
|
101 for(k=i; k<len; k++) |
7652 | 102 fc_out[k] += (fc_in[i] * filter[ k - i]) >> 15; |
6772 | 103 } |
104 } | |
105 } | |
106 | |
107 int ff_acelp_lp_synthesis_filter( | |
108 int16_t *out, | |
109 const int16_t* filter_coeffs, | |
110 const int16_t* in, | |
111 int buffer_length, | |
112 int filter_length, | |
7161
2b763a495c07
Add a rounding parameter to ff_acelp_lp_synthesis_filter()
vitor
parents:
6856
diff
changeset
|
113 int stop_on_overflow, |
2b763a495c07
Add a rounding parameter to ff_acelp_lp_synthesis_filter()
vitor
parents:
6856
diff
changeset
|
114 int rounder) |
6772 | 115 { |
116 int i,n; | |
117 | |
7211 | 118 // These two lines are to avoid a -1 subtraction in the main loop |
7164
3c7f3265f970
Make ff_acelp_lp_synthesis_filter() receives a pointer to the actual filter coefficients and not the pointer minus one
vitor
parents:
7161
diff
changeset
|
119 filter_length++; |
3c7f3265f970
Make ff_acelp_lp_synthesis_filter() receives a pointer to the actual filter coefficients and not the pointer minus one
vitor
parents:
7161
diff
changeset
|
120 filter_coeffs--; |
3c7f3265f970
Make ff_acelp_lp_synthesis_filter() receives a pointer to the actual filter coefficients and not the pointer minus one
vitor
parents:
7161
diff
changeset
|
121 |
6772 | 122 for(n=0; n<buffer_length; n++) |
123 { | |
7161
2b763a495c07
Add a rounding parameter to ff_acelp_lp_synthesis_filter()
vitor
parents:
6856
diff
changeset
|
124 int sum = rounder; |
6772 | 125 for(i=1; i<filter_length; i++) |
126 sum -= filter_coeffs[i] * out[n-i]; | |
127 | |
128 sum = (sum >> 12) + in[n]; | |
129 | |
130 if(sum + 0x8000 > 0xFFFFU) | |
131 { | |
132 if(stop_on_overflow) | |
133 return 1; | |
134 sum = (sum >> 31) ^ 32767; | |
135 } | |
136 out[n] = sum; | |
137 } | |
138 | |
139 return 0; | |
140 } | |
141 | |
142 void ff_acelp_high_pass_filter( | |
143 int16_t* out, | |
144 int hpf_f[2], | |
145 const int16_t* in, | |
146 int length) | |
147 { | |
148 int i; | |
149 int tmp; | |
150 | |
151 for(i=0; i<length; i++) | |
152 { | |
7653 | 153 tmp = (hpf_f[0]* 15836LL)>>13; /* (14.13) = (13.13) * (1.13) */ |
154 tmp += (hpf_f[1]* -7667LL)>>13; /* (13.13) = (13.13) * (0.13) */ | |
6772 | 155 tmp += 7699 * (in[i] - 2*in[i-1] + in[i-2]); /* (14.13) = (0.13) * (14.0) */ |
156 | |
157 out[i] = av_clip_int16((tmp + 0x800) >> 12); /* (15.0) = 2 * (13.13) = (14.13) */ | |
158 | |
159 hpf_f[1] = hpf_f[0]; | |
160 hpf_f[0] = tmp; | |
161 } | |
162 } |