]> git.sesse.net Git - ffmpeg/blob - libavcodec/adpcm.c
avcodec/adpcm_ima_apm: cosmetics
[ffmpeg] / libavcodec / adpcm.c
1 /*
2  * Copyright (c) 2001-2003 The FFmpeg project
3  *
4  * first version by Francois Revol (revol@free.fr)
5  * fringe ADPCM codecs (e.g., DK3, DK4, Westwood)
6  *   by Mike Melanson (melanson@pcisys.net)
7  * CD-ROM XA ADPCM codec by BERO
8  * EA ADPCM decoder by Robin Kay (komadori@myrealbox.com)
9  * EA ADPCM R1/R2/R3 decoder by Peter Ross (pross@xvid.org)
10  * EA IMA EACS decoder by Peter Ross (pross@xvid.org)
11  * EA IMA SEAD decoder by Peter Ross (pross@xvid.org)
12  * EA ADPCM XAS decoder by Peter Ross (pross@xvid.org)
13  * MAXIS EA ADPCM decoder by Robert Marston (rmarston@gmail.com)
14  * THP ADPCM decoder by Marco Gerards (mgerards@xs4all.nl)
15  * Argonaut Games ADPCM decoder by Zane van Iperen (zane@zanevaniperen.com)
16  * Simon & Schuster Interactive ADPCM decoder by Zane van Iperen (zane@zanevaniperen.com)
17  * Ubisoft ADPCM decoder by Zane van Iperen (zane@zanevaniperen.com)
18  * High Voltage Software ALP decoder by Zane van Iperen (zane@zanevaniperen.com)
19  * Cunning Developments decoder by Zane van Iperen (zane@zanevaniperen.com)
20  *
21  * This file is part of FFmpeg.
22  *
23  * FFmpeg is free software; you can redistribute it and/or
24  * modify it under the terms of the GNU Lesser General Public
25  * License as published by the Free Software Foundation; either
26  * version 2.1 of the License, or (at your option) any later version.
27  *
28  * FFmpeg is distributed in the hope that it will be useful,
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
31  * Lesser General Public License for more details.
32  *
33  * You should have received a copy of the GNU Lesser General Public
34  * License along with FFmpeg; if not, write to the Free Software
35  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
36  */
37 #include "avcodec.h"
38 #include "get_bits.h"
39 #include "bytestream.h"
40 #include "adpcm.h"
41 #include "adpcm_data.h"
42 #include "internal.h"
43
44 /**
45  * @file
46  * ADPCM decoders
47  * Features and limitations:
48  *
49  * Reference documents:
50  * http://wiki.multimedia.cx/index.php?title=Category:ADPCM_Audio_Codecs
51  * http://www.pcisys.net/~melanson/codecs/simpleaudio.html [dead]
52  * http://www.geocities.com/SiliconValley/8682/aud3.txt [dead]
53  * http://openquicktime.sourceforge.net/
54  * XAnim sources (xa_codec.c) http://xanim.polter.net/
55  * http://www.cs.ucla.edu/~leec/mediabench/applications.html [dead]
56  * SoX source code http://sox.sourceforge.net/
57  *
58  * CD-ROM XA:
59  * http://ku-www.ss.titech.ac.jp/~yatsushi/xaadpcm.html [dead]
60  * vagpack & depack http://homepages.compuserve.de/bITmASTER32/psx-index.html [dead]
61  * readstr http://www.geocities.co.jp/Playtown/2004/
62  */
63
64 /* These are for CD-ROM XA ADPCM */
65 static const int8_t xa_adpcm_table[5][2] = {
66     {   0,   0 },
67     {  60,   0 },
68     { 115, -52 },
69     {  98, -55 },
70     { 122, -60 }
71 };
72
73 static const int16_t ea_adpcm_table[] = {
74     0,  240,  460,  392,
75     0,    0, -208, -220,
76     0,    1,    3,    4,
77     7,    8,   10,   11,
78     0,   -1,   -3,   -4
79 };
80
81 // padded to zero where table size is less then 16
82 static const int8_t swf_index_tables[4][16] = {
83     /*2*/ { -1, 2 },
84     /*3*/ { -1, -1, 2, 4 },
85     /*4*/ { -1, -1, -1, -1, 2, 4, 6, 8 },
86     /*5*/ { -1, -1, -1, -1, -1, -1, -1, -1, 1, 2, 4, 6, 8, 10, 13, 16 }
87 };
88
89 static const int8_t zork_index_table[8] = {
90     -1, -1, -1, 1, 4, 7, 10, 12,
91 };
92
93 static const int8_t mtf_index_table[16] = {
94      8,  6,  4,  2, -1, -1, -1, -1,
95     -1, -1, -1, -1,  2,  4,  6,  8,
96 };
97
98 /* end of tables */
99
100 typedef struct ADPCMDecodeContext {
101     ADPCMChannelStatus status[14];
102     int vqa_version;                /**< VQA version. Used for ADPCM_IMA_WS */
103     int has_status;                 /**< Status flag. Reset to 0 after a flush. */
104 } ADPCMDecodeContext;
105
106 static void adpcm_flush(AVCodecContext *avctx);
107
108 static av_cold int adpcm_decode_init(AVCodecContext * avctx)
109 {
110     ADPCMDecodeContext *c = avctx->priv_data;
111     unsigned int min_channels = 1;
112     unsigned int max_channels = 2;
113
114     adpcm_flush(avctx);
115
116     switch(avctx->codec->id) {
117     case AV_CODEC_ID_ADPCM_IMA_AMV:
118         max_channels = 1;
119         break;
120     case AV_CODEC_ID_ADPCM_DTK:
121     case AV_CODEC_ID_ADPCM_EA:
122         min_channels = 2;
123         break;
124     case AV_CODEC_ID_ADPCM_AFC:
125     case AV_CODEC_ID_ADPCM_EA_R1:
126     case AV_CODEC_ID_ADPCM_EA_R2:
127     case AV_CODEC_ID_ADPCM_EA_R3:
128     case AV_CODEC_ID_ADPCM_EA_XAS:
129     case AV_CODEC_ID_ADPCM_MS:
130         max_channels = 6;
131         break;
132     case AV_CODEC_ID_ADPCM_MTAF:
133         min_channels = 2;
134         max_channels = 8;
135         if (avctx->channels & 1) {
136             avpriv_request_sample(avctx, "channel count %d", avctx->channels);
137             return AVERROR_PATCHWELCOME;
138         }
139         break;
140     case AV_CODEC_ID_ADPCM_PSX:
141         max_channels = 8;
142         if (avctx->channels <= 0 || avctx->block_align % (16 * avctx->channels))
143             return AVERROR_INVALIDDATA;
144         break;
145     case AV_CODEC_ID_ADPCM_IMA_DAT4:
146     case AV_CODEC_ID_ADPCM_THP:
147     case AV_CODEC_ID_ADPCM_THP_LE:
148         max_channels = 14;
149         break;
150     }
151     if (avctx->channels < min_channels || avctx->channels > max_channels) {
152         av_log(avctx, AV_LOG_ERROR, "Invalid number of channels\n");
153         return AVERROR(EINVAL);
154     }
155
156     switch(avctx->codec->id) {
157     case AV_CODEC_ID_ADPCM_IMA_WAV:
158         if (avctx->bits_per_coded_sample < 2 || avctx->bits_per_coded_sample > 5)
159             return AVERROR_INVALIDDATA;
160         break;
161     case AV_CODEC_ID_ADPCM_ARGO:
162         if (avctx->bits_per_coded_sample != 4 || avctx->block_align != 17 * avctx->channels)
163             return AVERROR_INVALIDDATA;
164         break;
165     case AV_CODEC_ID_ADPCM_ZORK:
166         if (avctx->bits_per_coded_sample != 8)
167             return AVERROR_INVALIDDATA;
168         break;
169     default:
170         break;
171     }
172
173     switch (avctx->codec->id) {
174     case AV_CODEC_ID_ADPCM_AICA:
175     case AV_CODEC_ID_ADPCM_IMA_CUNNING:
176     case AV_CODEC_ID_ADPCM_IMA_DAT4:
177     case AV_CODEC_ID_ADPCM_IMA_QT:
178     case AV_CODEC_ID_ADPCM_IMA_WAV:
179     case AV_CODEC_ID_ADPCM_4XM:
180     case AV_CODEC_ID_ADPCM_XA:
181     case AV_CODEC_ID_ADPCM_EA_R1:
182     case AV_CODEC_ID_ADPCM_EA_R2:
183     case AV_CODEC_ID_ADPCM_EA_R3:
184     case AV_CODEC_ID_ADPCM_EA_XAS:
185     case AV_CODEC_ID_ADPCM_THP:
186     case AV_CODEC_ID_ADPCM_THP_LE:
187     case AV_CODEC_ID_ADPCM_AFC:
188     case AV_CODEC_ID_ADPCM_DTK:
189     case AV_CODEC_ID_ADPCM_PSX:
190     case AV_CODEC_ID_ADPCM_MTAF:
191     case AV_CODEC_ID_ADPCM_ARGO:
192     case AV_CODEC_ID_ADPCM_IMA_MOFLEX:
193         avctx->sample_fmt = AV_SAMPLE_FMT_S16P;
194         break;
195     case AV_CODEC_ID_ADPCM_IMA_WS:
196         avctx->sample_fmt = c->vqa_version == 3 ? AV_SAMPLE_FMT_S16P :
197                                                   AV_SAMPLE_FMT_S16;
198         break;
199     case AV_CODEC_ID_ADPCM_MS:
200         avctx->sample_fmt = avctx->channels > 2 ? AV_SAMPLE_FMT_S16P :
201                                                   AV_SAMPLE_FMT_S16;
202         break;
203     default:
204         avctx->sample_fmt = AV_SAMPLE_FMT_S16;
205     }
206     return 0;
207 }
208
209 static inline int16_t adpcm_agm_expand_nibble(ADPCMChannelStatus *c, int8_t nibble)
210 {
211     int delta, pred, step, add;
212
213     pred = c->predictor;
214     delta = nibble & 7;
215     step = c->step;
216     add = (delta * 2 + 1) * step;
217     if (add < 0)
218         add = add + 7;
219
220     if ((nibble & 8) == 0)
221         pred = av_clip(pred + (add >> 3), -32767, 32767);
222     else
223         pred = av_clip(pred - (add >> 3), -32767, 32767);
224
225     switch (delta) {
226     case 7:
227         step *= 0x99;
228         break;
229     case 6:
230         c->step = av_clip(c->step * 2, 127, 24576);
231         c->predictor = pred;
232         return pred;
233     case 5:
234         step *= 0x66;
235         break;
236     case 4:
237         step *= 0x4d;
238         break;
239     default:
240         step *= 0x39;
241         break;
242     }
243
244     if (step < 0)
245         step += 0x3f;
246
247     c->step = step >> 6;
248     c->step = av_clip(c->step, 127, 24576);
249     c->predictor = pred;
250     return pred;
251 }
252
253 static inline int16_t adpcm_ima_expand_nibble(ADPCMChannelStatus *c, int8_t nibble, int shift)
254 {
255     int step_index;
256     int predictor;
257     int sign, delta, diff, step;
258
259     step = ff_adpcm_step_table[c->step_index];
260     step_index = c->step_index + ff_adpcm_index_table[(unsigned)nibble];
261     step_index = av_clip(step_index, 0, 88);
262
263     sign = nibble & 8;
264     delta = nibble & 7;
265     /* perform direct multiplication instead of series of jumps proposed by
266      * the reference ADPCM implementation since modern CPUs can do the mults
267      * quickly enough */
268     diff = ((2 * delta + 1) * step) >> shift;
269     predictor = c->predictor;
270     if (sign) predictor -= diff;
271     else predictor += diff;
272
273     c->predictor = av_clip_int16(predictor);
274     c->step_index = step_index;
275
276     return (int16_t)c->predictor;
277 }
278
279 static inline int16_t adpcm_ima_alp_expand_nibble(ADPCMChannelStatus *c, int8_t nibble, int shift)
280 {
281     int step_index;
282     int predictor;
283     int sign, delta, diff, step;
284
285     step = ff_adpcm_step_table[c->step_index];
286     step_index = c->step_index + ff_adpcm_index_table[(unsigned)nibble];
287     step_index = av_clip(step_index, 0, 88);
288
289     sign = nibble & 8;
290     delta = nibble & 7;
291     diff = (delta * step) >> shift;
292     predictor = c->predictor;
293     if (sign) predictor -= diff;
294     else predictor += diff;
295
296     c->predictor = av_clip_int16(predictor);
297     c->step_index = step_index;
298
299     return (int16_t)c->predictor;
300 }
301
302 static inline int16_t adpcm_ima_mtf_expand_nibble(ADPCMChannelStatus *c, int nibble)
303 {
304     int step_index, step, delta, predictor;
305
306     step = ff_adpcm_step_table[c->step_index];
307
308     delta = step * (2 * nibble - 15);
309     predictor = c->predictor + delta;
310
311     step_index = c->step_index + mtf_index_table[(unsigned)nibble];
312     c->predictor = av_clip_int16(predictor >> 4);
313     c->step_index = av_clip(step_index, 0, 88);
314
315     return (int16_t)c->predictor;
316 }
317
318 static inline int16_t adpcm_ima_cunning_expand_nibble(ADPCMChannelStatus *c, int8_t nibble)
319 {
320     int step_index;
321     int predictor;
322     int step;
323
324     nibble = sign_extend(nibble & 0xF, 4);
325
326     step = ff_adpcm_ima_cunning_step_table[c->step_index];
327     step_index = c->step_index + ff_adpcm_ima_cunning_index_table[abs(nibble)];
328     step_index = av_clip(step_index, 0, 60);
329
330     predictor = c->predictor + step * nibble;
331
332     c->predictor = av_clip_int16(predictor);
333     c->step_index = step_index;
334
335     return c->predictor;
336 }
337
338 static inline int16_t adpcm_ima_wav_expand_nibble(ADPCMChannelStatus *c, GetBitContext *gb, int bps)
339 {
340     int nibble, step_index, predictor, sign, delta, diff, step, shift;
341
342     shift = bps - 1;
343     nibble = get_bits_le(gb, bps),
344     step = ff_adpcm_step_table[c->step_index];
345     step_index = c->step_index + ff_adpcm_index_tables[bps - 2][nibble];
346     step_index = av_clip(step_index, 0, 88);
347
348     sign = nibble & (1 << shift);
349     delta = av_mod_uintp2(nibble, shift);
350     diff = ((2 * delta + 1) * step) >> shift;
351     predictor = c->predictor;
352     if (sign) predictor -= diff;
353     else predictor += diff;
354
355     c->predictor = av_clip_int16(predictor);
356     c->step_index = step_index;
357
358     return (int16_t)c->predictor;
359 }
360
361 static inline int adpcm_ima_qt_expand_nibble(ADPCMChannelStatus *c, int nibble)
362 {
363     int step_index;
364     int predictor;
365     int diff, step;
366
367     step = ff_adpcm_step_table[c->step_index];
368     step_index = c->step_index + ff_adpcm_index_table[nibble];
369     step_index = av_clip(step_index, 0, 88);
370
371     diff = step >> 3;
372     if (nibble & 4) diff += step;
373     if (nibble & 2) diff += step >> 1;
374     if (nibble & 1) diff += step >> 2;
375
376     if (nibble & 8)
377         predictor = c->predictor - diff;
378     else
379         predictor = c->predictor + diff;
380
381     c->predictor = av_clip_int16(predictor);
382     c->step_index = step_index;
383
384     return c->predictor;
385 }
386
387 static inline int16_t adpcm_ms_expand_nibble(ADPCMChannelStatus *c, int nibble)
388 {
389     int predictor;
390
391     predictor = (((c->sample1) * (c->coeff1)) + ((c->sample2) * (c->coeff2))) / 64;
392     predictor += ((nibble & 0x08)?(nibble - 0x10):(nibble)) * c->idelta;
393
394     c->sample2 = c->sample1;
395     c->sample1 = av_clip_int16(predictor);
396     c->idelta = (ff_adpcm_AdaptationTable[(int)nibble] * c->idelta) >> 8;
397     if (c->idelta < 16) c->idelta = 16;
398     if (c->idelta > INT_MAX/768) {
399         av_log(NULL, AV_LOG_WARNING, "idelta overflow\n");
400         c->idelta = INT_MAX/768;
401     }
402
403     return c->sample1;
404 }
405
406 static inline int16_t adpcm_ima_oki_expand_nibble(ADPCMChannelStatus *c, int nibble)
407 {
408     int step_index, predictor, sign, delta, diff, step;
409
410     step = ff_adpcm_oki_step_table[c->step_index];
411     step_index = c->step_index + ff_adpcm_index_table[(unsigned)nibble];
412     step_index = av_clip(step_index, 0, 48);
413
414     sign = nibble & 8;
415     delta = nibble & 7;
416     diff = ((2 * delta + 1) * step) >> 3;
417     predictor = c->predictor;
418     if (sign) predictor -= diff;
419     else predictor += diff;
420
421     c->predictor = av_clip_intp2(predictor, 11);
422     c->step_index = step_index;
423
424     return c->predictor * 16;
425 }
426
427 static inline int16_t adpcm_ct_expand_nibble(ADPCMChannelStatus *c, int8_t nibble)
428 {
429     int sign, delta, diff;
430     int new_step;
431
432     sign = nibble & 8;
433     delta = nibble & 7;
434     /* perform direct multiplication instead of series of jumps proposed by
435      * the reference ADPCM implementation since modern CPUs can do the mults
436      * quickly enough */
437     diff = ((2 * delta + 1) * c->step) >> 3;
438     /* predictor update is not so trivial: predictor is multiplied on 254/256 before updating */
439     c->predictor = ((c->predictor * 254) >> 8) + (sign ? -diff : diff);
440     c->predictor = av_clip_int16(c->predictor);
441     /* calculate new step and clamp it to range 511..32767 */
442     new_step = (ff_adpcm_AdaptationTable[nibble & 7] * c->step) >> 8;
443     c->step = av_clip(new_step, 511, 32767);
444
445     return (int16_t)c->predictor;
446 }
447
448 static inline int16_t adpcm_sbpro_expand_nibble(ADPCMChannelStatus *c, int8_t nibble, int size, int shift)
449 {
450     int sign, delta, diff;
451
452     sign = nibble & (1<<(size-1));
453     delta = nibble & ((1<<(size-1))-1);
454     diff = delta << (7 + c->step + shift);
455
456     /* clamp result */
457     c->predictor = av_clip(c->predictor + (sign ? -diff : diff), -16384,16256);
458
459     /* calculate new step */
460     if (delta >= (2*size - 3) && c->step < 3)
461         c->step++;
462     else if (delta == 0 && c->step > 0)
463         c->step--;
464
465     return (int16_t) c->predictor;
466 }
467
468 static inline int16_t adpcm_yamaha_expand_nibble(ADPCMChannelStatus *c, uint8_t nibble)
469 {
470     if(!c->step) {
471         c->predictor = 0;
472         c->step = 127;
473     }
474
475     c->predictor += (c->step * ff_adpcm_yamaha_difflookup[nibble]) / 8;
476     c->predictor = av_clip_int16(c->predictor);
477     c->step = (c->step * ff_adpcm_yamaha_indexscale[nibble]) >> 8;
478     c->step = av_clip(c->step, 127, 24576);
479     return c->predictor;
480 }
481
482 static inline int16_t adpcm_mtaf_expand_nibble(ADPCMChannelStatus *c, uint8_t nibble)
483 {
484     c->predictor += ff_adpcm_mtaf_stepsize[c->step][nibble];
485     c->predictor = av_clip_int16(c->predictor);
486     c->step += ff_adpcm_index_table[nibble];
487     c->step = av_clip_uintp2(c->step, 5);
488     return c->predictor;
489 }
490
491 static inline int16_t adpcm_zork_expand_nibble(ADPCMChannelStatus *c, uint8_t nibble)
492 {
493     int16_t index = c->step_index;
494     uint32_t lookup_sample = ff_adpcm_step_table[index];
495     int32_t sample = 0;
496
497     if (nibble & 0x40)
498         sample += lookup_sample;
499     if (nibble & 0x20)
500         sample += lookup_sample >> 1;
501     if (nibble & 0x10)
502         sample += lookup_sample >> 2;
503     if (nibble & 0x08)
504         sample += lookup_sample >> 3;
505     if (nibble & 0x04)
506         sample += lookup_sample >> 4;
507     if (nibble & 0x02)
508         sample += lookup_sample >> 5;
509     if (nibble & 0x01)
510         sample += lookup_sample >> 6;
511     if (nibble & 0x80)
512         sample = -sample;
513
514     sample += c->predictor;
515     sample = av_clip_int16(sample);
516
517     index += zork_index_table[(nibble >> 4) & 7];
518     index = av_clip(index, 0, 88);
519
520     c->predictor = sample;
521     c->step_index = index;
522
523     return sample;
524 }
525
526 static int xa_decode(AVCodecContext *avctx, int16_t *out0, int16_t *out1,
527                      const uint8_t *in, ADPCMChannelStatus *left,
528                      ADPCMChannelStatus *right, int channels, int sample_offset)
529 {
530     int i, j;
531     int shift,filter,f0,f1;
532     int s_1,s_2;
533     int d,s,t;
534
535     out0 += sample_offset;
536     if (channels == 1)
537         out1 = out0 + 28;
538     else
539         out1 += sample_offset;
540
541     for(i=0;i<4;i++) {
542         shift  = 12 - (in[4+i*2] & 15);
543         filter = in[4+i*2] >> 4;
544         if (filter >= FF_ARRAY_ELEMS(xa_adpcm_table)) {
545             avpriv_request_sample(avctx, "unknown XA-ADPCM filter %d", filter);
546             filter=0;
547         }
548         if (shift < 0) {
549             avpriv_request_sample(avctx, "unknown XA-ADPCM shift %d", shift);
550             shift = 0;
551         }
552         f0 = xa_adpcm_table[filter][0];
553         f1 = xa_adpcm_table[filter][1];
554
555         s_1 = left->sample1;
556         s_2 = left->sample2;
557
558         for(j=0;j<28;j++) {
559             d = in[16+i+j*4];
560
561             t = sign_extend(d, 4);
562             s = t*(1<<shift) + ((s_1*f0 + s_2*f1+32)>>6);
563             s_2 = s_1;
564             s_1 = av_clip_int16(s);
565             out0[j] = s_1;
566         }
567
568         if (channels == 2) {
569             left->sample1 = s_1;
570             left->sample2 = s_2;
571             s_1 = right->sample1;
572             s_2 = right->sample2;
573         }
574
575         shift  = 12 - (in[5+i*2] & 15);
576         filter = in[5+i*2] >> 4;
577         if (filter >= FF_ARRAY_ELEMS(xa_adpcm_table) || shift < 0) {
578             avpriv_request_sample(avctx, "unknown XA-ADPCM filter %d", filter);
579             filter=0;
580         }
581         if (shift < 0) {
582             avpriv_request_sample(avctx, "unknown XA-ADPCM shift %d", shift);
583             shift = 0;
584         }
585
586         f0 = xa_adpcm_table[filter][0];
587         f1 = xa_adpcm_table[filter][1];
588
589         for(j=0;j<28;j++) {
590             d = in[16+i+j*4];
591
592             t = sign_extend(d >> 4, 4);
593             s = t*(1<<shift) + ((s_1*f0 + s_2*f1+32)>>6);
594             s_2 = s_1;
595             s_1 = av_clip_int16(s);
596             out1[j] = s_1;
597         }
598
599         if (channels == 2) {
600             right->sample1 = s_1;
601             right->sample2 = s_2;
602         } else {
603             left->sample1 = s_1;
604             left->sample2 = s_2;
605         }
606
607         out0 += 28 * (3 - channels);
608         out1 += 28 * (3 - channels);
609     }
610
611     return 0;
612 }
613
614 static void adpcm_swf_decode(AVCodecContext *avctx, const uint8_t *buf, int buf_size, int16_t *samples)
615 {
616     ADPCMDecodeContext *c = avctx->priv_data;
617     GetBitContext gb;
618     const int8_t *table;
619     int k0, signmask, nb_bits, count;
620     int size = buf_size*8;
621     int i;
622
623     init_get_bits(&gb, buf, size);
624
625     //read bits & initial values
626     nb_bits = get_bits(&gb, 2)+2;
627     table = swf_index_tables[nb_bits-2];
628     k0 = 1 << (nb_bits-2);
629     signmask = 1 << (nb_bits-1);
630
631     while (get_bits_count(&gb) <= size - 22*avctx->channels) {
632         for (i = 0; i < avctx->channels; i++) {
633             *samples++ = c->status[i].predictor = get_sbits(&gb, 16);
634             c->status[i].step_index = get_bits(&gb, 6);
635         }
636
637         for (count = 0; get_bits_count(&gb) <= size - nb_bits*avctx->channels && count < 4095; count++) {
638             int i;
639
640             for (i = 0; i < avctx->channels; i++) {
641                 // similar to IMA adpcm
642                 int delta = get_bits(&gb, nb_bits);
643                 int step = ff_adpcm_step_table[c->status[i].step_index];
644                 int vpdiff = 0; // vpdiff = (delta+0.5)*step/4
645                 int k = k0;
646
647                 do {
648                     if (delta & k)
649                         vpdiff += step;
650                     step >>= 1;
651                     k >>= 1;
652                 } while(k);
653                 vpdiff += step;
654
655                 if (delta & signmask)
656                     c->status[i].predictor -= vpdiff;
657                 else
658                     c->status[i].predictor += vpdiff;
659
660                 c->status[i].step_index += table[delta & (~signmask)];
661
662                 c->status[i].step_index = av_clip(c->status[i].step_index, 0, 88);
663                 c->status[i].predictor = av_clip_int16(c->status[i].predictor);
664
665                 *samples++ = c->status[i].predictor;
666             }
667         }
668     }
669 }
670
671 int16_t ff_adpcm_argo_expand_nibble(ADPCMChannelStatus *cs, int nibble, int shift, int flag)
672 {
673     int sample = sign_extend(nibble, 4) * (1 << shift);
674
675     if (flag)
676         sample += (8 * cs->sample1) - (4 * cs->sample2);
677     else
678         sample += 4 * cs->sample1;
679
680     sample = av_clip_int16(sample >> 2);
681
682     cs->sample2 = cs->sample1;
683     cs->sample1 = sample;
684
685     return sample;
686 }
687
688 /**
689  * Get the number of samples (per channel) that will be decoded from the packet.
690  * In one case, this is actually the maximum number of samples possible to
691  * decode with the given buf_size.
692  *
693  * @param[out] coded_samples set to the number of samples as coded in the
694  *                           packet, or 0 if the codec does not encode the
695  *                           number of samples in each frame.
696  * @param[out] approx_nb_samples set to non-zero if the number of samples
697  *                               returned is an approximation.
698  */
699 static int get_nb_samples(AVCodecContext *avctx, GetByteContext *gb,
700                           int buf_size, int *coded_samples, int *approx_nb_samples)
701 {
702     ADPCMDecodeContext *s = avctx->priv_data;
703     int nb_samples        = 0;
704     int ch                = avctx->channels;
705     int has_coded_samples = 0;
706     int header_size;
707
708     *coded_samples = 0;
709     *approx_nb_samples = 0;
710
711     if(ch <= 0)
712         return 0;
713
714     switch (avctx->codec->id) {
715     /* constant, only check buf_size */
716     case AV_CODEC_ID_ADPCM_EA_XAS:
717         if (buf_size < 76 * ch)
718             return 0;
719         nb_samples = 128;
720         break;
721     case AV_CODEC_ID_ADPCM_IMA_QT:
722         if (buf_size < 34 * ch)
723             return 0;
724         nb_samples = 64;
725         break;
726     /* simple 4-bit adpcm */
727     case AV_CODEC_ID_ADPCM_CT:
728     case AV_CODEC_ID_ADPCM_IMA_APC:
729     case AV_CODEC_ID_ADPCM_IMA_CUNNING:
730     case AV_CODEC_ID_ADPCM_IMA_EA_SEAD:
731     case AV_CODEC_ID_ADPCM_IMA_OKI:
732     case AV_CODEC_ID_ADPCM_IMA_WS:
733     case AV_CODEC_ID_ADPCM_YAMAHA:
734     case AV_CODEC_ID_ADPCM_AICA:
735     case AV_CODEC_ID_ADPCM_IMA_SSI:
736     case AV_CODEC_ID_ADPCM_IMA_APM:
737     case AV_CODEC_ID_ADPCM_IMA_ALP:
738     case AV_CODEC_ID_ADPCM_IMA_MTF:
739         nb_samples = buf_size * 2 / ch;
740         break;
741     }
742     if (nb_samples)
743         return nb_samples;
744
745     /* simple 4-bit adpcm, with header */
746     header_size = 0;
747     switch (avctx->codec->id) {
748         case AV_CODEC_ID_ADPCM_4XM:
749         case AV_CODEC_ID_ADPCM_AGM:
750         case AV_CODEC_ID_ADPCM_IMA_DAT4:
751         case AV_CODEC_ID_ADPCM_IMA_MOFLEX:
752         case AV_CODEC_ID_ADPCM_IMA_ISS:     header_size = 4 * ch;      break;
753         case AV_CODEC_ID_ADPCM_IMA_SMJPEG:  header_size = 4 * ch;      break;
754     }
755     if (header_size > 0)
756         return (buf_size - header_size) * 2 / ch;
757
758     /* more complex formats */
759     switch (avctx->codec->id) {
760     case AV_CODEC_ID_ADPCM_IMA_AMV:
761         bytestream2_skip(gb, 4);
762         has_coded_samples  = 1;
763         *coded_samples     = bytestream2_get_le32u(gb);
764         nb_samples         = FFMIN((buf_size - 8) * 2, *coded_samples);
765         bytestream2_seek(gb, -8, SEEK_CUR);
766         break;
767     case AV_CODEC_ID_ADPCM_EA:
768         has_coded_samples = 1;
769         *coded_samples  = bytestream2_get_le32(gb);
770         *coded_samples -= *coded_samples % 28;
771         nb_samples      = (buf_size - 12) / 30 * 28;
772         break;
773     case AV_CODEC_ID_ADPCM_IMA_EA_EACS:
774         has_coded_samples = 1;
775         *coded_samples = bytestream2_get_le32(gb);
776         nb_samples     = (buf_size - (4 + 8 * ch)) * 2 / ch;
777         break;
778     case AV_CODEC_ID_ADPCM_EA_MAXIS_XA:
779         nb_samples = (buf_size - ch) / ch * 2;
780         break;
781     case AV_CODEC_ID_ADPCM_EA_R1:
782     case AV_CODEC_ID_ADPCM_EA_R2:
783     case AV_CODEC_ID_ADPCM_EA_R3:
784         /* maximum number of samples */
785         /* has internal offsets and a per-frame switch to signal raw 16-bit */
786         has_coded_samples = 1;
787         switch (avctx->codec->id) {
788         case AV_CODEC_ID_ADPCM_EA_R1:
789             header_size    = 4 + 9 * ch;
790             *coded_samples = bytestream2_get_le32(gb);
791             break;
792         case AV_CODEC_ID_ADPCM_EA_R2:
793             header_size    = 4 + 5 * ch;
794             *coded_samples = bytestream2_get_le32(gb);
795             break;
796         case AV_CODEC_ID_ADPCM_EA_R3:
797             header_size    = 4 + 5 * ch;
798             *coded_samples = bytestream2_get_be32(gb);
799             break;
800         }
801         *coded_samples -= *coded_samples % 28;
802         nb_samples      = (buf_size - header_size) * 2 / ch;
803         nb_samples     -= nb_samples % 28;
804         *approx_nb_samples = 1;
805         break;
806     case AV_CODEC_ID_ADPCM_IMA_DK3:
807         if (avctx->block_align > 0)
808             buf_size = FFMIN(buf_size, avctx->block_align);
809         nb_samples = ((buf_size - 16) * 2 / 3 * 4) / ch;
810         break;
811     case AV_CODEC_ID_ADPCM_IMA_DK4:
812         if (avctx->block_align > 0)
813             buf_size = FFMIN(buf_size, avctx->block_align);
814         if (buf_size < 4 * ch)
815             return AVERROR_INVALIDDATA;
816         nb_samples = 1 + (buf_size - 4 * ch) * 2 / ch;
817         break;
818     case AV_CODEC_ID_ADPCM_IMA_RAD:
819         if (avctx->block_align > 0)
820             buf_size = FFMIN(buf_size, avctx->block_align);
821         nb_samples = (buf_size - 4 * ch) * 2 / ch;
822         break;
823     case AV_CODEC_ID_ADPCM_IMA_WAV:
824     {
825         int bsize = ff_adpcm_ima_block_sizes[avctx->bits_per_coded_sample - 2];
826         int bsamples = ff_adpcm_ima_block_samples[avctx->bits_per_coded_sample - 2];
827         if (avctx->block_align > 0)
828             buf_size = FFMIN(buf_size, avctx->block_align);
829         if (buf_size < 4 * ch)
830             return AVERROR_INVALIDDATA;
831         nb_samples = 1 + (buf_size - 4 * ch) / (bsize * ch) * bsamples;
832         break;
833     }
834     case AV_CODEC_ID_ADPCM_MS:
835         if (avctx->block_align > 0)
836             buf_size = FFMIN(buf_size, avctx->block_align);
837         nb_samples = (buf_size - 6 * ch) * 2 / ch;
838         break;
839     case AV_CODEC_ID_ADPCM_MTAF:
840         if (avctx->block_align > 0)
841             buf_size = FFMIN(buf_size, avctx->block_align);
842         nb_samples = (buf_size - 16 * (ch / 2)) * 2 / ch;
843         break;
844     case AV_CODEC_ID_ADPCM_SBPRO_2:
845     case AV_CODEC_ID_ADPCM_SBPRO_3:
846     case AV_CODEC_ID_ADPCM_SBPRO_4:
847     {
848         int samples_per_byte;
849         switch (avctx->codec->id) {
850         case AV_CODEC_ID_ADPCM_SBPRO_2: samples_per_byte = 4; break;
851         case AV_CODEC_ID_ADPCM_SBPRO_3: samples_per_byte = 3; break;
852         case AV_CODEC_ID_ADPCM_SBPRO_4: samples_per_byte = 2; break;
853         }
854         if (!s->status[0].step_index) {
855             if (buf_size < ch)
856                 return AVERROR_INVALIDDATA;
857             nb_samples++;
858             buf_size -= ch;
859         }
860         nb_samples += buf_size * samples_per_byte / ch;
861         break;
862     }
863     case AV_CODEC_ID_ADPCM_SWF:
864     {
865         int buf_bits       = buf_size * 8 - 2;
866         int nbits          = (bytestream2_get_byte(gb) >> 6) + 2;
867         int block_hdr_size = 22 * ch;
868         int block_size     = block_hdr_size + nbits * ch * 4095;
869         int nblocks        = buf_bits / block_size;
870         int bits_left      = buf_bits - nblocks * block_size;
871         nb_samples         = nblocks * 4096;
872         if (bits_left >= block_hdr_size)
873             nb_samples += 1 + (bits_left - block_hdr_size) / (nbits * ch);
874         break;
875     }
876     case AV_CODEC_ID_ADPCM_THP:
877     case AV_CODEC_ID_ADPCM_THP_LE:
878         if (avctx->extradata) {
879             nb_samples = buf_size * 14 / (8 * ch);
880             break;
881         }
882         has_coded_samples = 1;
883         bytestream2_skip(gb, 4); // channel size
884         *coded_samples  = (avctx->codec->id == AV_CODEC_ID_ADPCM_THP_LE) ?
885                           bytestream2_get_le32(gb) :
886                           bytestream2_get_be32(gb);
887         buf_size       -= 8 + 36 * ch;
888         buf_size       /= ch;
889         nb_samples      = buf_size / 8 * 14;
890         if (buf_size % 8 > 1)
891             nb_samples     += (buf_size % 8 - 1) * 2;
892         *approx_nb_samples = 1;
893         break;
894     case AV_CODEC_ID_ADPCM_AFC:
895         nb_samples = buf_size / (9 * ch) * 16;
896         break;
897     case AV_CODEC_ID_ADPCM_XA:
898         nb_samples = (buf_size / 128) * 224 / ch;
899         break;
900     case AV_CODEC_ID_ADPCM_DTK:
901     case AV_CODEC_ID_ADPCM_PSX:
902         nb_samples = buf_size / (16 * ch) * 28;
903         break;
904     case AV_CODEC_ID_ADPCM_ARGO:
905         nb_samples = buf_size / avctx->block_align * 32;
906         break;
907     case AV_CODEC_ID_ADPCM_ZORK:
908         nb_samples = buf_size / ch;
909         break;
910     }
911
912     /* validate coded sample count */
913     if (has_coded_samples && (*coded_samples <= 0 || *coded_samples > nb_samples))
914         return AVERROR_INVALIDDATA;
915
916     return nb_samples;
917 }
918
919 static int adpcm_decode_frame(AVCodecContext *avctx, void *data,
920                               int *got_frame_ptr, AVPacket *avpkt)
921 {
922     AVFrame *frame     = data;
923     const uint8_t *buf = avpkt->data;
924     int buf_size = avpkt->size;
925     ADPCMDecodeContext *c = avctx->priv_data;
926     ADPCMChannelStatus *cs;
927     int n, m, channel, i;
928     int16_t *samples;
929     int16_t **samples_p;
930     int st; /* stereo */
931     int count1, count2;
932     int nb_samples, coded_samples, approx_nb_samples, ret;
933     GetByteContext gb;
934
935     bytestream2_init(&gb, buf, buf_size);
936     nb_samples = get_nb_samples(avctx, &gb, buf_size, &coded_samples, &approx_nb_samples);
937     if (nb_samples <= 0) {
938         av_log(avctx, AV_LOG_ERROR, "invalid number of samples in packet\n");
939         return AVERROR_INVALIDDATA;
940     }
941
942     /* get output buffer */
943     frame->nb_samples = nb_samples;
944     if ((ret = ff_get_buffer(avctx, frame, 0)) < 0)
945         return ret;
946     samples = (int16_t *)frame->data[0];
947     samples_p = (int16_t **)frame->extended_data;
948
949     /* use coded_samples when applicable */
950     /* it is always <= nb_samples, so the output buffer will be large enough */
951     if (coded_samples) {
952         if (!approx_nb_samples && coded_samples != nb_samples)
953             av_log(avctx, AV_LOG_WARNING, "mismatch in coded sample count\n");
954         frame->nb_samples = nb_samples = coded_samples;
955     }
956
957     st = avctx->channels == 2 ? 1 : 0;
958
959     switch(avctx->codec->id) {
960     case AV_CODEC_ID_ADPCM_IMA_QT:
961         /* In QuickTime, IMA is encoded by chunks of 34 bytes (=64 samples).
962            Channel data is interleaved per-chunk. */
963         for (channel = 0; channel < avctx->channels; channel++) {
964             int predictor;
965             int step_index;
966             cs = &(c->status[channel]);
967             /* (pppppp) (piiiiiii) */
968
969             /* Bits 15-7 are the _top_ 9 bits of the 16-bit initial predictor value */
970             predictor = sign_extend(bytestream2_get_be16u(&gb), 16);
971             step_index = predictor & 0x7F;
972             predictor &= ~0x7F;
973
974             if (cs->step_index == step_index) {
975                 int diff = predictor - cs->predictor;
976                 if (diff < 0)
977                     diff = - diff;
978                 if (diff > 0x7f)
979                     goto update;
980             } else {
981             update:
982                 cs->step_index = step_index;
983                 cs->predictor = predictor;
984             }
985
986             if (cs->step_index > 88u){
987                 av_log(avctx, AV_LOG_ERROR, "ERROR: step_index[%d] = %i\n",
988                        channel, cs->step_index);
989                 return AVERROR_INVALIDDATA;
990             }
991
992             samples = samples_p[channel];
993
994             for (m = 0; m < 64; m += 2) {
995                 int byte = bytestream2_get_byteu(&gb);
996                 samples[m    ] = adpcm_ima_qt_expand_nibble(cs, byte & 0x0F);
997                 samples[m + 1] = adpcm_ima_qt_expand_nibble(cs, byte >> 4  );
998             }
999         }
1000         break;
1001     case AV_CODEC_ID_ADPCM_IMA_WAV:
1002         for(i=0; i<avctx->channels; i++){
1003             cs = &(c->status[i]);
1004             cs->predictor = samples_p[i][0] = sign_extend(bytestream2_get_le16u(&gb), 16);
1005
1006             cs->step_index = sign_extend(bytestream2_get_le16u(&gb), 16);
1007             if (cs->step_index > 88u){
1008                 av_log(avctx, AV_LOG_ERROR, "ERROR: step_index[%d] = %i\n",
1009                        i, cs->step_index);
1010                 return AVERROR_INVALIDDATA;
1011             }
1012         }
1013
1014         if (avctx->bits_per_coded_sample != 4) {
1015             int samples_per_block = ff_adpcm_ima_block_samples[avctx->bits_per_coded_sample - 2];
1016             int block_size = ff_adpcm_ima_block_sizes[avctx->bits_per_coded_sample - 2];
1017             uint8_t temp[20 + AV_INPUT_BUFFER_PADDING_SIZE] = { 0 };
1018             GetBitContext g;
1019
1020             for (n = 0; n < (nb_samples - 1) / samples_per_block; n++) {
1021                 for (i = 0; i < avctx->channels; i++) {
1022                     int j;
1023
1024                     cs = &c->status[i];
1025                     samples = &samples_p[i][1 + n * samples_per_block];
1026                     for (j = 0; j < block_size; j++) {
1027                         temp[j] = buf[4 * avctx->channels + block_size * n * avctx->channels +
1028                                         (j % 4) + (j / 4) * (avctx->channels * 4) + i * 4];
1029                     }
1030                     ret = init_get_bits8(&g, (const uint8_t *)&temp, block_size);
1031                     if (ret < 0)
1032                         return ret;
1033                     for (m = 0; m < samples_per_block; m++) {
1034                         samples[m] = adpcm_ima_wav_expand_nibble(cs, &g,
1035                                           avctx->bits_per_coded_sample);
1036                     }
1037                 }
1038             }
1039             bytestream2_skip(&gb, avctx->block_align - avctx->channels * 4);
1040         } else {
1041         for (n = 0; n < (nb_samples - 1) / 8; n++) {
1042             for (i = 0; i < avctx->channels; i++) {
1043                 cs = &c->status[i];
1044                 samples = &samples_p[i][1 + n * 8];
1045                 for (m = 0; m < 8; m += 2) {
1046                     int v = bytestream2_get_byteu(&gb);
1047                     samples[m    ] = adpcm_ima_expand_nibble(cs, v & 0x0F, 3);
1048                     samples[m + 1] = adpcm_ima_expand_nibble(cs, v >> 4  , 3);
1049                 }
1050             }
1051         }
1052         }
1053         break;
1054     case AV_CODEC_ID_ADPCM_4XM:
1055         for (i = 0; i < avctx->channels; i++)
1056             c->status[i].predictor = sign_extend(bytestream2_get_le16u(&gb), 16);
1057
1058         for (i = 0; i < avctx->channels; i++) {
1059             c->status[i].step_index = sign_extend(bytestream2_get_le16u(&gb), 16);
1060             if (c->status[i].step_index > 88u) {
1061                 av_log(avctx, AV_LOG_ERROR, "ERROR: step_index[%d] = %i\n",
1062                        i, c->status[i].step_index);
1063                 return AVERROR_INVALIDDATA;
1064             }
1065         }
1066
1067         for (i = 0; i < avctx->channels; i++) {
1068             samples = (int16_t *)frame->data[i];
1069             cs = &c->status[i];
1070             for (n = nb_samples >> 1; n > 0; n--) {
1071                 int v = bytestream2_get_byteu(&gb);
1072                 *samples++ = adpcm_ima_expand_nibble(cs, v & 0x0F, 4);
1073                 *samples++ = adpcm_ima_expand_nibble(cs, v >> 4  , 4);
1074             }
1075         }
1076         break;
1077     case AV_CODEC_ID_ADPCM_AGM:
1078         for (i = 0; i < avctx->channels; i++)
1079             c->status[i].predictor = sign_extend(bytestream2_get_le16u(&gb), 16);
1080         for (i = 0; i < avctx->channels; i++)
1081             c->status[i].step = sign_extend(bytestream2_get_le16u(&gb), 16);
1082
1083         for (n = 0; n < nb_samples >> (1 - st); n++) {
1084             int v = bytestream2_get_byteu(&gb);
1085             *samples++ = adpcm_agm_expand_nibble(&c->status[0], v & 0xF);
1086             *samples++ = adpcm_agm_expand_nibble(&c->status[st], v >> 4 );
1087         }
1088         break;
1089     case AV_CODEC_ID_ADPCM_MS:
1090     {
1091         int block_predictor;
1092
1093         if (avctx->channels > 2) {
1094             for (channel = 0; channel < avctx->channels; channel++) {
1095                 samples = samples_p[channel];
1096                 block_predictor = bytestream2_get_byteu(&gb);
1097                 if (block_predictor > 6) {
1098                     av_log(avctx, AV_LOG_ERROR, "ERROR: block_predictor[%d] = %d\n",
1099                            channel, block_predictor);
1100                     return AVERROR_INVALIDDATA;
1101                 }
1102                 c->status[channel].coeff1 = ff_adpcm_AdaptCoeff1[block_predictor];
1103                 c->status[channel].coeff2 = ff_adpcm_AdaptCoeff2[block_predictor];
1104                 c->status[channel].idelta = sign_extend(bytestream2_get_le16u(&gb), 16);
1105                 c->status[channel].sample1 = sign_extend(bytestream2_get_le16u(&gb), 16);
1106                 c->status[channel].sample2 = sign_extend(bytestream2_get_le16u(&gb), 16);
1107                 *samples++ = c->status[channel].sample2;
1108                 *samples++ = c->status[channel].sample1;
1109                 for(n = (nb_samples - 2) >> 1; n > 0; n--) {
1110                     int byte = bytestream2_get_byteu(&gb);
1111                     *samples++ = adpcm_ms_expand_nibble(&c->status[channel], byte >> 4  );
1112                     *samples++ = adpcm_ms_expand_nibble(&c->status[channel], byte & 0x0F);
1113                 }
1114             }
1115         } else {
1116             block_predictor = bytestream2_get_byteu(&gb);
1117             if (block_predictor > 6) {
1118                 av_log(avctx, AV_LOG_ERROR, "ERROR: block_predictor[0] = %d\n",
1119                        block_predictor);
1120                 return AVERROR_INVALIDDATA;
1121             }
1122             c->status[0].coeff1 = ff_adpcm_AdaptCoeff1[block_predictor];
1123             c->status[0].coeff2 = ff_adpcm_AdaptCoeff2[block_predictor];
1124             if (st) {
1125                 block_predictor = bytestream2_get_byteu(&gb);
1126                 if (block_predictor > 6) {
1127                     av_log(avctx, AV_LOG_ERROR, "ERROR: block_predictor[1] = %d\n",
1128                            block_predictor);
1129                     return AVERROR_INVALIDDATA;
1130                 }
1131                 c->status[1].coeff1 = ff_adpcm_AdaptCoeff1[block_predictor];
1132                 c->status[1].coeff2 = ff_adpcm_AdaptCoeff2[block_predictor];
1133             }
1134             c->status[0].idelta = sign_extend(bytestream2_get_le16u(&gb), 16);
1135             if (st){
1136                 c->status[1].idelta = sign_extend(bytestream2_get_le16u(&gb), 16);
1137             }
1138
1139             c->status[0].sample1 = sign_extend(bytestream2_get_le16u(&gb), 16);
1140             if (st) c->status[1].sample1 = sign_extend(bytestream2_get_le16u(&gb), 16);
1141             c->status[0].sample2 = sign_extend(bytestream2_get_le16u(&gb), 16);
1142             if (st) c->status[1].sample2 = sign_extend(bytestream2_get_le16u(&gb), 16);
1143
1144             *samples++ = c->status[0].sample2;
1145             if (st) *samples++ = c->status[1].sample2;
1146             *samples++ = c->status[0].sample1;
1147             if (st) *samples++ = c->status[1].sample1;
1148             for(n = (nb_samples - 2) >> (1 - st); n > 0; n--) {
1149                 int byte = bytestream2_get_byteu(&gb);
1150                 *samples++ = adpcm_ms_expand_nibble(&c->status[0 ], byte >> 4  );
1151                 *samples++ = adpcm_ms_expand_nibble(&c->status[st], byte & 0x0F);
1152             }
1153         }
1154         break;
1155     }
1156     case AV_CODEC_ID_ADPCM_MTAF:
1157         for (channel = 0; channel < avctx->channels; channel+=2) {
1158             bytestream2_skipu(&gb, 4);
1159             c->status[channel    ].step      = bytestream2_get_le16u(&gb) & 0x1f;
1160             c->status[channel + 1].step      = bytestream2_get_le16u(&gb) & 0x1f;
1161             c->status[channel    ].predictor = sign_extend(bytestream2_get_le16u(&gb), 16);
1162             bytestream2_skipu(&gb, 2);
1163             c->status[channel + 1].predictor = sign_extend(bytestream2_get_le16u(&gb), 16);
1164             bytestream2_skipu(&gb, 2);
1165             for (n = 0; n < nb_samples; n+=2) {
1166                 int v = bytestream2_get_byteu(&gb);
1167                 samples_p[channel][n    ] = adpcm_mtaf_expand_nibble(&c->status[channel], v & 0x0F);
1168                 samples_p[channel][n + 1] = adpcm_mtaf_expand_nibble(&c->status[channel], v >> 4  );
1169             }
1170             for (n = 0; n < nb_samples; n+=2) {
1171                 int v = bytestream2_get_byteu(&gb);
1172                 samples_p[channel + 1][n    ] = adpcm_mtaf_expand_nibble(&c->status[channel + 1], v & 0x0F);
1173                 samples_p[channel + 1][n + 1] = adpcm_mtaf_expand_nibble(&c->status[channel + 1], v >> 4  );
1174             }
1175         }
1176         break;
1177     case AV_CODEC_ID_ADPCM_IMA_DK4:
1178         for (channel = 0; channel < avctx->channels; channel++) {
1179             cs = &c->status[channel];
1180             cs->predictor  = *samples++ = sign_extend(bytestream2_get_le16u(&gb), 16);
1181             cs->step_index = sign_extend(bytestream2_get_le16u(&gb), 16);
1182             if (cs->step_index > 88u){
1183                 av_log(avctx, AV_LOG_ERROR, "ERROR: step_index[%d] = %i\n",
1184                        channel, cs->step_index);
1185                 return AVERROR_INVALIDDATA;
1186             }
1187         }
1188         for (n = (nb_samples - 1) >> (1 - st); n > 0; n--) {
1189             int v = bytestream2_get_byteu(&gb);
1190             *samples++ = adpcm_ima_expand_nibble(&c->status[0 ], v >> 4  , 3);
1191             *samples++ = adpcm_ima_expand_nibble(&c->status[st], v & 0x0F, 3);
1192         }
1193         break;
1194     case AV_CODEC_ID_ADPCM_IMA_DK3:
1195     {
1196         int last_byte = 0;
1197         int nibble;
1198         int decode_top_nibble_next = 0;
1199         int diff_channel;
1200         const int16_t *samples_end = samples + avctx->channels * nb_samples;
1201
1202         bytestream2_skipu(&gb, 10);
1203         c->status[0].predictor  = sign_extend(bytestream2_get_le16u(&gb), 16);
1204         c->status[1].predictor  = sign_extend(bytestream2_get_le16u(&gb), 16);
1205         c->status[0].step_index = bytestream2_get_byteu(&gb);
1206         c->status[1].step_index = bytestream2_get_byteu(&gb);
1207         if (c->status[0].step_index > 88u || c->status[1].step_index > 88u){
1208             av_log(avctx, AV_LOG_ERROR, "ERROR: step_index = %i/%i\n",
1209                    c->status[0].step_index, c->status[1].step_index);
1210             return AVERROR_INVALIDDATA;
1211         }
1212         /* sign extend the predictors */
1213         diff_channel = c->status[1].predictor;
1214
1215         /* DK3 ADPCM support macro */
1216 #define DK3_GET_NEXT_NIBBLE() \
1217     if (decode_top_nibble_next) { \
1218         nibble = last_byte >> 4; \
1219         decode_top_nibble_next = 0; \
1220     } else { \
1221         last_byte = bytestream2_get_byteu(&gb); \
1222         nibble = last_byte & 0x0F; \
1223         decode_top_nibble_next = 1; \
1224     }
1225
1226         while (samples < samples_end) {
1227
1228             /* for this algorithm, c->status[0] is the sum channel and
1229              * c->status[1] is the diff channel */
1230
1231             /* process the first predictor of the sum channel */
1232             DK3_GET_NEXT_NIBBLE();
1233             adpcm_ima_expand_nibble(&c->status[0], nibble, 3);
1234
1235             /* process the diff channel predictor */
1236             DK3_GET_NEXT_NIBBLE();
1237             adpcm_ima_expand_nibble(&c->status[1], nibble, 3);
1238
1239             /* process the first pair of stereo PCM samples */
1240             diff_channel = (diff_channel + c->status[1].predictor) / 2;
1241             *samples++ = c->status[0].predictor + c->status[1].predictor;
1242             *samples++ = c->status[0].predictor - c->status[1].predictor;
1243
1244             /* process the second predictor of the sum channel */
1245             DK3_GET_NEXT_NIBBLE();
1246             adpcm_ima_expand_nibble(&c->status[0], nibble, 3);
1247
1248             /* process the second pair of stereo PCM samples */
1249             diff_channel = (diff_channel + c->status[1].predictor) / 2;
1250             *samples++ = c->status[0].predictor + c->status[1].predictor;
1251             *samples++ = c->status[0].predictor - c->status[1].predictor;
1252         }
1253
1254         if ((bytestream2_tell(&gb) & 1))
1255             bytestream2_skip(&gb, 1);
1256         break;
1257     }
1258     case AV_CODEC_ID_ADPCM_IMA_ISS:
1259         for (channel = 0; channel < avctx->channels; channel++) {
1260             cs = &c->status[channel];
1261             cs->predictor  = sign_extend(bytestream2_get_le16u(&gb), 16);
1262             cs->step_index = sign_extend(bytestream2_get_le16u(&gb), 16);
1263             if (cs->step_index > 88u){
1264                 av_log(avctx, AV_LOG_ERROR, "ERROR: step_index[%d] = %i\n",
1265                        channel, cs->step_index);
1266                 return AVERROR_INVALIDDATA;
1267             }
1268         }
1269
1270         for (n = nb_samples >> (1 - st); n > 0; n--) {
1271             int v1, v2;
1272             int v = bytestream2_get_byteu(&gb);
1273             /* nibbles are swapped for mono */
1274             if (st) {
1275                 v1 = v >> 4;
1276                 v2 = v & 0x0F;
1277             } else {
1278                 v2 = v >> 4;
1279                 v1 = v & 0x0F;
1280             }
1281             *samples++ = adpcm_ima_expand_nibble(&c->status[0 ], v1, 3);
1282             *samples++ = adpcm_ima_expand_nibble(&c->status[st], v2, 3);
1283         }
1284         break;
1285     case AV_CODEC_ID_ADPCM_IMA_MOFLEX:
1286         for (channel = 0; channel < avctx->channels; channel++) {
1287             cs = &c->status[channel];
1288             cs->step_index = sign_extend(bytestream2_get_le16u(&gb), 16);
1289             cs->predictor  = sign_extend(bytestream2_get_le16u(&gb), 16);
1290             if (cs->step_index > 88u){
1291                 av_log(avctx, AV_LOG_ERROR, "ERROR: step_index[%d] = %i\n",
1292                        channel, cs->step_index);
1293                 return AVERROR_INVALIDDATA;
1294             }
1295         }
1296
1297         for (int subframe = 0; subframe < nb_samples / 256; subframe++) {
1298             for (channel = 0; channel < avctx->channels; channel++) {
1299                 samples = samples_p[channel] + 256 * subframe;
1300                 for (n = 0; n < 256; n += 2) {
1301                     int v = bytestream2_get_byteu(&gb);
1302                     *samples++ = adpcm_ima_expand_nibble(&c->status[channel], v & 0x0F, 3);
1303                     *samples++ = adpcm_ima_expand_nibble(&c->status[channel], v >> 4  , 3);
1304                 }
1305             }
1306         }
1307         break;
1308     case AV_CODEC_ID_ADPCM_IMA_DAT4:
1309         for (channel = 0; channel < avctx->channels; channel++) {
1310             cs = &c->status[channel];
1311             samples = samples_p[channel];
1312             bytestream2_skip(&gb, 4);
1313             for (n = 0; n < nb_samples; n += 2) {
1314                 int v = bytestream2_get_byteu(&gb);
1315                 *samples++ = adpcm_ima_expand_nibble(cs, v >> 4  , 3);
1316                 *samples++ = adpcm_ima_expand_nibble(cs, v & 0x0F, 3);
1317             }
1318         }
1319         break;
1320     case AV_CODEC_ID_ADPCM_IMA_APC:
1321         for (n = nb_samples >> (1 - st); n > 0; n--) {
1322             int v = bytestream2_get_byteu(&gb);
1323             *samples++ = adpcm_ima_expand_nibble(&c->status[0],  v >> 4  , 3);
1324             *samples++ = adpcm_ima_expand_nibble(&c->status[st], v & 0x0F, 3);
1325         }
1326         break;
1327     case AV_CODEC_ID_ADPCM_IMA_SSI:
1328         for (n = nb_samples >> (1 - st); n > 0; n--) {
1329             int v = bytestream2_get_byteu(&gb);
1330             *samples++ = adpcm_ima_qt_expand_nibble(&c->status[0],  v >> 4  );
1331             *samples++ = adpcm_ima_qt_expand_nibble(&c->status[st], v & 0x0F);
1332         }
1333         break;
1334     case AV_CODEC_ID_ADPCM_IMA_APM:
1335         for (n = nb_samples / 2; n > 0; n--) {
1336             for (channel = 0; channel < avctx->channels; channel++) {
1337                 int v = bytestream2_get_byteu(&gb);
1338                 *samples++  = adpcm_ima_qt_expand_nibble(&c->status[channel], v >> 4  );
1339                 samples[st] = adpcm_ima_qt_expand_nibble(&c->status[channel], v & 0x0F);
1340             }
1341             samples += avctx->channels;
1342         }
1343         break;
1344     case AV_CODEC_ID_ADPCM_IMA_ALP:
1345         for (n = nb_samples / 2; n > 0; n--) {
1346             for (channel = 0; channel < avctx->channels; channel++) {
1347                 int v = bytestream2_get_byteu(&gb);
1348                 *samples++  = adpcm_ima_alp_expand_nibble(&c->status[channel], v >> 4  , 2);
1349                 samples[st] = adpcm_ima_alp_expand_nibble(&c->status[channel], v & 0x0F, 2);
1350             }
1351             samples += avctx->channels;
1352         }
1353         break;
1354     case AV_CODEC_ID_ADPCM_IMA_CUNNING:
1355         for (channel = 0; channel < avctx->channels; channel++) {
1356             int16_t *smp = samples_p[channel];
1357             for (n = 0; n < nb_samples / 2; n++) {
1358                 int v = bytestream2_get_byteu(&gb);
1359                 *smp++ = adpcm_ima_cunning_expand_nibble(&c->status[channel], v & 0x0F);
1360                 *smp++ = adpcm_ima_cunning_expand_nibble(&c->status[channel], v >> 4);
1361             }
1362         }
1363         break;
1364     case AV_CODEC_ID_ADPCM_IMA_OKI:
1365         for (n = nb_samples >> (1 - st); n > 0; n--) {
1366             int v = bytestream2_get_byteu(&gb);
1367             *samples++ = adpcm_ima_oki_expand_nibble(&c->status[0],  v >> 4  );
1368             *samples++ = adpcm_ima_oki_expand_nibble(&c->status[st], v & 0x0F);
1369         }
1370         break;
1371     case AV_CODEC_ID_ADPCM_IMA_RAD:
1372         for (channel = 0; channel < avctx->channels; channel++) {
1373             cs = &c->status[channel];
1374             cs->step_index = sign_extend(bytestream2_get_le16u(&gb), 16);
1375             cs->predictor  = sign_extend(bytestream2_get_le16u(&gb), 16);
1376             if (cs->step_index > 88u){
1377                 av_log(avctx, AV_LOG_ERROR, "ERROR: step_index[%d] = %i\n",
1378                        channel, cs->step_index);
1379                 return AVERROR_INVALIDDATA;
1380             }
1381         }
1382         for (n = 0; n < nb_samples / 2; n++) {
1383             int byte[2];
1384
1385             byte[0] = bytestream2_get_byteu(&gb);
1386             if (st)
1387                 byte[1] = bytestream2_get_byteu(&gb);
1388             for(channel = 0; channel < avctx->channels; channel++) {
1389                 *samples++ = adpcm_ima_expand_nibble(&c->status[channel], byte[channel] & 0x0F, 3);
1390             }
1391             for(channel = 0; channel < avctx->channels; channel++) {
1392                 *samples++ = adpcm_ima_expand_nibble(&c->status[channel], byte[channel] >> 4  , 3);
1393             }
1394         }
1395         break;
1396     case AV_CODEC_ID_ADPCM_IMA_WS:
1397         if (c->vqa_version == 3) {
1398             for (channel = 0; channel < avctx->channels; channel++) {
1399                 int16_t *smp = samples_p[channel];
1400
1401                 for (n = nb_samples / 2; n > 0; n--) {
1402                     int v = bytestream2_get_byteu(&gb);
1403                     *smp++ = adpcm_ima_expand_nibble(&c->status[channel], v & 0x0F, 3);
1404                     *smp++ = adpcm_ima_expand_nibble(&c->status[channel], v >> 4  , 3);
1405                 }
1406             }
1407         } else {
1408             for (n = nb_samples / 2; n > 0; n--) {
1409                 for (channel = 0; channel < avctx->channels; channel++) {
1410                     int v = bytestream2_get_byteu(&gb);
1411                     *samples++  = adpcm_ima_expand_nibble(&c->status[channel], v & 0x0F, 3);
1412                     samples[st] = adpcm_ima_expand_nibble(&c->status[channel], v >> 4  , 3);
1413                 }
1414                 samples += avctx->channels;
1415             }
1416         }
1417         bytestream2_seek(&gb, 0, SEEK_END);
1418         break;
1419     case AV_CODEC_ID_ADPCM_XA:
1420     {
1421         int16_t *out0 = samples_p[0];
1422         int16_t *out1 = samples_p[1];
1423         int samples_per_block = 28 * (3 - avctx->channels) * 4;
1424         int sample_offset = 0;
1425         int bytes_remaining;
1426         while (bytestream2_get_bytes_left(&gb) >= 128) {
1427             if ((ret = xa_decode(avctx, out0, out1, buf + bytestream2_tell(&gb),
1428                                  &c->status[0], &c->status[1],
1429                                  avctx->channels, sample_offset)) < 0)
1430                 return ret;
1431             bytestream2_skipu(&gb, 128);
1432             sample_offset += samples_per_block;
1433         }
1434         /* Less than a full block of data left, e.g. when reading from
1435          * 2324 byte per sector XA; the remainder is padding */
1436         bytes_remaining = bytestream2_get_bytes_left(&gb);
1437         if (bytes_remaining > 0) {
1438             bytestream2_skip(&gb, bytes_remaining);
1439         }
1440         break;
1441     }
1442     case AV_CODEC_ID_ADPCM_IMA_EA_EACS:
1443         for (i=0; i<=st; i++) {
1444             c->status[i].step_index = bytestream2_get_le32u(&gb);
1445             if (c->status[i].step_index > 88u) {
1446                 av_log(avctx, AV_LOG_ERROR, "ERROR: step_index[%d] = %i\n",
1447                        i, c->status[i].step_index);
1448                 return AVERROR_INVALIDDATA;
1449             }
1450         }
1451         for (i=0; i<=st; i++) {
1452             c->status[i].predictor  = bytestream2_get_le32u(&gb);
1453             if (FFABS((int64_t)c->status[i].predictor) > (1<<16))
1454                 return AVERROR_INVALIDDATA;
1455         }
1456
1457         for (n = nb_samples >> (1 - st); n > 0; n--) {
1458             int byte   = bytestream2_get_byteu(&gb);
1459             *samples++ = adpcm_ima_expand_nibble(&c->status[0],  byte >> 4,   3);
1460             *samples++ = adpcm_ima_expand_nibble(&c->status[st], byte & 0x0F, 3);
1461         }
1462         break;
1463     case AV_CODEC_ID_ADPCM_IMA_EA_SEAD:
1464         for (n = nb_samples >> (1 - st); n > 0; n--) {
1465             int byte = bytestream2_get_byteu(&gb);
1466             *samples++ = adpcm_ima_expand_nibble(&c->status[0],  byte >> 4,   6);
1467             *samples++ = adpcm_ima_expand_nibble(&c->status[st], byte & 0x0F, 6);
1468         }
1469         break;
1470     case AV_CODEC_ID_ADPCM_EA:
1471     {
1472         int previous_left_sample, previous_right_sample;
1473         int current_left_sample, current_right_sample;
1474         int next_left_sample, next_right_sample;
1475         int coeff1l, coeff2l, coeff1r, coeff2r;
1476         int shift_left, shift_right;
1477
1478         /* Each EA ADPCM frame has a 12-byte header followed by 30-byte pieces,
1479            each coding 28 stereo samples. */
1480
1481         if(avctx->channels != 2)
1482             return AVERROR_INVALIDDATA;
1483
1484         current_left_sample   = sign_extend(bytestream2_get_le16u(&gb), 16);
1485         previous_left_sample  = sign_extend(bytestream2_get_le16u(&gb), 16);
1486         current_right_sample  = sign_extend(bytestream2_get_le16u(&gb), 16);
1487         previous_right_sample = sign_extend(bytestream2_get_le16u(&gb), 16);
1488
1489         for (count1 = 0; count1 < nb_samples / 28; count1++) {
1490             int byte = bytestream2_get_byteu(&gb);
1491             coeff1l = ea_adpcm_table[ byte >> 4       ];
1492             coeff2l = ea_adpcm_table[(byte >> 4  ) + 4];
1493             coeff1r = ea_adpcm_table[ byte & 0x0F];
1494             coeff2r = ea_adpcm_table[(byte & 0x0F) + 4];
1495
1496             byte = bytestream2_get_byteu(&gb);
1497             shift_left  = 20 - (byte >> 4);
1498             shift_right = 20 - (byte & 0x0F);
1499
1500             for (count2 = 0; count2 < 28; count2++) {
1501                 byte = bytestream2_get_byteu(&gb);
1502                 next_left_sample  = sign_extend(byte >> 4, 4) * (1 << shift_left);
1503                 next_right_sample = sign_extend(byte,      4) * (1 << shift_right);
1504
1505                 next_left_sample = (next_left_sample +
1506                     (current_left_sample * coeff1l) +
1507                     (previous_left_sample * coeff2l) + 0x80) >> 8;
1508                 next_right_sample = (next_right_sample +
1509                     (current_right_sample * coeff1r) +
1510                     (previous_right_sample * coeff2r) + 0x80) >> 8;
1511
1512                 previous_left_sample = current_left_sample;
1513                 current_left_sample = av_clip_int16(next_left_sample);
1514                 previous_right_sample = current_right_sample;
1515                 current_right_sample = av_clip_int16(next_right_sample);
1516                 *samples++ = current_left_sample;
1517                 *samples++ = current_right_sample;
1518             }
1519         }
1520
1521         bytestream2_skip(&gb, 2); // Skip terminating 0x0000
1522
1523         break;
1524     }
1525     case AV_CODEC_ID_ADPCM_EA_MAXIS_XA:
1526     {
1527         int coeff[2][2], shift[2];
1528
1529         for(channel = 0; channel < avctx->channels; channel++) {
1530             int byte = bytestream2_get_byteu(&gb);
1531             for (i=0; i<2; i++)
1532                 coeff[channel][i] = ea_adpcm_table[(byte >> 4) + 4*i];
1533             shift[channel] = 20 - (byte & 0x0F);
1534         }
1535         for (count1 = 0; count1 < nb_samples / 2; count1++) {
1536             int byte[2];
1537
1538             byte[0] = bytestream2_get_byteu(&gb);
1539             if (st) byte[1] = bytestream2_get_byteu(&gb);
1540             for(i = 4; i >= 0; i-=4) { /* Pairwise samples LL RR (st) or LL LL (mono) */
1541                 for(channel = 0; channel < avctx->channels; channel++) {
1542                     int sample = sign_extend(byte[channel] >> i, 4) * (1 << shift[channel]);
1543                     sample = (sample +
1544                              c->status[channel].sample1 * coeff[channel][0] +
1545                              c->status[channel].sample2 * coeff[channel][1] + 0x80) >> 8;
1546                     c->status[channel].sample2 = c->status[channel].sample1;
1547                     c->status[channel].sample1 = av_clip_int16(sample);
1548                     *samples++ = c->status[channel].sample1;
1549                 }
1550             }
1551         }
1552         bytestream2_seek(&gb, 0, SEEK_END);
1553         break;
1554     }
1555     case AV_CODEC_ID_ADPCM_EA_R1:
1556     case AV_CODEC_ID_ADPCM_EA_R2:
1557     case AV_CODEC_ID_ADPCM_EA_R3: {
1558         /* channel numbering
1559            2chan: 0=fl, 1=fr
1560            4chan: 0=fl, 1=rl, 2=fr, 3=rr
1561            6chan: 0=fl, 1=c,  2=fr, 3=rl,  4=rr, 5=sub */
1562         const int big_endian = avctx->codec->id == AV_CODEC_ID_ADPCM_EA_R3;
1563         int previous_sample, current_sample, next_sample;
1564         int coeff1, coeff2;
1565         int shift;
1566         unsigned int channel;
1567         uint16_t *samplesC;
1568         int count = 0;
1569         int offsets[6];
1570
1571         for (channel=0; channel<avctx->channels; channel++)
1572             offsets[channel] = (big_endian ? bytestream2_get_be32(&gb) :
1573                                              bytestream2_get_le32(&gb)) +
1574                                (avctx->channels + 1) * 4;
1575
1576         for (channel=0; channel<avctx->channels; channel++) {
1577             bytestream2_seek(&gb, offsets[channel], SEEK_SET);
1578             samplesC = samples_p[channel];
1579
1580             if (avctx->codec->id == AV_CODEC_ID_ADPCM_EA_R1) {
1581                 current_sample  = sign_extend(bytestream2_get_le16(&gb), 16);
1582                 previous_sample = sign_extend(bytestream2_get_le16(&gb), 16);
1583             } else {
1584                 current_sample  = c->status[channel].predictor;
1585                 previous_sample = c->status[channel].prev_sample;
1586             }
1587
1588             for (count1 = 0; count1 < nb_samples / 28; count1++) {
1589                 int byte = bytestream2_get_byte(&gb);
1590                 if (byte == 0xEE) {  /* only seen in R2 and R3 */
1591                     current_sample  = sign_extend(bytestream2_get_be16(&gb), 16);
1592                     previous_sample = sign_extend(bytestream2_get_be16(&gb), 16);
1593
1594                     for (count2=0; count2<28; count2++)
1595                         *samplesC++ = sign_extend(bytestream2_get_be16(&gb), 16);
1596                 } else {
1597                     coeff1 = ea_adpcm_table[ byte >> 4     ];
1598                     coeff2 = ea_adpcm_table[(byte >> 4) + 4];
1599                     shift = 20 - (byte & 0x0F);
1600
1601                     for (count2=0; count2<28; count2++) {
1602                         if (count2 & 1)
1603                             next_sample = (unsigned)sign_extend(byte,    4) << shift;
1604                         else {
1605                             byte = bytestream2_get_byte(&gb);
1606                             next_sample = (unsigned)sign_extend(byte >> 4, 4) << shift;
1607                         }
1608
1609                         next_sample += (current_sample  * coeff1) +
1610                                        (previous_sample * coeff2);
1611                         next_sample = av_clip_int16(next_sample >> 8);
1612
1613                         previous_sample = current_sample;
1614                         current_sample  = next_sample;
1615                         *samplesC++ = current_sample;
1616                     }
1617                 }
1618             }
1619             if (!count) {
1620                 count = count1;
1621             } else if (count != count1) {
1622                 av_log(avctx, AV_LOG_WARNING, "per-channel sample count mismatch\n");
1623                 count = FFMAX(count, count1);
1624             }
1625
1626             if (avctx->codec->id != AV_CODEC_ID_ADPCM_EA_R1) {
1627                 c->status[channel].predictor   = current_sample;
1628                 c->status[channel].prev_sample = previous_sample;
1629             }
1630         }
1631
1632         frame->nb_samples = count * 28;
1633         bytestream2_seek(&gb, 0, SEEK_END);
1634         break;
1635     }
1636     case AV_CODEC_ID_ADPCM_EA_XAS:
1637         for (channel=0; channel<avctx->channels; channel++) {
1638             int coeff[2][4], shift[4];
1639             int16_t *s = samples_p[channel];
1640             for (n = 0; n < 4; n++, s += 32) {
1641                 int val = sign_extend(bytestream2_get_le16u(&gb), 16);
1642                 for (i=0; i<2; i++)
1643                     coeff[i][n] = ea_adpcm_table[(val&0x0F)+4*i];
1644                 s[0] = val & ~0x0F;
1645
1646                 val = sign_extend(bytestream2_get_le16u(&gb), 16);
1647                 shift[n] = 20 - (val & 0x0F);
1648                 s[1] = val & ~0x0F;
1649             }
1650
1651             for (m=2; m<32; m+=2) {
1652                 s = &samples_p[channel][m];
1653                 for (n = 0; n < 4; n++, s += 32) {
1654                     int level, pred;
1655                     int byte = bytestream2_get_byteu(&gb);
1656
1657                     level = sign_extend(byte >> 4, 4) * (1 << shift[n]);
1658                     pred  = s[-1] * coeff[0][n] + s[-2] * coeff[1][n];
1659                     s[0]  = av_clip_int16((level + pred + 0x80) >> 8);
1660
1661                     level = sign_extend(byte, 4) * (1 << shift[n]);
1662                     pred  = s[0] * coeff[0][n] + s[-1] * coeff[1][n];
1663                     s[1]  = av_clip_int16((level + pred + 0x80) >> 8);
1664                 }
1665             }
1666         }
1667         break;
1668     case AV_CODEC_ID_ADPCM_IMA_AMV:
1669         av_assert0(avctx->channels == 1);
1670
1671         /*
1672          * Header format:
1673          *   int16_t  predictor;
1674          *   uint8_t  step_index;
1675          *   uint8_t  reserved;
1676          *   uint32_t frame_size;
1677          *
1678          * Some implementations have step_index as 16-bits, but others
1679          * only use the lower 8 and store garbage in the upper 8.
1680          */
1681         c->status[0].predictor = sign_extend(bytestream2_get_le16u(&gb), 16);
1682         c->status[0].step_index = bytestream2_get_byteu(&gb);
1683         bytestream2_skipu(&gb, 5);
1684         if (c->status[0].step_index > 88u) {
1685             av_log(avctx, AV_LOG_ERROR, "ERROR: step_index = %i\n",
1686                    c->status[0].step_index);
1687             return AVERROR_INVALIDDATA;
1688         }
1689
1690         for (n = nb_samples >> 1; n > 0; n--) {
1691             int v = bytestream2_get_byteu(&gb);
1692
1693             *samples++ = adpcm_ima_expand_nibble(&c->status[0], v >> 4, 3);
1694             *samples++ = adpcm_ima_expand_nibble(&c->status[0], v & 0xf, 3);
1695         }
1696
1697         if (nb_samples & 1) {
1698             int v = bytestream2_get_byteu(&gb);
1699             *samples++ = adpcm_ima_expand_nibble(&c->status[0], v >> 4, 3);
1700
1701             if (v & 0x0F) {
1702                 /* Holds true on all the http://samples.mplayerhq.hu/amv samples. */
1703                 av_log(avctx, AV_LOG_WARNING, "Last nibble set on packet with odd sample count.\n");
1704                 av_log(avctx, AV_LOG_WARNING, "Sample will be skipped.\n");
1705             }
1706         }
1707         break;
1708     case AV_CODEC_ID_ADPCM_IMA_SMJPEG:
1709         for (i = 0; i < avctx->channels; i++) {
1710             c->status[i].predictor = sign_extend(bytestream2_get_be16u(&gb), 16);
1711             c->status[i].step_index = bytestream2_get_byteu(&gb);
1712             bytestream2_skipu(&gb, 1);
1713             if (c->status[i].step_index > 88u) {
1714                 av_log(avctx, AV_LOG_ERROR, "ERROR: step_index = %i\n",
1715                        c->status[i].step_index);
1716                 return AVERROR_INVALIDDATA;
1717             }
1718         }
1719
1720         for (n = nb_samples >> (1 - st); n > 0; n--) {
1721             int v = bytestream2_get_byteu(&gb);
1722
1723             *samples++ = adpcm_ima_qt_expand_nibble(&c->status[0 ], v >> 4 );
1724             *samples++ = adpcm_ima_qt_expand_nibble(&c->status[st], v & 0xf);
1725         }
1726         break;
1727     case AV_CODEC_ID_ADPCM_CT:
1728         for (n = nb_samples >> (1 - st); n > 0; n--) {
1729             int v = bytestream2_get_byteu(&gb);
1730             *samples++ = adpcm_ct_expand_nibble(&c->status[0 ], v >> 4  );
1731             *samples++ = adpcm_ct_expand_nibble(&c->status[st], v & 0x0F);
1732         }
1733         break;
1734     case AV_CODEC_ID_ADPCM_SBPRO_4:
1735     case AV_CODEC_ID_ADPCM_SBPRO_3:
1736     case AV_CODEC_ID_ADPCM_SBPRO_2:
1737         if (!c->status[0].step_index) {
1738             /* the first byte is a raw sample */
1739             *samples++ = 128 * (bytestream2_get_byteu(&gb) - 0x80);
1740             if (st)
1741                 *samples++ = 128 * (bytestream2_get_byteu(&gb) - 0x80);
1742             c->status[0].step_index = 1;
1743             nb_samples--;
1744         }
1745         if (avctx->codec->id == AV_CODEC_ID_ADPCM_SBPRO_4) {
1746             for (n = nb_samples >> (1 - st); n > 0; n--) {
1747                 int byte = bytestream2_get_byteu(&gb);
1748                 *samples++ = adpcm_sbpro_expand_nibble(&c->status[0],
1749                                                        byte >> 4,   4, 0);
1750                 *samples++ = adpcm_sbpro_expand_nibble(&c->status[st],
1751                                                        byte & 0x0F, 4, 0);
1752             }
1753         } else if (avctx->codec->id == AV_CODEC_ID_ADPCM_SBPRO_3) {
1754             for (n = (nb_samples<<st) / 3; n > 0; n--) {
1755                 int byte = bytestream2_get_byteu(&gb);
1756                 *samples++ = adpcm_sbpro_expand_nibble(&c->status[0],
1757                                                         byte >> 5        , 3, 0);
1758                 *samples++ = adpcm_sbpro_expand_nibble(&c->status[0],
1759                                                        (byte >> 2) & 0x07, 3, 0);
1760                 *samples++ = adpcm_sbpro_expand_nibble(&c->status[0],
1761                                                         byte & 0x03,       2, 0);
1762             }
1763         } else {
1764             for (n = nb_samples >> (2 - st); n > 0; n--) {
1765                 int byte = bytestream2_get_byteu(&gb);
1766                 *samples++ = adpcm_sbpro_expand_nibble(&c->status[0],
1767                                                         byte >> 6        , 2, 2);
1768                 *samples++ = adpcm_sbpro_expand_nibble(&c->status[st],
1769                                                        (byte >> 4) & 0x03, 2, 2);
1770                 *samples++ = adpcm_sbpro_expand_nibble(&c->status[0],
1771                                                        (byte >> 2) & 0x03, 2, 2);
1772                 *samples++ = adpcm_sbpro_expand_nibble(&c->status[st],
1773                                                         byte & 0x03,       2, 2);
1774             }
1775         }
1776         break;
1777     case AV_CODEC_ID_ADPCM_SWF:
1778         adpcm_swf_decode(avctx, buf, buf_size, samples);
1779         bytestream2_seek(&gb, 0, SEEK_END);
1780         break;
1781     case AV_CODEC_ID_ADPCM_YAMAHA:
1782         for (n = nb_samples >> (1 - st); n > 0; n--) {
1783             int v = bytestream2_get_byteu(&gb);
1784             *samples++ = adpcm_yamaha_expand_nibble(&c->status[0 ], v & 0x0F);
1785             *samples++ = adpcm_yamaha_expand_nibble(&c->status[st], v >> 4  );
1786         }
1787         break;
1788     case AV_CODEC_ID_ADPCM_AICA:
1789         for (channel = 0; channel < avctx->channels; channel++) {
1790             samples = samples_p[channel];
1791             for (n = nb_samples >> 1; n > 0; n--) {
1792                 int v = bytestream2_get_byteu(&gb);
1793                 *samples++ = adpcm_yamaha_expand_nibble(&c->status[channel], v & 0x0F);
1794                 *samples++ = adpcm_yamaha_expand_nibble(&c->status[channel], v >> 4  );
1795             }
1796         }
1797         break;
1798     case AV_CODEC_ID_ADPCM_AFC:
1799     {
1800         int samples_per_block;
1801         int blocks;
1802
1803         if (avctx->extradata && avctx->extradata_size == 1 && avctx->extradata[0]) {
1804             samples_per_block = avctx->extradata[0] / 16;
1805             blocks = nb_samples / avctx->extradata[0];
1806         } else {
1807             samples_per_block = nb_samples / 16;
1808             blocks = 1;
1809         }
1810
1811         for (m = 0; m < blocks; m++) {
1812         for (channel = 0; channel < avctx->channels; channel++) {
1813             int prev1 = c->status[channel].sample1;
1814             int prev2 = c->status[channel].sample2;
1815
1816             samples = samples_p[channel] + m * 16;
1817             /* Read in every sample for this channel.  */
1818             for (i = 0; i < samples_per_block; i++) {
1819                 int byte = bytestream2_get_byteu(&gb);
1820                 int scale = 1 << (byte >> 4);
1821                 int index = byte & 0xf;
1822                 int factor1 = ff_adpcm_afc_coeffs[0][index];
1823                 int factor2 = ff_adpcm_afc_coeffs[1][index];
1824
1825                 /* Decode 16 samples.  */
1826                 for (n = 0; n < 16; n++) {
1827                     int32_t sampledat;
1828
1829                     if (n & 1) {
1830                         sampledat = sign_extend(byte, 4);
1831                     } else {
1832                         byte = bytestream2_get_byteu(&gb);
1833                         sampledat = sign_extend(byte >> 4, 4);
1834                     }
1835
1836                     sampledat = ((prev1 * factor1 + prev2 * factor2) >> 11) +
1837                                 sampledat * scale;
1838                     *samples = av_clip_int16(sampledat);
1839                     prev2 = prev1;
1840                     prev1 = *samples++;
1841                 }
1842             }
1843
1844             c->status[channel].sample1 = prev1;
1845             c->status[channel].sample2 = prev2;
1846         }
1847         }
1848         bytestream2_seek(&gb, 0, SEEK_END);
1849         break;
1850     }
1851     case AV_CODEC_ID_ADPCM_THP:
1852     case AV_CODEC_ID_ADPCM_THP_LE:
1853     {
1854         int table[14][16];
1855         int ch;
1856
1857 #define THP_GET16(g) \
1858     sign_extend( \
1859         avctx->codec->id == AV_CODEC_ID_ADPCM_THP_LE ? \
1860         bytestream2_get_le16u(&(g)) : \
1861         bytestream2_get_be16u(&(g)), 16)
1862
1863         if (avctx->extradata) {
1864             GetByteContext tb;
1865             if (avctx->extradata_size < 32 * avctx->channels) {
1866                 av_log(avctx, AV_LOG_ERROR, "Missing coeff table\n");
1867                 return AVERROR_INVALIDDATA;
1868             }
1869
1870             bytestream2_init(&tb, avctx->extradata, avctx->extradata_size);
1871             for (i = 0; i < avctx->channels; i++)
1872                 for (n = 0; n < 16; n++)
1873                     table[i][n] = THP_GET16(tb);
1874         } else {
1875             for (i = 0; i < avctx->channels; i++)
1876                 for (n = 0; n < 16; n++)
1877                     table[i][n] = THP_GET16(gb);
1878
1879             if (!c->has_status) {
1880                 /* Initialize the previous sample.  */
1881                 for (i = 0; i < avctx->channels; i++) {
1882                     c->status[i].sample1 = THP_GET16(gb);
1883                     c->status[i].sample2 = THP_GET16(gb);
1884                 }
1885                 c->has_status = 1;
1886             } else {
1887                 bytestream2_skip(&gb, avctx->channels * 4);
1888             }
1889         }
1890
1891         for (ch = 0; ch < avctx->channels; ch++) {
1892             samples = samples_p[ch];
1893
1894             /* Read in every sample for this channel.  */
1895             for (i = 0; i < (nb_samples + 13) / 14; i++) {
1896                 int byte = bytestream2_get_byteu(&gb);
1897                 int index = (byte >> 4) & 7;
1898                 unsigned int exp = byte & 0x0F;
1899                 int64_t factor1 = table[ch][index * 2];
1900                 int64_t factor2 = table[ch][index * 2 + 1];
1901
1902                 /* Decode 14 samples.  */
1903                 for (n = 0; n < 14 && (i * 14 + n < nb_samples); n++) {
1904                     int32_t sampledat;
1905
1906                     if (n & 1) {
1907                         sampledat = sign_extend(byte, 4);
1908                     } else {
1909                         byte = bytestream2_get_byteu(&gb);
1910                         sampledat = sign_extend(byte >> 4, 4);
1911                     }
1912
1913                     sampledat = ((c->status[ch].sample1 * factor1
1914                                 + c->status[ch].sample2 * factor2) >> 11) + sampledat * (1 << exp);
1915                     *samples = av_clip_int16(sampledat);
1916                     c->status[ch].sample2 = c->status[ch].sample1;
1917                     c->status[ch].sample1 = *samples++;
1918                 }
1919             }
1920         }
1921         break;
1922     }
1923     case AV_CODEC_ID_ADPCM_DTK:
1924         for (channel = 0; channel < avctx->channels; channel++) {
1925             samples = samples_p[channel];
1926
1927             /* Read in every sample for this channel.  */
1928             for (i = 0; i < nb_samples / 28; i++) {
1929                 int byte, header;
1930                 if (channel)
1931                     bytestream2_skipu(&gb, 1);
1932                 header = bytestream2_get_byteu(&gb);
1933                 bytestream2_skipu(&gb, 3 - channel);
1934
1935                 /* Decode 28 samples.  */
1936                 for (n = 0; n < 28; n++) {
1937                     int32_t sampledat, prev;
1938
1939                     switch (header >> 4) {
1940                     case 1:
1941                         prev = (c->status[channel].sample1 * 0x3c);
1942                         break;
1943                     case 2:
1944                         prev = (c->status[channel].sample1 * 0x73) - (c->status[channel].sample2 * 0x34);
1945                         break;
1946                     case 3:
1947                         prev = (c->status[channel].sample1 * 0x62) - (c->status[channel].sample2 * 0x37);
1948                         break;
1949                     default:
1950                         prev = 0;
1951                     }
1952
1953                     prev = av_clip_intp2((prev + 0x20) >> 6, 21);
1954
1955                     byte = bytestream2_get_byteu(&gb);
1956                     if (!channel)
1957                         sampledat = sign_extend(byte, 4);
1958                     else
1959                         sampledat = sign_extend(byte >> 4, 4);
1960
1961                     sampledat = ((sampledat * (1 << 12)) >> (header & 0xf)) * (1 << 6) + prev;
1962                     *samples++ = av_clip_int16(sampledat >> 6);
1963                     c->status[channel].sample2 = c->status[channel].sample1;
1964                     c->status[channel].sample1 = sampledat;
1965                 }
1966             }
1967             if (!channel)
1968                 bytestream2_seek(&gb, 0, SEEK_SET);
1969         }
1970         break;
1971     case AV_CODEC_ID_ADPCM_PSX:
1972         for (int block = 0; block < avpkt->size / FFMAX(avctx->block_align, 16 * avctx->channels); block++) {
1973             int nb_samples_per_block = 28 * FFMAX(avctx->block_align, 16 * avctx->channels) / (16 * avctx->channels);
1974             for (channel = 0; channel < avctx->channels; channel++) {
1975                 samples = samples_p[channel] + block * nb_samples_per_block;
1976                 av_assert0((block + 1) * nb_samples_per_block <= nb_samples);
1977
1978                 /* Read in every sample for this channel.  */
1979                 for (i = 0; i < nb_samples_per_block / 28; i++) {
1980                     int filter, shift, flag, byte;
1981
1982                     filter = bytestream2_get_byteu(&gb);
1983                     shift  = filter & 0xf;
1984                     filter = filter >> 4;
1985                     if (filter >= FF_ARRAY_ELEMS(xa_adpcm_table))
1986                         return AVERROR_INVALIDDATA;
1987                     flag   = bytestream2_get_byteu(&gb);
1988
1989                     /* Decode 28 samples.  */
1990                     for (n = 0; n < 28; n++) {
1991                         int sample = 0, scale;
1992
1993                         if (flag < 0x07) {
1994                             if (n & 1) {
1995                                 scale = sign_extend(byte >> 4, 4);
1996                             } else {
1997                                 byte  = bytestream2_get_byteu(&gb);
1998                                 scale = sign_extend(byte, 4);
1999                             }
2000
2001                             scale  = scale * (1 << 12);
2002                             sample = (int)((scale >> shift) + (c->status[channel].sample1 * xa_adpcm_table[filter][0] + c->status[channel].sample2 * xa_adpcm_table[filter][1]) / 64);
2003                         }
2004                         *samples++ = av_clip_int16(sample);
2005                         c->status[channel].sample2 = c->status[channel].sample1;
2006                         c->status[channel].sample1 = sample;
2007                     }
2008                 }
2009             }
2010         }
2011         break;
2012     case AV_CODEC_ID_ADPCM_ARGO:
2013         /*
2014          * The format of each block:
2015          *   uint8_t left_control;
2016          *   uint4_t left_samples[nb_samples];
2017          *   ---- and if stereo ----
2018          *   uint8_t right_control;
2019          *   uint4_t right_samples[nb_samples];
2020          *
2021          * Format of the control byte:
2022          * MSB [SSSSRDRR] LSB
2023          *   S = (Shift Amount - 2)
2024          *   D = Decoder flag.
2025          *   R = Reserved
2026          *
2027          * Each block relies on the previous two samples of each channel.
2028          * They should be 0 initially.
2029          */
2030         for (int block = 0; block < avpkt->size / avctx->block_align; block++) {
2031             for (channel = 0; channel < avctx->channels; channel++) {
2032                 int control, shift;
2033
2034                 samples = samples_p[channel] + block * 32;
2035                 cs = c->status + channel;
2036
2037                 /* Get the control byte and decode the samples, 2 at a time. */
2038                 control = bytestream2_get_byteu(&gb);
2039                 shift = (control >> 4) + 2;
2040
2041                 for (n = 0; n < 16; n++) {
2042                     int sample = bytestream2_get_byteu(&gb);
2043                     *samples++ = ff_adpcm_argo_expand_nibble(cs, sample >> 4, shift, control & 0x04);
2044                     *samples++ = ff_adpcm_argo_expand_nibble(cs, sample >> 0, shift, control & 0x04);
2045                 }
2046             }
2047         }
2048         break;
2049     case AV_CODEC_ID_ADPCM_ZORK:
2050         for (n = 0; n < nb_samples * avctx->channels; n++) {
2051             int v = bytestream2_get_byteu(&gb);
2052             *samples++ = adpcm_zork_expand_nibble(&c->status[n % avctx->channels], v);
2053         }
2054         break;
2055     case AV_CODEC_ID_ADPCM_IMA_MTF:
2056         for (n = nb_samples / 2; n > 0; n--) {
2057             for (channel = 0; channel < avctx->channels; channel++) {
2058                 int v = bytestream2_get_byteu(&gb);
2059                 *samples++  = adpcm_ima_mtf_expand_nibble(&c->status[channel], v >> 4);
2060                 samples[st] = adpcm_ima_mtf_expand_nibble(&c->status[channel], v & 0x0F);
2061             }
2062             samples += avctx->channels;
2063         }
2064         break;
2065     default:
2066         av_assert0(0); // unsupported codec_id should not happen
2067     }
2068
2069     if (avpkt->size && bytestream2_tell(&gb) == 0) {
2070         av_log(avctx, AV_LOG_ERROR, "Nothing consumed\n");
2071         return AVERROR_INVALIDDATA;
2072     }
2073
2074     *got_frame_ptr = 1;
2075
2076     if (avpkt->size < bytestream2_tell(&gb)) {
2077         av_log(avctx, AV_LOG_ERROR, "Overread of %d < %d\n", avpkt->size, bytestream2_tell(&gb));
2078         return avpkt->size;
2079     }
2080
2081     return bytestream2_tell(&gb);
2082 }
2083
2084 static void adpcm_flush(AVCodecContext *avctx)
2085 {
2086     ADPCMDecodeContext *c = avctx->priv_data;
2087
2088     /* Just nuke the entire state and re-init. */
2089     memset(c, 0, sizeof(ADPCMDecodeContext));
2090
2091     switch(avctx->codec_id) {
2092     case AV_CODEC_ID_ADPCM_CT:
2093         c->status[0].step = c->status[1].step = 511;
2094         break;
2095
2096     case AV_CODEC_ID_ADPCM_IMA_APC:
2097         if (avctx->extradata && avctx->extradata_size >= 8) {
2098             c->status[0].predictor = av_clip_intp2(AV_RL32(avctx->extradata    ), 18);
2099             c->status[1].predictor = av_clip_intp2(AV_RL32(avctx->extradata + 4), 18);
2100         }
2101         break;
2102
2103     case AV_CODEC_ID_ADPCM_IMA_APM:
2104         if (avctx->extradata && avctx->extradata_size >= 28) {
2105             c->status[0].predictor  = av_clip_intp2(AV_RL32(avctx->extradata + 16), 18);
2106             c->status[0].step_index = av_clip(AV_RL32(avctx->extradata + 20), 0, 88);
2107             c->status[1].predictor  = av_clip_intp2(AV_RL32(avctx->extradata + 4), 18);
2108             c->status[1].step_index = av_clip(AV_RL32(avctx->extradata + 8), 0, 88);
2109         }
2110         break;
2111
2112     case AV_CODEC_ID_ADPCM_IMA_WS:
2113         if (avctx->extradata && avctx->extradata_size >= 2)
2114             c->vqa_version = AV_RL16(avctx->extradata);
2115         break;
2116     default:
2117         /* Other codecs may want to handle this during decoding. */
2118         c->has_status = 0;
2119         return;
2120     }
2121
2122     c->has_status = 1;
2123 }
2124
2125
2126 static const enum AVSampleFormat sample_fmts_s16[]  = { AV_SAMPLE_FMT_S16,
2127                                                         AV_SAMPLE_FMT_NONE };
2128 static const enum AVSampleFormat sample_fmts_s16p[] = { AV_SAMPLE_FMT_S16P,
2129                                                         AV_SAMPLE_FMT_NONE };
2130 static const enum AVSampleFormat sample_fmts_both[] = { AV_SAMPLE_FMT_S16,
2131                                                         AV_SAMPLE_FMT_S16P,
2132                                                         AV_SAMPLE_FMT_NONE };
2133
2134 #define ADPCM_DECODER(id_, sample_fmts_, name_, long_name_) \
2135 const AVCodec ff_ ## name_ ## _decoder = {                  \
2136     .name           = #name_,                               \
2137     .long_name      = NULL_IF_CONFIG_SMALL(long_name_),     \
2138     .type           = AVMEDIA_TYPE_AUDIO,                   \
2139     .id             = id_,                                  \
2140     .priv_data_size = sizeof(ADPCMDecodeContext),           \
2141     .init           = adpcm_decode_init,                    \
2142     .decode         = adpcm_decode_frame,                   \
2143     .flush          = adpcm_flush,                          \
2144     .capabilities   = AV_CODEC_CAP_DR1,                     \
2145     .sample_fmts    = sample_fmts_,                         \
2146     .caps_internal  = FF_CODEC_CAP_INIT_THREADSAFE,         \
2147 }
2148
2149 /* Note: Do not forget to add new entries to the Makefile as well. */
2150 ADPCM_DECODER(AV_CODEC_ID_ADPCM_4XM,         sample_fmts_s16p, adpcm_4xm,         "ADPCM 4X Movie");
2151 ADPCM_DECODER(AV_CODEC_ID_ADPCM_AFC,         sample_fmts_s16p, adpcm_afc,         "ADPCM Nintendo Gamecube AFC");
2152 ADPCM_DECODER(AV_CODEC_ID_ADPCM_AGM,         sample_fmts_s16,  adpcm_agm,         "ADPCM AmuseGraphics Movie");
2153 ADPCM_DECODER(AV_CODEC_ID_ADPCM_AICA,        sample_fmts_s16p, adpcm_aica,        "ADPCM Yamaha AICA");
2154 ADPCM_DECODER(AV_CODEC_ID_ADPCM_ARGO,        sample_fmts_s16p, adpcm_argo,        "ADPCM Argonaut Games");
2155 ADPCM_DECODER(AV_CODEC_ID_ADPCM_CT,          sample_fmts_s16,  adpcm_ct,          "ADPCM Creative Technology");
2156 ADPCM_DECODER(AV_CODEC_ID_ADPCM_DTK,         sample_fmts_s16p, adpcm_dtk,         "ADPCM Nintendo Gamecube DTK");
2157 ADPCM_DECODER(AV_CODEC_ID_ADPCM_EA,          sample_fmts_s16,  adpcm_ea,          "ADPCM Electronic Arts");
2158 ADPCM_DECODER(AV_CODEC_ID_ADPCM_EA_MAXIS_XA, sample_fmts_s16,  adpcm_ea_maxis_xa, "ADPCM Electronic Arts Maxis CDROM XA");
2159 ADPCM_DECODER(AV_CODEC_ID_ADPCM_EA_R1,       sample_fmts_s16p, adpcm_ea_r1,       "ADPCM Electronic Arts R1");
2160 ADPCM_DECODER(AV_CODEC_ID_ADPCM_EA_R2,       sample_fmts_s16p, adpcm_ea_r2,       "ADPCM Electronic Arts R2");
2161 ADPCM_DECODER(AV_CODEC_ID_ADPCM_EA_R3,       sample_fmts_s16p, adpcm_ea_r3,       "ADPCM Electronic Arts R3");
2162 ADPCM_DECODER(AV_CODEC_ID_ADPCM_EA_XAS,      sample_fmts_s16p, adpcm_ea_xas,      "ADPCM Electronic Arts XAS");
2163 ADPCM_DECODER(AV_CODEC_ID_ADPCM_IMA_AMV,     sample_fmts_s16,  adpcm_ima_amv,     "ADPCM IMA AMV");
2164 ADPCM_DECODER(AV_CODEC_ID_ADPCM_IMA_APC,     sample_fmts_s16,  adpcm_ima_apc,     "ADPCM IMA CRYO APC");
2165 ADPCM_DECODER(AV_CODEC_ID_ADPCM_IMA_APM,     sample_fmts_s16,  adpcm_ima_apm,     "ADPCM IMA Ubisoft APM");
2166 ADPCM_DECODER(AV_CODEC_ID_ADPCM_IMA_CUNNING, sample_fmts_s16p, adpcm_ima_cunning, "ADPCM IMA Cunning Developments");
2167 ADPCM_DECODER(AV_CODEC_ID_ADPCM_IMA_DAT4,    sample_fmts_s16,  adpcm_ima_dat4,    "ADPCM IMA Eurocom DAT4");
2168 ADPCM_DECODER(AV_CODEC_ID_ADPCM_IMA_DK3,     sample_fmts_s16,  adpcm_ima_dk3,     "ADPCM IMA Duck DK3");
2169 ADPCM_DECODER(AV_CODEC_ID_ADPCM_IMA_DK4,     sample_fmts_s16,  adpcm_ima_dk4,     "ADPCM IMA Duck DK4");
2170 ADPCM_DECODER(AV_CODEC_ID_ADPCM_IMA_EA_EACS, sample_fmts_s16,  adpcm_ima_ea_eacs, "ADPCM IMA Electronic Arts EACS");
2171 ADPCM_DECODER(AV_CODEC_ID_ADPCM_IMA_EA_SEAD, sample_fmts_s16,  adpcm_ima_ea_sead, "ADPCM IMA Electronic Arts SEAD");
2172 ADPCM_DECODER(AV_CODEC_ID_ADPCM_IMA_ISS,     sample_fmts_s16,  adpcm_ima_iss,     "ADPCM IMA Funcom ISS");
2173 ADPCM_DECODER(AV_CODEC_ID_ADPCM_IMA_MOFLEX,  sample_fmts_s16p, adpcm_ima_moflex,  "ADPCM IMA MobiClip MOFLEX");
2174 ADPCM_DECODER(AV_CODEC_ID_ADPCM_IMA_MTF,     sample_fmts_s16,  adpcm_ima_mtf,     "ADPCM IMA Capcom's MT Framework");
2175 ADPCM_DECODER(AV_CODEC_ID_ADPCM_IMA_OKI,     sample_fmts_s16,  adpcm_ima_oki,     "ADPCM IMA Dialogic OKI");
2176 ADPCM_DECODER(AV_CODEC_ID_ADPCM_IMA_QT,      sample_fmts_s16p, adpcm_ima_qt,      "ADPCM IMA QuickTime");
2177 ADPCM_DECODER(AV_CODEC_ID_ADPCM_IMA_RAD,     sample_fmts_s16,  adpcm_ima_rad,     "ADPCM IMA Radical");
2178 ADPCM_DECODER(AV_CODEC_ID_ADPCM_IMA_SSI,     sample_fmts_s16,  adpcm_ima_ssi,     "ADPCM IMA Simon & Schuster Interactive");
2179 ADPCM_DECODER(AV_CODEC_ID_ADPCM_IMA_SMJPEG,  sample_fmts_s16,  adpcm_ima_smjpeg,  "ADPCM IMA Loki SDL MJPEG");
2180 ADPCM_DECODER(AV_CODEC_ID_ADPCM_IMA_ALP,     sample_fmts_s16,  adpcm_ima_alp,     "ADPCM IMA High Voltage Software ALP");
2181 ADPCM_DECODER(AV_CODEC_ID_ADPCM_IMA_WAV,     sample_fmts_s16p, adpcm_ima_wav,     "ADPCM IMA WAV");
2182 ADPCM_DECODER(AV_CODEC_ID_ADPCM_IMA_WS,      sample_fmts_both, adpcm_ima_ws,      "ADPCM IMA Westwood");
2183 ADPCM_DECODER(AV_CODEC_ID_ADPCM_MS,          sample_fmts_both, adpcm_ms,          "ADPCM Microsoft");
2184 ADPCM_DECODER(AV_CODEC_ID_ADPCM_MTAF,        sample_fmts_s16p, adpcm_mtaf,        "ADPCM MTAF");
2185 ADPCM_DECODER(AV_CODEC_ID_ADPCM_PSX,         sample_fmts_s16p, adpcm_psx,         "ADPCM Playstation");
2186 ADPCM_DECODER(AV_CODEC_ID_ADPCM_SBPRO_2,     sample_fmts_s16,  adpcm_sbpro_2,     "ADPCM Sound Blaster Pro 2-bit");
2187 ADPCM_DECODER(AV_CODEC_ID_ADPCM_SBPRO_3,     sample_fmts_s16,  adpcm_sbpro_3,     "ADPCM Sound Blaster Pro 2.6-bit");
2188 ADPCM_DECODER(AV_CODEC_ID_ADPCM_SBPRO_4,     sample_fmts_s16,  adpcm_sbpro_4,     "ADPCM Sound Blaster Pro 4-bit");
2189 ADPCM_DECODER(AV_CODEC_ID_ADPCM_SWF,         sample_fmts_s16,  adpcm_swf,         "ADPCM Shockwave Flash");
2190 ADPCM_DECODER(AV_CODEC_ID_ADPCM_THP_LE,      sample_fmts_s16p, adpcm_thp_le,      "ADPCM Nintendo THP (little-endian)");
2191 ADPCM_DECODER(AV_CODEC_ID_ADPCM_THP,         sample_fmts_s16p, adpcm_thp,         "ADPCM Nintendo THP");
2192 ADPCM_DECODER(AV_CODEC_ID_ADPCM_XA,          sample_fmts_s16p, adpcm_xa,          "ADPCM CDROM XA");
2193 ADPCM_DECODER(AV_CODEC_ID_ADPCM_YAMAHA,      sample_fmts_s16,  adpcm_yamaha,      "ADPCM Yamaha");
2194 ADPCM_DECODER(AV_CODEC_ID_ADPCM_ZORK,        sample_fmts_s16,  adpcm_zork,        "ADPCM Zork");