Mercurial > libavcodec.hg
annotate nellymoserdec.c @ 6672:79984fdb1203 libavcodec
Allow bitrates zero and 13200 (needed for decoding mov and aiff)
author | mbardiaux |
---|---|
date | Fri, 25 Apr 2008 13:05:15 +0000 |
parents | ee769fedd9ec |
children | a4104482ceef |
rev | line source |
---|---|
5823 | 1 /* |
2 * NellyMoser audio decoder | |
3 * Copyright (c) 2007 a840bda5870ba11f19698ff6eb9581dfb0f95fa5, | |
4 * 539459aeb7d425140b62a3ec7dbf6dc8e408a306, and | |
5 * 520e17cd55896441042b14df2566a6eb610ed444 | |
6 * Copyright (c) 2007 Loic Minier <lool at dooz.org> | |
7 * Benjamin Larsson | |
8 * | |
9 * Permission is hereby granted, free of charge, to any person obtaining a | |
10 * copy of this software and associated documentation files (the "Software"), | |
11 * to deal in the Software without restriction, including without limitation | |
12 * the rights to use, copy, modify, merge, publish, distribute, sublicense, | |
13 * and/or sell copies of the Software, and to permit persons to whom the | |
14 * Software is furnished to do so, subject to the following conditions: | |
15 * | |
16 * The above copyright notice and this permission notice shall be included in | |
17 * all copies or substantial portions of the Software. | |
18 * | |
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | |
22 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
23 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | |
24 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | |
25 * DEALINGS IN THE SOFTWARE. | |
26 */ | |
27 | |
28 /** | |
29 * @file nellymoserdec.c | |
30 * The 3 alphanumeric copyright notices are md5summed they are from the original | |
31 * implementors. The original code is available from http://code.google.com/p/nelly2pcm/ | |
32 */ | |
33 #include "avcodec.h" | |
34 #include "random.h" | |
35 #include "dsputil.h" | |
36 | |
37 #define ALT_BITSTREAM_READER_LE | |
38 #include "bitstream.h" | |
39 | |
40 #define NELLY_BANDS 23 | |
41 #define NELLY_BLOCK_LEN 64 | |
42 #define NELLY_HEADER_BITS 116 | |
43 #define NELLY_DETAIL_BITS 198 | |
44 #define NELLY_BUF_LEN 128 | |
45 #define NELLY_FILL_LEN 124 | |
46 #define NELLY_BIT_CAP 6 | |
47 #define NELLY_BASE_OFF 4228 | |
48 #define NELLY_BASE_SHIFT 19 | |
5869
a03b4172939c
Use the ffmpeg mdct function, patch by Fabrice Bellard. Thread: [FFmpeg-devel] NellyMoser transform bug, 10/25/2007 12:24 PM
banan
parents:
5838
diff
changeset
|
49 #define NELLY_SAMPLES (2 * NELLY_BUF_LEN) |
5823 | 50 |
51 static const float dequantization_table[127] = { | |
52 0.0000000000,-0.8472560048, 0.7224709988, -1.5247479677, -0.4531480074, 0.3753609955, 1.4717899561, | |
53 -1.9822579622, -1.1929379702, -0.5829370022, -0.0693780035, 0.3909569979,0.9069200158, 1.4862740040, | |
54 2.2215409279, -2.3887870312, -1.8067539930, -1.4105420113, -1.0773609877, -0.7995010018,-0.5558109879, | |
55 -0.3334020078, -0.1324490011, 0.0568020009, 0.2548770010, 0.4773550034, 0.7386850119, 1.0443060398, | |
56 1.3954459429, 1.8098750114, 2.3918759823,-2.3893830776, -1.9884680510, -1.7514040470, -1.5643119812, | |
57 -1.3922129869,-1.2164649963, -1.0469499826, -0.8905100226, -0.7645580173, -0.6454579830, -0.5259280205, | |
58 -0.4059549868, -0.3029719889, -0.2096900046, -0.1239869967, -0.0479229987, 0.0257730000, 0.1001340002, | |
59 0.1737180054, 0.2585540116, 0.3522900045, 0.4569880068, 0.5767750144, 0.7003160119, 0.8425520062, | |
60 1.0093879700, 1.1821349859, 1.3534560204, 1.5320819616, 1.7332619429, 1.9722349644, 2.3978140354, | |
61 -2.5756309032, -2.0573320389, -1.8984919786, -1.7727810144, -1.6662600040, -1.5742180347, -1.4993319511, | |
62 -1.4316639900, -1.3652280569, -1.3000990152, -1.2280930281, -1.1588579416, -1.0921250582, -1.0135740042, | |
63 -0.9202849865, -0.8287050128, -0.7374889851, -0.6447759867, -0.5590940118, -0.4857139885, -0.4110319912, | |
64 -0.3459700048, -0.2851159871, -0.2341620028, -0.1870580018, -0.1442500055, -0.1107169986, -0.0739680007, | |
65 -0.0365610011, -0.0073290002, 0.0203610007, 0.0479039997, 0.0751969963, 0.0980999991, 0.1220389977, | |
66 0.1458999962, 0.1694349945, 0.1970459968, 0.2252430022, 0.2556869984, 0.2870100141, 0.3197099864, | |
67 0.3525829911, 0.3889069855, 0.4334920049, 0.4769459963, 0.5204820037, 0.5644530058, 0.6122040153, | |
68 0.6685929894, 0.7341650128, 0.8032159805, 0.8784040213, 0.9566209912, 1.0397069454, 1.1293770075, | |
69 1.2211159468, 1.3080279827, 1.4024800062, 1.5056819916, 1.6227730513, 1.7724959850, 1.9430880547, | |
70 2.2903931141 | |
71 }; | |
72 | |
73 static const uint8_t nelly_band_sizes_table[NELLY_BANDS] = { | |
74 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 4, 4, 5, 6, 6, 7, 8, 9, 10, 12, 14, 15 | |
75 }; | |
76 | |
77 static const uint16_t nelly_init_table[64] = { | |
78 3134, 5342, 6870, 7792, 8569, 9185, 9744, 10191, 10631, 11061, 11434, 11770, | |
79 12116, 12513, 12925, 13300, 13674, 14027, 14352, 14716, 15117, 15477, 15824, | |
80 16157, 16513, 16804, 17090, 17401, 17679, 17948, 18238, 18520, 18764, 19078, | |
81 19381, 19640, 19921, 20205, 20500, 20813, 21162, 21465, 21794, 22137, 22453, | |
82 22756, 23067, 23350, 23636, 23926, 24227, 24521, 24819, 25107, 25414, 25730, | |
83 26120, 26497, 26895, 27344, 27877, 28463, 29426, 31355 | |
84 }; | |
85 | |
86 static const int16_t nelly_delta_table[32] = { | |
87 -11725, -9420, -7910, -6801, -5948, -5233, -4599, -4039, -3507, -3030, -2596, | |
88 -2170, -1774, -1383, -1016, -660, -329, -1, 337, 696, 1085, 1512, 1962, 2433, | |
89 2968, 3569, 4314, 5279, 6622, 8154, 10076, 12975 | |
90 }; | |
91 | |
92 typedef struct NellyMoserDecodeContext { | |
93 AVCodecContext* avctx; | |
5838 | 94 DECLARE_ALIGNED_16(float,float_buf[NELLY_SAMPLES]); |
6611
79c5af90afde
Avoid reverse addressing, not sure if this is faster or slower but people
michael
parents:
6610
diff
changeset
|
95 float state[128]; |
5823 | 96 AVRandomState random_state; |
97 GetBitContext gb; | |
98 int add_bias; | |
6613
54f88d1cee72
Move scale_bias to a more sane place. I am starting to wonder how this
michael
parents:
6612
diff
changeset
|
99 float scale_bias; |
5823 | 100 DSPContext dsp; |
5869
a03b4172939c
Use the ffmpeg mdct function, patch by Fabrice Bellard. Thread: [FFmpeg-devel] NellyMoser transform bug, 10/25/2007 12:24 PM
banan
parents:
5838
diff
changeset
|
101 MDCTContext imdct_ctx; |
a03b4172939c
Use the ffmpeg mdct function, patch by Fabrice Bellard. Thread: [FFmpeg-devel] NellyMoser transform bug, 10/25/2007 12:24 PM
banan
parents:
5838
diff
changeset
|
102 DECLARE_ALIGNED_16(float,imdct_tmp[NELLY_BUF_LEN]); |
a03b4172939c
Use the ffmpeg mdct function, patch by Fabrice Bellard. Thread: [FFmpeg-devel] NellyMoser transform bug, 10/25/2007 12:24 PM
banan
parents:
5838
diff
changeset
|
103 DECLARE_ALIGNED_16(float,imdct_out[NELLY_BUF_LEN * 2]); |
5823 | 104 } NellyMoserDecodeContext; |
105 | |
5916 | 106 static DECLARE_ALIGNED_16(float,sine_window[128]); |
5823 | 107 |
108 static inline int signed_shift(int i, int shift) { | |
109 if (shift > 0) | |
110 return i << shift; | |
111 return i >> -shift; | |
112 } | |
113 | |
6605 | 114 |
115 static void overlap_and_window(NellyMoserDecodeContext *s, float *state, float *audio, float *a_in) | |
5823 | 116 { |
6616 | 117 int bot, top; |
5823 | 118 |
119 bot = 0; | |
120 top = NELLY_BUF_LEN-1; | |
121 | |
6612 | 122 while (bot < NELLY_BUF_LEN) { |
6615 | 123 audio[bot] = a_in [bot]*sine_window[bot] |
124 +state[bot]*sine_window[top] + s->add_bias; | |
5823 | 125 |
126 bot++; | |
127 top--; | |
128 } | |
6611
79c5af90afde
Avoid reverse addressing, not sure if this is faster or slower but people
michael
parents:
6610
diff
changeset
|
129 memcpy(state, a_in + NELLY_BUF_LEN, sizeof(float)*NELLY_BUF_LEN); |
5823 | 130 } |
131 | |
132 static int sum_bits(short *buf, short shift, short off) | |
133 { | |
134 int b, i = 0, ret = 0; | |
135 | |
136 for (i = 0; i < NELLY_FILL_LEN; i++) { | |
137 b = buf[i]-off; | |
138 b = ((b>>(shift-1))+1)>>1; | |
139 ret += av_clip(b, 0, NELLY_BIT_CAP); | |
140 } | |
141 | |
142 return ret; | |
143 } | |
144 | |
145 static int headroom(int *la) | |
146 { | |
147 int l; | |
148 if (*la == 0) { | |
149 return 31; | |
150 } | |
151 l = 30 - av_log2(FFABS(*la)); | |
152 *la <<= l; | |
153 return l; | |
154 } | |
155 | |
156 | |
5869
a03b4172939c
Use the ffmpeg mdct function, patch by Fabrice Bellard. Thread: [FFmpeg-devel] NellyMoser transform bug, 10/25/2007 12:24 PM
banan
parents:
5838
diff
changeset
|
157 static void get_sample_bits(const float *buf, int *bits) |
5823 | 158 { |
159 int i, j; | |
160 short sbuf[128]; | |
161 int bitsum = 0, last_bitsum, small_bitsum, big_bitsum; | |
162 short shift, shift_saved; | |
163 int max, sum, last_off, tmp; | |
164 int big_off, small_off; | |
165 int off; | |
166 | |
167 max = 0; | |
168 for (i = 0; i < NELLY_FILL_LEN; i++) { | |
169 max = FFMAX(max, buf[i]); | |
170 } | |
171 shift = -16; | |
172 shift += headroom(&max); | |
173 | |
174 sum = 0; | |
175 for (i = 0; i < NELLY_FILL_LEN; i++) { | |
176 sbuf[i] = signed_shift(buf[i], shift); | |
177 sbuf[i] = (3*sbuf[i])>>2; | |
178 sum += sbuf[i]; | |
179 } | |
180 | |
181 shift += 11; | |
182 shift_saved = shift; | |
183 sum -= NELLY_DETAIL_BITS << shift; | |
184 shift += headroom(&sum); | |
185 small_off = (NELLY_BASE_OFF * (sum>>16)) >> 15; | |
186 shift = shift_saved - (NELLY_BASE_SHIFT+shift-31); | |
187 | |
188 small_off = signed_shift(small_off, shift); | |
189 | |
190 bitsum = sum_bits(sbuf, shift_saved, small_off); | |
191 | |
192 if (bitsum != NELLY_DETAIL_BITS) { | |
193 shift = 0; | |
194 off = bitsum - NELLY_DETAIL_BITS; | |
195 | |
196 for(shift=0; FFABS(off) <= 16383; shift++) | |
197 off *= 2; | |
198 | |
199 off = (off * NELLY_BASE_OFF) >> 15; | |
200 shift = shift_saved-(NELLY_BASE_SHIFT+shift-15); | |
201 | |
202 off = signed_shift(off, shift); | |
203 | |
204 for (j = 1; j < 20; j++) { | |
205 last_off = small_off; | |
206 small_off += off; | |
207 last_bitsum = bitsum; | |
208 | |
209 bitsum = sum_bits(sbuf, shift_saved, small_off); | |
210 | |
211 if ((bitsum-NELLY_DETAIL_BITS) * (last_bitsum-NELLY_DETAIL_BITS) <= 0) | |
212 break; | |
213 } | |
214 | |
215 if (bitsum > NELLY_DETAIL_BITS) { | |
216 big_off = small_off; | |
217 small_off = last_off; | |
218 big_bitsum=bitsum; | |
219 small_bitsum=last_bitsum; | |
220 } else { | |
221 big_off = last_off; | |
222 big_bitsum=last_bitsum; | |
223 small_bitsum=bitsum; | |
224 } | |
225 | |
226 while (bitsum != NELLY_DETAIL_BITS && j <= 19) { | |
227 off = (big_off+small_off)>>1; | |
228 bitsum = sum_bits(sbuf, shift_saved, off); | |
229 if (bitsum > NELLY_DETAIL_BITS) { | |
230 big_off=off; | |
231 big_bitsum=bitsum; | |
232 } else { | |
233 small_off = off; | |
234 small_bitsum=bitsum; | |
235 } | |
236 j++; | |
237 } | |
238 | |
239 if (abs(big_bitsum-NELLY_DETAIL_BITS) >= | |
240 abs(small_bitsum-NELLY_DETAIL_BITS)) { | |
241 bitsum = small_bitsum; | |
242 } else { | |
243 small_off = big_off; | |
244 bitsum = big_bitsum; | |
245 } | |
246 } | |
247 | |
248 for (i = 0; i < NELLY_FILL_LEN; i++) { | |
249 tmp = sbuf[i]-small_off; | |
250 tmp = ((tmp>>(shift_saved-1))+1)>>1; | |
251 bits[i] = av_clip(tmp, 0, NELLY_BIT_CAP); | |
252 } | |
253 | |
254 if (bitsum > NELLY_DETAIL_BITS) { | |
255 tmp = i = 0; | |
256 while (tmp < NELLY_DETAIL_BITS) { | |
257 tmp += bits[i]; | |
258 i++; | |
259 } | |
260 | |
261 bits[i-1] -= tmp - NELLY_DETAIL_BITS; | |
262 for(; i < NELLY_FILL_LEN; i++) | |
263 bits[i] = 0; | |
264 } | |
265 } | |
266 | |
6218 | 267 void nelly_decode_block(NellyMoserDecodeContext *s, const unsigned char block[NELLY_BLOCK_LEN], float audio[NELLY_SAMPLES]) |
5823 | 268 { |
269 int i,j; | |
5869
a03b4172939c
Use the ffmpeg mdct function, patch by Fabrice Bellard. Thread: [FFmpeg-devel] NellyMoser transform bug, 10/25/2007 12:24 PM
banan
parents:
5838
diff
changeset
|
270 float buf[NELLY_FILL_LEN], pows[NELLY_FILL_LEN]; |
5823 | 271 float *aptr, *bptr, *pptr, val, pval; |
272 int bits[NELLY_BUF_LEN]; | |
273 unsigned char v; | |
274 | |
275 init_get_bits(&s->gb, block, NELLY_BLOCK_LEN * 8); | |
276 | |
277 bptr = buf; | |
278 pptr = pows; | |
279 val = nelly_init_table[get_bits(&s->gb, 6)]; | |
280 for (i=0 ; i<NELLY_BANDS ; i++) { | |
281 if (i > 0) | |
282 val += nelly_delta_table[get_bits(&s->gb, 5)]; | |
6614 | 283 pval = -pow(2, val/2048) * s->scale_bias; |
5823 | 284 for (j = 0; j < nelly_band_sizes_table[i]; j++) { |
285 *bptr++ = val; | |
286 *pptr++ = pval; | |
287 } | |
288 | |
289 } | |
290 | |
291 get_sample_bits(buf, bits); | |
292 | |
293 for (i = 0; i < 2; i++) { | |
5869
a03b4172939c
Use the ffmpeg mdct function, patch by Fabrice Bellard. Thread: [FFmpeg-devel] NellyMoser transform bug, 10/25/2007 12:24 PM
banan
parents:
5838
diff
changeset
|
294 aptr = audio + i * NELLY_BUF_LEN; |
a03b4172939c
Use the ffmpeg mdct function, patch by Fabrice Bellard. Thread: [FFmpeg-devel] NellyMoser transform bug, 10/25/2007 12:24 PM
banan
parents:
5838
diff
changeset
|
295 |
5823 | 296 init_get_bits(&s->gb, block, NELLY_BLOCK_LEN * 8); |
297 skip_bits(&s->gb, NELLY_HEADER_BITS + i*NELLY_DETAIL_BITS); | |
298 | |
299 for (j = 0; j < NELLY_FILL_LEN; j++) { | |
300 if (bits[j] <= 0) { | |
5869
a03b4172939c
Use the ffmpeg mdct function, patch by Fabrice Bellard. Thread: [FFmpeg-devel] NellyMoser transform bug, 10/25/2007 12:24 PM
banan
parents:
5838
diff
changeset
|
301 aptr[j] = M_SQRT1_2*pows[j]; |
6614 | 302 if (av_random(&s->random_state) & 1) |
5869
a03b4172939c
Use the ffmpeg mdct function, patch by Fabrice Bellard. Thread: [FFmpeg-devel] NellyMoser transform bug, 10/25/2007 12:24 PM
banan
parents:
5838
diff
changeset
|
303 aptr[j] *= -1.0; |
5823 | 304 } else { |
305 v = get_bits(&s->gb, bits[j]); | |
6614 | 306 aptr[j] = dequantization_table[(1<<bits[j])-1+v]*pows[j]; |
5823 | 307 } |
308 } | |
5869
a03b4172939c
Use the ffmpeg mdct function, patch by Fabrice Bellard. Thread: [FFmpeg-devel] NellyMoser transform bug, 10/25/2007 12:24 PM
banan
parents:
5838
diff
changeset
|
309 memset(&aptr[NELLY_FILL_LEN], 0, |
a03b4172939c
Use the ffmpeg mdct function, patch by Fabrice Bellard. Thread: [FFmpeg-devel] NellyMoser transform bug, 10/25/2007 12:24 PM
banan
parents:
5838
diff
changeset
|
310 (NELLY_BUF_LEN - NELLY_FILL_LEN) * sizeof(float)); |
5823 | 311 |
5869
a03b4172939c
Use the ffmpeg mdct function, patch by Fabrice Bellard. Thread: [FFmpeg-devel] NellyMoser transform bug, 10/25/2007 12:24 PM
banan
parents:
5838
diff
changeset
|
312 s->imdct_ctx.fft.imdct_calc(&s->imdct_ctx, s->imdct_out, |
a03b4172939c
Use the ffmpeg mdct function, patch by Fabrice Bellard. Thread: [FFmpeg-devel] NellyMoser transform bug, 10/25/2007 12:24 PM
banan
parents:
5838
diff
changeset
|
313 aptr, s->imdct_tmp); |
a03b4172939c
Use the ffmpeg mdct function, patch by Fabrice Bellard. Thread: [FFmpeg-devel] NellyMoser transform bug, 10/25/2007 12:24 PM
banan
parents:
5838
diff
changeset
|
314 /* XXX: overlapping and windowing should be part of a more |
a03b4172939c
Use the ffmpeg mdct function, patch by Fabrice Bellard. Thread: [FFmpeg-devel] NellyMoser transform bug, 10/25/2007 12:24 PM
banan
parents:
5838
diff
changeset
|
315 generic imdct function */ |
6605 | 316 overlap_and_window(s, s->state, aptr, s->imdct_out); |
5823 | 317 } |
318 } | |
319 | |
6517
48759bfbd073
Apply 'cold' attribute to init/uninit functions in libavcodec
zuxy
parents:
6218
diff
changeset
|
320 static av_cold int decode_init(AVCodecContext * avctx) { |
5823 | 321 NellyMoserDecodeContext *s = avctx->priv_data; |
322 int i; | |
323 | |
324 s->avctx = avctx; | |
325 av_init_random(0, &s->random_state); | |
5869
a03b4172939c
Use the ffmpeg mdct function, patch by Fabrice Bellard. Thread: [FFmpeg-devel] NellyMoser transform bug, 10/25/2007 12:24 PM
banan
parents:
5838
diff
changeset
|
326 ff_mdct_init(&s->imdct_ctx, 8, 1); |
a03b4172939c
Use the ffmpeg mdct function, patch by Fabrice Bellard. Thread: [FFmpeg-devel] NellyMoser transform bug, 10/25/2007 12:24 PM
banan
parents:
5838
diff
changeset
|
327 |
5823 | 328 dsputil_init(&s->dsp, avctx); |
329 | |
330 if(s->dsp.float_to_int16 == ff_float_to_int16_c) { | |
331 s->add_bias = 385; | |
6613
54f88d1cee72
Move scale_bias to a more sane place. I am starting to wonder how this
michael
parents:
6612
diff
changeset
|
332 s->scale_bias = 1.0/(8*32768); |
5823 | 333 } else { |
334 s->add_bias = 0; | |
6613
54f88d1cee72
Move scale_bias to a more sane place. I am starting to wonder how this
michael
parents:
6612
diff
changeset
|
335 s->scale_bias = 1.0/(1*8); |
5823 | 336 } |
337 | |
338 /* Generate overlap window */ | |
339 if (!sine_window[0]) | |
340 for (i=0 ; i<128; i++) { | |
341 sine_window[i] = sin((i + 0.5) / 256.0 * M_PI); | |
342 } | |
343 | |
344 return 0; | |
345 } | |
346 | |
347 static int decode_tag(AVCodecContext * avctx, | |
348 void *data, int *data_size, | |
6218 | 349 const uint8_t * buf, int buf_size) { |
5823 | 350 NellyMoserDecodeContext *s = avctx->priv_data; |
351 int blocks, i; | |
352 int16_t* samples; | |
353 *data_size = 0; | |
354 samples = (int16_t*)data; | |
355 | |
356 if (buf_size < avctx->block_align) | |
357 return buf_size; | |
358 | |
359 switch (buf_size) { | |
360 case 64: // 8000Hz | |
361 blocks = 1; break; | |
362 case 128: // 11025Hz | |
363 blocks = 2; break; | |
364 case 256: // 22050Hz | |
365 blocks = 4; break; | |
5918 | 366 case 512: // 44100Hz |
367 blocks = 8; break; | |
5823 | 368 default: |
5917
282860fe5844
Change the "report sample" message from AV_LOG_DEBUG to AV_LOG_ERROR.
alex
parents:
5916
diff
changeset
|
369 av_log(avctx, AV_LOG_ERROR, "Tag size %d unknown, report sample!\n", buf_size); |
5823 | 370 return buf_size; |
371 } | |
372 | |
373 for (i=0 ; i<blocks ; i++) { | |
374 nelly_decode_block(s, &buf[i*NELLY_BLOCK_LEN], s->float_buf); | |
375 s->dsp.float_to_int16(&samples[i*NELLY_SAMPLES], s->float_buf, NELLY_SAMPLES); | |
376 *data_size += NELLY_SAMPLES*sizeof(int16_t); | |
377 } | |
378 | |
5915
4528d63fbc8e
Fix nellymoser decode_tag return value, patch by Stefano Sabatini
banan
parents:
5874
diff
changeset
|
379 return buf_size; |
5823 | 380 } |
381 | |
6517
48759bfbd073
Apply 'cold' attribute to init/uninit functions in libavcodec
zuxy
parents:
6218
diff
changeset
|
382 static av_cold int decode_end(AVCodecContext * avctx) { |
5823 | 383 NellyMoserDecodeContext *s = avctx->priv_data; |
384 | |
5869
a03b4172939c
Use the ffmpeg mdct function, patch by Fabrice Bellard. Thread: [FFmpeg-devel] NellyMoser transform bug, 10/25/2007 12:24 PM
banan
parents:
5838
diff
changeset
|
385 ff_mdct_end(&s->imdct_ctx); |
5823 | 386 return 0; |
387 } | |
388 | |
389 AVCodec nellymoser_decoder = { | |
390 "nellymoser", | |
391 CODEC_TYPE_AUDIO, | |
392 CODEC_ID_NELLYMOSER, | |
393 sizeof(NellyMoserDecodeContext), | |
394 decode_init, | |
395 NULL, | |
396 decode_end, | |
397 decode_tag, | |
398 }; | |
399 |