]> git.sesse.net Git - ffmpeg/blob - libavcodec/adpcm.c
aarch64: vp9dsp: Fix vertical alignment in the init file
[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  *
16  * This file is part of Libav.
17  *
18  * Libav is free software; you can redistribute it and/or
19  * modify it under the terms of the GNU Lesser General Public
20  * License as published by the Free Software Foundation; either
21  * version 2.1 of the License, or (at your option) any later version.
22  *
23  * Libav is distributed in the hope that it will be useful,
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
26  * Lesser General Public License for more details.
27  *
28  * You should have received a copy of the GNU Lesser General Public
29  * License along with Libav; if not, write to the Free Software
30  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
31  */
32
33 #include "avcodec.h"
34 #include "bitstream.h"
35 #include "put_bits.h"
36 #include "bytestream.h"
37 #include "adpcm.h"
38 #include "adpcm_data.h"
39 #include "internal.h"
40
41 /**
42  * @file
43  * ADPCM decoders
44  * Features and limitations:
45  *
46  * Reference documents:
47  * http://wiki.multimedia.cx/index.php?title=Category:ADPCM_Audio_Codecs
48  * http://www.pcisys.net/~melanson/codecs/simpleaudio.html [dead]
49  * http://www.geocities.com/SiliconValley/8682/aud3.txt [dead]
50  * http://openquicktime.sourceforge.net/
51  * XAnim sources (xa_codec.c) http://xanim.polter.net/
52  * http://www.cs.ucla.edu/~leec/mediabench/applications.html [dead]
53  * SoX source code http://sox.sourceforge.net/
54  *
55  * CD-ROM XA:
56  * http://ku-www.ss.titech.ac.jp/~yatsushi/xaadpcm.html [dead]
57  * vagpack & depack http://homepages.compuserve.de/bITmASTER32/psx-index.html [dead]
58  * readstr http://www.geocities.co.jp/Playtown/2004/
59  */
60
61 /* These are for CD-ROM XA ADPCM */
62 static const int xa_adpcm_table[5][2] = {
63     {   0,   0 },
64     {  60,   0 },
65     { 115, -52 },
66     {  98, -55 },
67     { 122, -60 }
68 };
69
70 static const int ea_adpcm_table[] = {
71     0,  240,  460,  392,
72     0,    0, -208, -220,
73     0,    1,    3,    4,
74     7,    8,   10,   11,
75     0,   -1,   -3,   -4
76 };
77
78 // padded to zero where table size is less then 16
79 static const int swf_index_tables[4][16] = {
80     /*2*/ { -1, 2 },
81     /*3*/ { -1, -1, 2, 4 },
82     /*4*/ { -1, -1, -1, -1, 2, 4, 6, 8 },
83     /*5*/ { -1, -1, -1, -1, -1, -1, -1, -1, 1, 2, 4, 6, 8, 10, 13, 16 }
84 };
85
86 /* end of tables */
87
88 typedef struct ADPCMDecodeContext {
89     ADPCMChannelStatus status[6];
90     int vqa_version;                /**< VQA version. Used for ADPCM_IMA_WS */
91 } ADPCMDecodeContext;
92
93 static av_cold int adpcm_decode_init(AVCodecContext * avctx)
94 {
95     ADPCMDecodeContext *c = avctx->priv_data;
96     unsigned int min_channels = 1;
97     unsigned int max_channels = 2;
98
99     switch(avctx->codec->id) {
100     case AV_CODEC_ID_ADPCM_EA:
101         min_channels = 2;
102         break;
103     case AV_CODEC_ID_ADPCM_EA_R1:
104     case AV_CODEC_ID_ADPCM_EA_R2:
105     case AV_CODEC_ID_ADPCM_EA_R3:
106     case AV_CODEC_ID_ADPCM_EA_XAS:
107         max_channels = 6;
108         break;
109     }
110     if (avctx->channels < min_channels || avctx->channels > max_channels) {
111         av_log(avctx, AV_LOG_ERROR, "Invalid number of channels\n");
112         return AVERROR(EINVAL);
113     }
114
115     switch(avctx->codec->id) {
116     case AV_CODEC_ID_ADPCM_CT:
117         c->status[0].step = c->status[1].step = 511;
118         break;
119     case AV_CODEC_ID_ADPCM_IMA_WAV:
120         if (avctx->bits_per_coded_sample != 4) {
121             av_log(avctx, AV_LOG_ERROR, "Only 4-bit ADPCM IMA WAV files are supported\n");
122             return -1;
123         }
124         break;
125     case AV_CODEC_ID_ADPCM_IMA_APC:
126         if (avctx->extradata && avctx->extradata_size >= 8) {
127             c->status[0].predictor = AV_RL32(avctx->extradata);
128             c->status[1].predictor = AV_RL32(avctx->extradata + 4);
129         }
130         break;
131     case AV_CODEC_ID_ADPCM_IMA_WS:
132         if (avctx->extradata && avctx->extradata_size >= 2)
133             c->vqa_version = AV_RL16(avctx->extradata);
134         break;
135     default:
136         break;
137     }
138
139     switch(avctx->codec->id) {
140         case AV_CODEC_ID_ADPCM_IMA_QT:
141         case AV_CODEC_ID_ADPCM_IMA_WAV:
142         case AV_CODEC_ID_ADPCM_4XM:
143         case AV_CODEC_ID_ADPCM_XA:
144         case AV_CODEC_ID_ADPCM_EA_R1:
145         case AV_CODEC_ID_ADPCM_EA_R2:
146         case AV_CODEC_ID_ADPCM_EA_R3:
147         case AV_CODEC_ID_ADPCM_EA_XAS:
148         case AV_CODEC_ID_ADPCM_THP:
149             avctx->sample_fmt = AV_SAMPLE_FMT_S16P;
150             break;
151         case AV_CODEC_ID_ADPCM_IMA_WS:
152             avctx->sample_fmt = c->vqa_version == 3 ? AV_SAMPLE_FMT_S16P :
153                                                       AV_SAMPLE_FMT_S16;
154             break;
155         default:
156             avctx->sample_fmt = AV_SAMPLE_FMT_S16;
157     }
158
159     return 0;
160 }
161
162 static inline short adpcm_ima_expand_nibble(ADPCMChannelStatus *c, char nibble, int shift)
163 {
164     int step_index;
165     int predictor;
166     int sign, delta, diff, step;
167
168     step = ff_adpcm_step_table[c->step_index];
169     step_index = c->step_index + ff_adpcm_index_table[(unsigned)nibble];
170     step_index = av_clip(step_index, 0, 88);
171
172     sign = nibble & 8;
173     delta = nibble & 7;
174     /* perform direct multiplication instead of series of jumps proposed by
175      * the reference ADPCM implementation since modern CPUs can do the mults
176      * quickly enough */
177     diff = ((2 * delta + 1) * step) >> shift;
178     predictor = c->predictor;
179     if (sign) predictor -= diff;
180     else predictor += diff;
181
182     c->predictor = av_clip_int16(predictor);
183     c->step_index = step_index;
184
185     return (short)c->predictor;
186 }
187
188 static inline int adpcm_ima_qt_expand_nibble(ADPCMChannelStatus *c, int nibble, int shift)
189 {
190     int step_index;
191     int predictor;
192     int diff, step;
193
194     step = ff_adpcm_step_table[c->step_index];
195     step_index = c->step_index + ff_adpcm_index_table[nibble];
196     step_index = av_clip(step_index, 0, 88);
197
198     diff = step >> 3;
199     if (nibble & 4) diff += step;
200     if (nibble & 2) diff += step >> 1;
201     if (nibble & 1) diff += step >> 2;
202
203     if (nibble & 8)
204         predictor = c->predictor - diff;
205     else
206         predictor = c->predictor + diff;
207
208     c->predictor = av_clip_int16(predictor);
209     c->step_index = step_index;
210
211     return c->predictor;
212 }
213
214 static inline short adpcm_ms_expand_nibble(ADPCMChannelStatus *c, int nibble)
215 {
216     int predictor;
217
218     predictor = (((c->sample1) * (c->coeff1)) + ((c->sample2) * (c->coeff2))) / 64;
219     predictor += ((nibble & 0x08)?(nibble - 0x10):(nibble)) * c->idelta;
220
221     c->sample2 = c->sample1;
222     c->sample1 = av_clip_int16(predictor);
223     c->idelta = (ff_adpcm_AdaptationTable[(int)nibble] * c->idelta) >> 8;
224     if (c->idelta < 16) c->idelta = 16;
225
226     return c->sample1;
227 }
228
229 static inline short adpcm_ct_expand_nibble(ADPCMChannelStatus *c, char nibble)
230 {
231     int sign, delta, diff;
232     int new_step;
233
234     sign = nibble & 8;
235     delta = nibble & 7;
236     /* perform direct multiplication instead of series of jumps proposed by
237      * the reference ADPCM implementation since modern CPUs can do the mults
238      * quickly enough */
239     diff = ((2 * delta + 1) * c->step) >> 3;
240     /* predictor update is not so trivial: predictor is multiplied on 254/256 before updating */
241     c->predictor = ((c->predictor * 254) >> 8) + (sign ? -diff : diff);
242     c->predictor = av_clip_int16(c->predictor);
243     /* calculate new step and clamp it to range 511..32767 */
244     new_step = (ff_adpcm_AdaptationTable[nibble & 7] * c->step) >> 8;
245     c->step = av_clip(new_step, 511, 32767);
246
247     return (short)c->predictor;
248 }
249
250 static inline short adpcm_sbpro_expand_nibble(ADPCMChannelStatus *c, char nibble, int size, int shift)
251 {
252     int sign, delta, diff;
253
254     sign = nibble & (1<<(size-1));
255     delta = nibble & ((1<<(size-1))-1);
256     diff = delta << (7 + c->step + shift);
257
258     /* clamp result */
259     c->predictor = av_clip(c->predictor + (sign ? -diff : diff), -16384,16256);
260
261     /* calculate new step */
262     if (delta >= (2*size - 3) && c->step < 3)
263         c->step++;
264     else if (delta == 0 && c->step > 0)
265         c->step--;
266
267     return (short) c->predictor;
268 }
269
270 static inline short adpcm_yamaha_expand_nibble(ADPCMChannelStatus *c, unsigned char nibble)
271 {
272     if(!c->step) {
273         c->predictor = 0;
274         c->step = 127;
275     }
276
277     c->predictor += (c->step * ff_adpcm_yamaha_difflookup[nibble]) / 8;
278     c->predictor = av_clip_int16(c->predictor);
279     c->step = (c->step * ff_adpcm_yamaha_indexscale[nibble]) >> 8;
280     c->step = av_clip(c->step, 127, 24567);
281     return c->predictor;
282 }
283
284 static int xa_decode(AVCodecContext *avctx, int16_t *out0, int16_t *out1,
285                      const uint8_t *in, ADPCMChannelStatus *left,
286                      ADPCMChannelStatus *right, int channels, int sample_offset)
287 {
288     int i, j;
289     int shift,filter,f0,f1;
290     int s_1,s_2;
291     int d,s,t;
292
293     out0 += sample_offset;
294     if (channels == 1)
295         out1 = out0 + 28;
296     else
297         out1 += sample_offset;
298
299     for(i=0;i<4;i++) {
300         shift  = 12 - (in[4+i*2] & 15);
301         filter = in[4+i*2] >> 4;
302         if (filter > 4) {
303             av_log(avctx, AV_LOG_ERROR,
304                    "Invalid XA-ADPCM filter %d (max. allowed is 4)\n",
305                    filter);
306             return AVERROR_INVALIDDATA;
307         }
308         f0 = xa_adpcm_table[filter][0];
309         f1 = xa_adpcm_table[filter][1];
310
311         s_1 = left->sample1;
312         s_2 = left->sample2;
313
314         for(j=0;j<28;j++) {
315             d = in[16+i+j*4];
316
317             t = sign_extend(d, 4);
318             s = ( t<<shift ) + ((s_1*f0 + s_2*f1+32)>>6);
319             s_2 = s_1;
320             s_1 = av_clip_int16(s);
321             out0[j] = s_1;
322         }
323
324         if (channels == 2) {
325             left->sample1 = s_1;
326             left->sample2 = s_2;
327             s_1 = right->sample1;
328             s_2 = right->sample2;
329         }
330
331         shift  = 12 - (in[5+i*2] & 15);
332         filter = in[5+i*2] >> 4;
333         if (filter > 4) {
334             av_log(avctx, AV_LOG_ERROR,
335                    "Invalid XA-ADPCM filter %d (max. allowed is 4)\n",
336                    filter);
337             return AVERROR_INVALIDDATA;
338         }
339         f0 = xa_adpcm_table[filter][0];
340         f1 = xa_adpcm_table[filter][1];
341
342         for(j=0;j<28;j++) {
343             d = in[16+i+j*4];
344
345             t = sign_extend(d >> 4, 4);
346             s = ( t<<shift ) + ((s_1*f0 + s_2*f1+32)>>6);
347             s_2 = s_1;
348             s_1 = av_clip_int16(s);
349             out1[j] = s_1;
350         }
351
352         if (channels == 2) {
353             right->sample1 = s_1;
354             right->sample2 = s_2;
355         } else {
356             left->sample1 = s_1;
357             left->sample2 = s_2;
358         }
359
360         out0 += 28 * (3 - channels);
361         out1 += 28 * (3 - channels);
362     }
363
364     return 0;
365 }
366
367 static void adpcm_swf_decode(AVCodecContext *avctx, const uint8_t *buf, int buf_size, int16_t *samples)
368 {
369     ADPCMDecodeContext *c = avctx->priv_data;
370     BitstreamContext bc;
371     const int *table;
372     int k0, signmask, nb_bits, count;
373     int size = buf_size*8;
374     int i;
375
376     bitstream_init(&bc, buf, size);
377
378     //read bits & initial values
379     nb_bits = bitstream_read(&bc, 2)+2;
380     table = swf_index_tables[nb_bits-2];
381     k0 = 1 << (nb_bits-2);
382     signmask = 1 << (nb_bits-1);
383
384     while (bitstream_tell(&bc) <= size - 22 * avctx->channels) {
385         for (i = 0; i < avctx->channels; i++) {
386             *samples++              =
387             c->status[i].predictor  = bitstream_read_signed(&bc, 16);
388             c->status[i].step_index = bitstream_read(&bc, 6);
389         }
390
391         for (count = 0; bitstream_tell(&bc) <= size - nb_bits * avctx->channels && count < 4095; count++) {
392             int i;
393
394             for (i = 0; i < avctx->channels; i++) {
395                 // similar to IMA adpcm
396                 int delta = bitstream_read(&bc, nb_bits);
397                 int step = ff_adpcm_step_table[c->status[i].step_index];
398                 long vpdiff = 0; // vpdiff = (delta+0.5)*step/4
399                 int k = k0;
400
401                 do {
402                     if (delta & k)
403                         vpdiff += step;
404                     step >>= 1;
405                     k >>= 1;
406                 } while(k);
407                 vpdiff += step;
408
409                 if (delta & signmask)
410                     c->status[i].predictor -= vpdiff;
411                 else
412                     c->status[i].predictor += vpdiff;
413
414                 c->status[i].step_index += table[delta & (~signmask)];
415
416                 c->status[i].step_index = av_clip(c->status[i].step_index, 0, 88);
417                 c->status[i].predictor = av_clip_int16(c->status[i].predictor);
418
419                 *samples++ = c->status[i].predictor;
420             }
421         }
422     }
423 }
424
425 /**
426  * Get the number of samples that will be decoded from the packet.
427  * In one case, this is actually the maximum number of samples possible to
428  * decode with the given buf_size.
429  *
430  * @param[out] coded_samples set to the number of samples as coded in the
431  *                           packet, or 0 if the codec does not encode the
432  *                           number of samples in each frame.
433  */
434 static int get_nb_samples(AVCodecContext *avctx, GetByteContext *gb,
435                           int buf_size, int *coded_samples)
436 {
437     ADPCMDecodeContext *s = avctx->priv_data;
438     int nb_samples        = 0;
439     int ch                = avctx->channels;
440     int has_coded_samples = 0;
441     int header_size;
442
443     *coded_samples = 0;
444
445     switch (avctx->codec->id) {
446     /* constant, only check buf_size */
447     case AV_CODEC_ID_ADPCM_EA_XAS:
448         if (buf_size < 76 * ch)
449             return 0;
450         nb_samples = 128;
451         break;
452     case AV_CODEC_ID_ADPCM_IMA_QT:
453         if (buf_size < 34 * ch)
454             return 0;
455         nb_samples = 64;
456         break;
457     /* simple 4-bit adpcm */
458     case AV_CODEC_ID_ADPCM_CT:
459     case AV_CODEC_ID_ADPCM_IMA_APC:
460     case AV_CODEC_ID_ADPCM_IMA_EA_SEAD:
461     case AV_CODEC_ID_ADPCM_IMA_WS:
462     case AV_CODEC_ID_ADPCM_YAMAHA:
463         nb_samples = buf_size * 2 / ch;
464         break;
465     }
466     if (nb_samples)
467         return nb_samples;
468
469     /* simple 4-bit adpcm, with header */
470     header_size = 0;
471     switch (avctx->codec->id) {
472         case AV_CODEC_ID_ADPCM_4XM:
473         case AV_CODEC_ID_ADPCM_IMA_ISS:     header_size = 4 * ch;      break;
474         case AV_CODEC_ID_ADPCM_IMA_AMV:     header_size = 8;           break;
475         case AV_CODEC_ID_ADPCM_IMA_SMJPEG:  header_size = 4;           break;
476     }
477     if (header_size > 0)
478         return (buf_size - header_size) * 2 / ch;
479
480     /* more complex formats */
481     switch (avctx->codec->id) {
482     case AV_CODEC_ID_ADPCM_EA:
483         has_coded_samples = 1;
484         *coded_samples  = bytestream2_get_le32(gb);
485         *coded_samples -= *coded_samples % 28;
486         nb_samples      = (buf_size - 12) / 30 * 28;
487         break;
488     case AV_CODEC_ID_ADPCM_IMA_EA_EACS:
489         has_coded_samples = 1;
490         *coded_samples = bytestream2_get_le32(gb);
491         nb_samples     = (buf_size - (4 + 8 * ch)) * 2 / ch;
492         break;
493     case AV_CODEC_ID_ADPCM_EA_MAXIS_XA:
494         nb_samples = (buf_size - ch) / ch * 2;
495         break;
496     case AV_CODEC_ID_ADPCM_EA_R1:
497     case AV_CODEC_ID_ADPCM_EA_R2:
498     case AV_CODEC_ID_ADPCM_EA_R3:
499         /* maximum number of samples */
500         /* has internal offsets and a per-frame switch to signal raw 16-bit */
501         has_coded_samples = 1;
502         switch (avctx->codec->id) {
503         case AV_CODEC_ID_ADPCM_EA_R1:
504             header_size    = 4 + 9 * ch;
505             *coded_samples = bytestream2_get_le32(gb);
506             break;
507         case AV_CODEC_ID_ADPCM_EA_R2:
508             header_size    = 4 + 5 * ch;
509             *coded_samples = bytestream2_get_le32(gb);
510             break;
511         case AV_CODEC_ID_ADPCM_EA_R3:
512             header_size    = 4 + 5 * ch;
513             *coded_samples = bytestream2_get_be32(gb);
514             break;
515         }
516         *coded_samples -= *coded_samples % 28;
517         nb_samples      = (buf_size - header_size) * 2 / ch;
518         nb_samples     -= nb_samples % 28;
519         break;
520     case AV_CODEC_ID_ADPCM_IMA_DK3:
521         if (avctx->block_align > 0)
522             buf_size = FFMIN(buf_size, avctx->block_align);
523         nb_samples = ((buf_size - 16) * 2 / 3 * 4) / ch;
524         break;
525     case AV_CODEC_ID_ADPCM_IMA_DK4:
526         if (avctx->block_align > 0)
527             buf_size = FFMIN(buf_size, avctx->block_align);
528         nb_samples = 1 + (buf_size - 4 * ch) * 2 / ch;
529         break;
530     case AV_CODEC_ID_ADPCM_IMA_WAV:
531         if (avctx->block_align > 0)
532             buf_size = FFMIN(buf_size, avctx->block_align);
533         nb_samples = 1 + (buf_size - 4 * ch) / (4 * ch) * 8;
534         break;
535     case AV_CODEC_ID_ADPCM_MS:
536         if (avctx->block_align > 0)
537             buf_size = FFMIN(buf_size, avctx->block_align);
538         nb_samples = 2 + (buf_size - 7 * ch) * 2 / ch;
539         break;
540     case AV_CODEC_ID_ADPCM_SBPRO_2:
541     case AV_CODEC_ID_ADPCM_SBPRO_3:
542     case AV_CODEC_ID_ADPCM_SBPRO_4:
543     {
544         int samples_per_byte;
545         switch (avctx->codec->id) {
546         case AV_CODEC_ID_ADPCM_SBPRO_2: samples_per_byte = 4; break;
547         case AV_CODEC_ID_ADPCM_SBPRO_3: samples_per_byte = 3; break;
548         case AV_CODEC_ID_ADPCM_SBPRO_4: samples_per_byte = 2; break;
549         }
550         if (!s->status[0].step_index) {
551             nb_samples++;
552             buf_size -= ch;
553         }
554         nb_samples += buf_size * samples_per_byte / ch;
555         break;
556     }
557     case AV_CODEC_ID_ADPCM_SWF:
558     {
559         int buf_bits       = buf_size * 8 - 2;
560         int nbits          = (bytestream2_get_byte(gb) >> 6) + 2;
561         int block_hdr_size = 22 * ch;
562         int block_size     = block_hdr_size + nbits * ch * 4095;
563         int nblocks        = buf_bits / block_size;
564         int bits_left      = buf_bits - nblocks * block_size;
565         nb_samples         = nblocks * 4096;
566         if (bits_left >= block_hdr_size)
567             nb_samples += 1 + (bits_left - block_hdr_size) / (nbits * ch);
568         break;
569     }
570     case AV_CODEC_ID_ADPCM_THP:
571         has_coded_samples = 1;
572         bytestream2_skip(gb, 4); // channel size
573         *coded_samples  = bytestream2_get_be32(gb);
574         *coded_samples -= *coded_samples % 14;
575         nb_samples      = (buf_size - 80) / (8 * ch) * 14;
576         break;
577     case AV_CODEC_ID_ADPCM_XA:
578         nb_samples = (buf_size / 128) * 224 / ch;
579         break;
580     }
581
582     /* validate coded sample count */
583     if (has_coded_samples && (*coded_samples <= 0 || *coded_samples > nb_samples))
584         return AVERROR_INVALIDDATA;
585
586     return nb_samples;
587 }
588
589 static int adpcm_decode_frame(AVCodecContext *avctx, void *data,
590                               int *got_frame_ptr, AVPacket *avpkt)
591 {
592     AVFrame *frame     = data;
593     const uint8_t *buf = avpkt->data;
594     int buf_size = avpkt->size;
595     ADPCMDecodeContext *c = avctx->priv_data;
596     ADPCMChannelStatus *cs;
597     int n, m, channel, i;
598     short *samples;
599     int16_t **samples_p;
600     int st; /* stereo */
601     int count1, count2;
602     int nb_samples, coded_samples, ret;
603     GetByteContext gb;
604
605     bytestream2_init(&gb, buf, buf_size);
606     nb_samples = get_nb_samples(avctx, &gb, buf_size, &coded_samples);
607     if (nb_samples <= 0) {
608         av_log(avctx, AV_LOG_ERROR, "invalid number of samples in packet\n");
609         return AVERROR_INVALIDDATA;
610     }
611
612     /* get output buffer */
613     frame->nb_samples = nb_samples;
614     if ((ret = ff_get_buffer(avctx, frame, 0)) < 0) {
615         av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
616         return ret;
617     }
618     samples = (short *)frame->data[0];
619     samples_p = (int16_t **)frame->extended_data;
620
621     /* use coded_samples when applicable */
622     /* it is always <= nb_samples, so the output buffer will be large enough */
623     if (coded_samples) {
624         if (coded_samples != nb_samples)
625             av_log(avctx, AV_LOG_WARNING, "mismatch in coded sample count\n");
626         frame->nb_samples = nb_samples = coded_samples;
627     }
628
629     st = avctx->channels == 2 ? 1 : 0;
630
631     switch(avctx->codec->id) {
632     case AV_CODEC_ID_ADPCM_IMA_QT:
633         /* In QuickTime, IMA is encoded by chunks of 34 bytes (=64 samples).
634            Channel data is interleaved per-chunk. */
635         for (channel = 0; channel < avctx->channels; channel++) {
636             int predictor;
637             int step_index;
638             cs = &(c->status[channel]);
639             /* (pppppp) (piiiiiii) */
640
641             /* Bits 15-7 are the _top_ 9 bits of the 16-bit initial predictor value */
642             predictor = sign_extend(bytestream2_get_be16u(&gb), 16);
643             step_index = predictor & 0x7F;
644             predictor &= ~0x7F;
645
646             if (cs->step_index == step_index) {
647                 int diff = predictor - cs->predictor;
648                 if (diff < 0)
649                     diff = - diff;
650                 if (diff > 0x7f)
651                     goto update;
652             } else {
653             update:
654                 cs->step_index = step_index;
655                 cs->predictor = predictor;
656             }
657
658             if (cs->step_index > 88u){
659                 av_log(avctx, AV_LOG_ERROR, "ERROR: step_index[%d] = %i\n",
660                        channel, cs->step_index);
661                 return AVERROR_INVALIDDATA;
662             }
663
664             samples = samples_p[channel];
665
666             for (m = 0; m < 64; m += 2) {
667                 int byte = bytestream2_get_byteu(&gb);
668                 samples[m    ] = adpcm_ima_qt_expand_nibble(cs, byte & 0x0F, 3);
669                 samples[m + 1] = adpcm_ima_qt_expand_nibble(cs, byte >> 4  , 3);
670             }
671         }
672         break;
673     case AV_CODEC_ID_ADPCM_IMA_WAV:
674         for(i=0; i<avctx->channels; i++){
675             cs = &(c->status[i]);
676             cs->predictor = samples_p[i][0] = sign_extend(bytestream2_get_le16u(&gb), 16);
677
678             cs->step_index = sign_extend(bytestream2_get_le16u(&gb), 16);
679             if (cs->step_index > 88u){
680                 av_log(avctx, AV_LOG_ERROR, "ERROR: step_index[%d] = %i\n",
681                        i, cs->step_index);
682                 return AVERROR_INVALIDDATA;
683             }
684         }
685
686         for (n = 0; n < (nb_samples - 1) / 8; n++) {
687             for (i = 0; i < avctx->channels; i++) {
688                 cs = &c->status[i];
689                 samples = &samples_p[i][1 + n * 8];
690                 for (m = 0; m < 8; m += 2) {
691                     int v = bytestream2_get_byteu(&gb);
692                     samples[m    ] = adpcm_ima_expand_nibble(cs, v & 0x0F, 3);
693                     samples[m + 1] = adpcm_ima_expand_nibble(cs, v >> 4  , 3);
694                 }
695             }
696         }
697         break;
698     case AV_CODEC_ID_ADPCM_4XM:
699         for (i = 0; i < avctx->channels; i++)
700             c->status[i].predictor = sign_extend(bytestream2_get_le16u(&gb), 16);
701
702         for (i = 0; i < avctx->channels; i++) {
703             c->status[i].step_index = sign_extend(bytestream2_get_le16u(&gb), 16);
704             if (c->status[i].step_index > 88u) {
705                 av_log(avctx, AV_LOG_ERROR, "ERROR: step_index[%d] = %i\n",
706                        i, c->status[i].step_index);
707                 return AVERROR_INVALIDDATA;
708             }
709         }
710
711         for (i = 0; i < avctx->channels; i++) {
712             samples = (int16_t *)frame->data[i];
713             cs = &c->status[i];
714             for (n = nb_samples >> 1; n > 0; n--) {
715                 int v = bytestream2_get_byteu(&gb);
716                 *samples++ = adpcm_ima_expand_nibble(cs, v & 0x0F, 4);
717                 *samples++ = adpcm_ima_expand_nibble(cs, v >> 4  , 4);
718             }
719         }
720         break;
721     case AV_CODEC_ID_ADPCM_MS:
722     {
723         int block_predictor;
724
725         block_predictor = bytestream2_get_byteu(&gb);
726         if (block_predictor > 6) {
727             av_log(avctx, AV_LOG_ERROR, "ERROR: block_predictor[0] = %d\n",
728                    block_predictor);
729             return AVERROR_INVALIDDATA;
730         }
731         c->status[0].coeff1 = ff_adpcm_AdaptCoeff1[block_predictor];
732         c->status[0].coeff2 = ff_adpcm_AdaptCoeff2[block_predictor];
733         if (st) {
734             block_predictor = bytestream2_get_byteu(&gb);
735             if (block_predictor > 6) {
736                 av_log(avctx, AV_LOG_ERROR, "ERROR: block_predictor[1] = %d\n",
737                        block_predictor);
738                 return AVERROR_INVALIDDATA;
739             }
740             c->status[1].coeff1 = ff_adpcm_AdaptCoeff1[block_predictor];
741             c->status[1].coeff2 = ff_adpcm_AdaptCoeff2[block_predictor];
742         }
743         c->status[0].idelta = sign_extend(bytestream2_get_le16u(&gb), 16);
744         if (st){
745             c->status[1].idelta = sign_extend(bytestream2_get_le16u(&gb), 16);
746         }
747
748         c->status[0].sample1 = sign_extend(bytestream2_get_le16u(&gb), 16);
749         if (st) c->status[1].sample1 = sign_extend(bytestream2_get_le16u(&gb), 16);
750         c->status[0].sample2 = sign_extend(bytestream2_get_le16u(&gb), 16);
751         if (st) c->status[1].sample2 = sign_extend(bytestream2_get_le16u(&gb), 16);
752
753         *samples++ = c->status[0].sample2;
754         if (st) *samples++ = c->status[1].sample2;
755         *samples++ = c->status[0].sample1;
756         if (st) *samples++ = c->status[1].sample1;
757         for(n = (nb_samples - 2) >> (1 - st); n > 0; n--) {
758             int byte = bytestream2_get_byteu(&gb);
759             *samples++ = adpcm_ms_expand_nibble(&c->status[0 ], byte >> 4  );
760             *samples++ = adpcm_ms_expand_nibble(&c->status[st], byte & 0x0F);
761         }
762         break;
763     }
764     case AV_CODEC_ID_ADPCM_IMA_DK4:
765         for (channel = 0; channel < avctx->channels; channel++) {
766             cs = &c->status[channel];
767             cs->predictor  = *samples++ = sign_extend(bytestream2_get_le16u(&gb), 16);
768             cs->step_index = sign_extend(bytestream2_get_le16u(&gb), 16);
769             if (cs->step_index > 88u){
770                 av_log(avctx, AV_LOG_ERROR, "ERROR: step_index[%d] = %i\n",
771                        channel, cs->step_index);
772                 return AVERROR_INVALIDDATA;
773             }
774         }
775         for (n = (nb_samples >> (1 - st)) - 1; n > 0; n--) {
776             int v = bytestream2_get_byteu(&gb);
777             *samples++ = adpcm_ima_expand_nibble(&c->status[0 ], v >> 4  , 3);
778             *samples++ = adpcm_ima_expand_nibble(&c->status[st], v & 0x0F, 3);
779         }
780         break;
781     case AV_CODEC_ID_ADPCM_IMA_DK3:
782     {
783         int last_byte = 0;
784         int nibble;
785         int decode_top_nibble_next = 0;
786         int diff_channel;
787         const int16_t *samples_end = samples + avctx->channels * nb_samples;
788
789         bytestream2_skipu(&gb, 10);
790         c->status[0].predictor  = sign_extend(bytestream2_get_le16u(&gb), 16);
791         c->status[1].predictor  = sign_extend(bytestream2_get_le16u(&gb), 16);
792         c->status[0].step_index = bytestream2_get_byteu(&gb);
793         c->status[1].step_index = bytestream2_get_byteu(&gb);
794         if (c->status[0].step_index > 88u || c->status[1].step_index > 88u){
795             av_log(avctx, AV_LOG_ERROR, "ERROR: step_index = %i/%i\n",
796                    c->status[0].step_index, c->status[1].step_index);
797             return AVERROR_INVALIDDATA;
798         }
799         /* sign extend the predictors */
800         diff_channel = c->status[1].predictor;
801
802         /* DK3 ADPCM support macro */
803 #define DK3_GET_NEXT_NIBBLE() \
804     if (decode_top_nibble_next) { \
805         nibble = last_byte >> 4; \
806         decode_top_nibble_next = 0; \
807     } else { \
808         last_byte = bytestream2_get_byteu(&gb); \
809         nibble = last_byte & 0x0F; \
810         decode_top_nibble_next = 1; \
811     }
812
813         while (samples < samples_end) {
814
815             /* for this algorithm, c->status[0] is the sum channel and
816              * c->status[1] is the diff channel */
817
818             /* process the first predictor of the sum channel */
819             DK3_GET_NEXT_NIBBLE();
820             adpcm_ima_expand_nibble(&c->status[0], nibble, 3);
821
822             /* process the diff channel predictor */
823             DK3_GET_NEXT_NIBBLE();
824             adpcm_ima_expand_nibble(&c->status[1], nibble, 3);
825
826             /* process the first pair of stereo PCM samples */
827             diff_channel = (diff_channel + c->status[1].predictor) / 2;
828             *samples++ = c->status[0].predictor + c->status[1].predictor;
829             *samples++ = c->status[0].predictor - c->status[1].predictor;
830
831             /* process the second predictor of the sum channel */
832             DK3_GET_NEXT_NIBBLE();
833             adpcm_ima_expand_nibble(&c->status[0], nibble, 3);
834
835             /* process the second pair of stereo PCM samples */
836             diff_channel = (diff_channel + c->status[1].predictor) / 2;
837             *samples++ = c->status[0].predictor + c->status[1].predictor;
838             *samples++ = c->status[0].predictor - c->status[1].predictor;
839         }
840         break;
841     }
842     case AV_CODEC_ID_ADPCM_IMA_ISS:
843         for (channel = 0; channel < avctx->channels; channel++) {
844             cs = &c->status[channel];
845             cs->predictor  = sign_extend(bytestream2_get_le16u(&gb), 16);
846             cs->step_index = sign_extend(bytestream2_get_le16u(&gb), 16);
847             if (cs->step_index > 88u){
848                 av_log(avctx, AV_LOG_ERROR, "ERROR: step_index[%d] = %i\n",
849                        channel, cs->step_index);
850                 return AVERROR_INVALIDDATA;
851             }
852         }
853
854         for (n = nb_samples >> (1 - st); n > 0; n--) {
855             int v1, v2;
856             int v = bytestream2_get_byteu(&gb);
857             /* nibbles are swapped for mono */
858             if (st) {
859                 v1 = v >> 4;
860                 v2 = v & 0x0F;
861             } else {
862                 v2 = v >> 4;
863                 v1 = v & 0x0F;
864             }
865             *samples++ = adpcm_ima_expand_nibble(&c->status[0 ], v1, 3);
866             *samples++ = adpcm_ima_expand_nibble(&c->status[st], v2, 3);
867         }
868         break;
869     case AV_CODEC_ID_ADPCM_IMA_APC:
870         while (bytestream2_get_bytes_left(&gb) > 0) {
871             int v = bytestream2_get_byteu(&gb);
872             *samples++ = adpcm_ima_expand_nibble(&c->status[0],  v >> 4  , 3);
873             *samples++ = adpcm_ima_expand_nibble(&c->status[st], v & 0x0F, 3);
874         }
875         break;
876     case AV_CODEC_ID_ADPCM_IMA_WS:
877         if (c->vqa_version == 3) {
878             for (channel = 0; channel < avctx->channels; channel++) {
879                 int16_t *smp = samples_p[channel];
880
881                 for (n = nb_samples / 2; n > 0; n--) {
882                     int v = bytestream2_get_byteu(&gb);
883                     *smp++ = adpcm_ima_expand_nibble(&c->status[channel], v >> 4  , 3);
884                     *smp++ = adpcm_ima_expand_nibble(&c->status[channel], v & 0x0F, 3);
885                 }
886             }
887         } else {
888             for (n = nb_samples / 2; n > 0; n--) {
889                 for (channel = 0; channel < avctx->channels; channel++) {
890                     int v = bytestream2_get_byteu(&gb);
891                     *samples++  = adpcm_ima_expand_nibble(&c->status[channel], v >> 4  , 3);
892                     samples[st] = adpcm_ima_expand_nibble(&c->status[channel], v & 0x0F, 3);
893                 }
894                 samples += avctx->channels;
895             }
896         }
897         bytestream2_seek(&gb, 0, SEEK_END);
898         break;
899     case AV_CODEC_ID_ADPCM_XA:
900     {
901         int16_t *out0 = samples_p[0];
902         int16_t *out1 = samples_p[1];
903         int samples_per_block = 28 * (3 - avctx->channels) * 4;
904         int sample_offset = 0;
905         while (bytestream2_get_bytes_left(&gb) >= 128) {
906             if ((ret = xa_decode(avctx, out0, out1, buf + bytestream2_tell(&gb),
907                                  &c->status[0], &c->status[1],
908                                  avctx->channels, sample_offset)) < 0)
909                 return ret;
910             bytestream2_skipu(&gb, 128);
911             sample_offset += samples_per_block;
912         }
913         break;
914     }
915     case AV_CODEC_ID_ADPCM_IMA_EA_EACS:
916         for (i=0; i<=st; i++) {
917             c->status[i].step_index = bytestream2_get_le32u(&gb);
918             if (c->status[i].step_index > 88u) {
919                 av_log(avctx, AV_LOG_ERROR, "ERROR: step_index[%d] = %i\n",
920                        i, c->status[i].step_index);
921                 return AVERROR_INVALIDDATA;
922             }
923         }
924         for (i=0; i<=st; i++)
925             c->status[i].predictor  = bytestream2_get_le32u(&gb);
926
927         for (n = nb_samples >> (1 - st); n > 0; n--) {
928             int byte   = bytestream2_get_byteu(&gb);
929             *samples++ = adpcm_ima_expand_nibble(&c->status[0],  byte >> 4,   3);
930             *samples++ = adpcm_ima_expand_nibble(&c->status[st], byte & 0x0F, 3);
931         }
932         break;
933     case AV_CODEC_ID_ADPCM_IMA_EA_SEAD:
934         for (n = nb_samples >> (1 - st); n > 0; n--) {
935             int byte = bytestream2_get_byteu(&gb);
936             *samples++ = adpcm_ima_expand_nibble(&c->status[0],  byte >> 4,   6);
937             *samples++ = adpcm_ima_expand_nibble(&c->status[st], byte & 0x0F, 6);
938         }
939         break;
940     case AV_CODEC_ID_ADPCM_EA:
941     {
942         int previous_left_sample, previous_right_sample;
943         int current_left_sample, current_right_sample;
944         int next_left_sample, next_right_sample;
945         int coeff1l, coeff2l, coeff1r, coeff2r;
946         int shift_left, shift_right;
947
948         /* Each EA ADPCM frame has a 12-byte header followed by 30-byte pieces,
949            each coding 28 stereo samples. */
950
951         current_left_sample   = sign_extend(bytestream2_get_le16u(&gb), 16);
952         previous_left_sample  = sign_extend(bytestream2_get_le16u(&gb), 16);
953         current_right_sample  = sign_extend(bytestream2_get_le16u(&gb), 16);
954         previous_right_sample = sign_extend(bytestream2_get_le16u(&gb), 16);
955
956         for (count1 = 0; count1 < nb_samples / 28; count1++) {
957             int byte = bytestream2_get_byteu(&gb);
958             coeff1l = ea_adpcm_table[ byte >> 4       ];
959             coeff2l = ea_adpcm_table[(byte >> 4  ) + 4];
960             coeff1r = ea_adpcm_table[ byte & 0x0F];
961             coeff2r = ea_adpcm_table[(byte & 0x0F) + 4];
962
963             byte = bytestream2_get_byteu(&gb);
964             shift_left  = 20 - (byte >> 4);
965             shift_right = 20 - (byte & 0x0F);
966
967             for (count2 = 0; count2 < 28; count2++) {
968                 byte = bytestream2_get_byteu(&gb);
969                 next_left_sample  = sign_extend(byte >> 4, 4) << shift_left;
970                 next_right_sample = sign_extend(byte,      4) << shift_right;
971
972                 next_left_sample = (next_left_sample +
973                     (current_left_sample * coeff1l) +
974                     (previous_left_sample * coeff2l) + 0x80) >> 8;
975                 next_right_sample = (next_right_sample +
976                     (current_right_sample * coeff1r) +
977                     (previous_right_sample * coeff2r) + 0x80) >> 8;
978
979                 previous_left_sample = current_left_sample;
980                 current_left_sample = av_clip_int16(next_left_sample);
981                 previous_right_sample = current_right_sample;
982                 current_right_sample = av_clip_int16(next_right_sample);
983                 *samples++ = current_left_sample;
984                 *samples++ = current_right_sample;
985             }
986         }
987
988         bytestream2_skip(&gb, 2); // Skip terminating 0x0000
989
990         break;
991     }
992     case AV_CODEC_ID_ADPCM_EA_MAXIS_XA:
993     {
994         int coeff[2][2], shift[2];
995
996         for(channel = 0; channel < avctx->channels; channel++) {
997             int byte = bytestream2_get_byteu(&gb);
998             for (i=0; i<2; i++)
999                 coeff[channel][i] = ea_adpcm_table[(byte >> 4) + 4*i];
1000             shift[channel] = 20 - (byte & 0x0F);
1001         }
1002         for (count1 = 0; count1 < nb_samples / 2; count1++) {
1003             int byte[2];
1004
1005             byte[0] = bytestream2_get_byteu(&gb);
1006             if (st) byte[1] = bytestream2_get_byteu(&gb);
1007             for(i = 4; i >= 0; i-=4) { /* Pairwise samples LL RR (st) or LL LL (mono) */
1008                 for(channel = 0; channel < avctx->channels; channel++) {
1009                     int sample = sign_extend(byte[channel] >> i, 4) << shift[channel];
1010                     sample = (sample +
1011                              c->status[channel].sample1 * coeff[channel][0] +
1012                              c->status[channel].sample2 * coeff[channel][1] + 0x80) >> 8;
1013                     c->status[channel].sample2 = c->status[channel].sample1;
1014                     c->status[channel].sample1 = av_clip_int16(sample);
1015                     *samples++ = c->status[channel].sample1;
1016                 }
1017             }
1018         }
1019         bytestream2_seek(&gb, 0, SEEK_END);
1020         break;
1021     }
1022     case AV_CODEC_ID_ADPCM_EA_R1:
1023     case AV_CODEC_ID_ADPCM_EA_R2:
1024     case AV_CODEC_ID_ADPCM_EA_R3: {
1025         /* channel numbering
1026            2chan: 0=fl, 1=fr
1027            4chan: 0=fl, 1=rl, 2=fr, 3=rr
1028            6chan: 0=fl, 1=c,  2=fr, 3=rl,  4=rr, 5=sub */
1029         const int big_endian = avctx->codec->id == AV_CODEC_ID_ADPCM_EA_R3;
1030         int previous_sample, current_sample, next_sample;
1031         int coeff1, coeff2;
1032         int shift;
1033         unsigned int channel;
1034         uint16_t *samplesC;
1035         int count = 0;
1036         int offsets[6];
1037
1038         for (channel=0; channel<avctx->channels; channel++)
1039             offsets[channel] = (big_endian ? bytestream2_get_be32(&gb) :
1040                                              bytestream2_get_le32(&gb)) +
1041                                (avctx->channels + 1) * 4;
1042
1043         for (channel=0; channel<avctx->channels; channel++) {
1044             bytestream2_seek(&gb, offsets[channel], SEEK_SET);
1045             samplesC = samples_p[channel];
1046
1047             if (avctx->codec->id == AV_CODEC_ID_ADPCM_EA_R1) {
1048                 current_sample  = sign_extend(bytestream2_get_le16(&gb), 16);
1049                 previous_sample = sign_extend(bytestream2_get_le16(&gb), 16);
1050             } else {
1051                 current_sample  = c->status[channel].predictor;
1052                 previous_sample = c->status[channel].prev_sample;
1053             }
1054
1055             for (count1 = 0; count1 < nb_samples / 28; count1++) {
1056                 int byte = bytestream2_get_byte(&gb);
1057                 if (byte == 0xEE) {  /* only seen in R2 and R3 */
1058                     current_sample  = sign_extend(bytestream2_get_be16(&gb), 16);
1059                     previous_sample = sign_extend(bytestream2_get_be16(&gb), 16);
1060
1061                     for (count2=0; count2<28; count2++)
1062                         *samplesC++ = sign_extend(bytestream2_get_be16(&gb), 16);
1063                 } else {
1064                     coeff1 = ea_adpcm_table[ byte >> 4     ];
1065                     coeff2 = ea_adpcm_table[(byte >> 4) + 4];
1066                     shift = 20 - (byte & 0x0F);
1067
1068                     for (count2=0; count2<28; count2++) {
1069                         if (count2 & 1)
1070                             next_sample = sign_extend(byte,    4) << shift;
1071                         else {
1072                             byte = bytestream2_get_byte(&gb);
1073                             next_sample = sign_extend(byte >> 4, 4) << shift;
1074                         }
1075
1076                         next_sample += (current_sample  * coeff1) +
1077                                        (previous_sample * coeff2);
1078                         next_sample = av_clip_int16(next_sample >> 8);
1079
1080                         previous_sample = current_sample;
1081                         current_sample  = next_sample;
1082                         *samplesC++ = current_sample;
1083                     }
1084                 }
1085             }
1086             if (!count) {
1087                 count = count1;
1088             } else if (count != count1) {
1089                 av_log(avctx, AV_LOG_WARNING, "per-channel sample count mismatch\n");
1090                 count = FFMAX(count, count1);
1091             }
1092
1093             if (avctx->codec->id != AV_CODEC_ID_ADPCM_EA_R1) {
1094                 c->status[channel].predictor   = current_sample;
1095                 c->status[channel].prev_sample = previous_sample;
1096             }
1097         }
1098
1099         frame->nb_samples = count * 28;
1100         bytestream2_seek(&gb, 0, SEEK_END);
1101         break;
1102     }
1103     case AV_CODEC_ID_ADPCM_EA_XAS:
1104         for (channel=0; channel<avctx->channels; channel++) {
1105             int coeff[2][4], shift[4];
1106             int16_t *s = samples_p[channel];
1107             for (n = 0; n < 4; n++, s += 32) {
1108                 int val = sign_extend(bytestream2_get_le16u(&gb), 16);
1109                 for (i=0; i<2; i++)
1110                     coeff[i][n] = ea_adpcm_table[(val&0x0F)+4*i];
1111                 s[0] = val & ~0x0F;
1112
1113                 val = sign_extend(bytestream2_get_le16u(&gb), 16);
1114                 shift[n] = 20 - (val & 0x0F);
1115                 s[1] = val & ~0x0F;
1116             }
1117
1118             for (m=2; m<32; m+=2) {
1119                 s = &samples_p[channel][m];
1120                 for (n = 0; n < 4; n++, s += 32) {
1121                     int level, pred;
1122                     int byte = bytestream2_get_byteu(&gb);
1123
1124                     level = sign_extend(byte >> 4, 4) << shift[n];
1125                     pred  = s[-1] * coeff[0][n] + s[-2] * coeff[1][n];
1126                     s[0]  = av_clip_int16((level + pred + 0x80) >> 8);
1127
1128                     level = sign_extend(byte, 4) << shift[n];
1129                     pred  = s[0] * coeff[0][n] + s[-1] * coeff[1][n];
1130                     s[1]  = av_clip_int16((level + pred + 0x80) >> 8);
1131                 }
1132             }
1133         }
1134         break;
1135     case AV_CODEC_ID_ADPCM_IMA_AMV:
1136     case AV_CODEC_ID_ADPCM_IMA_SMJPEG:
1137         if (avctx->codec->id == AV_CODEC_ID_ADPCM_IMA_AMV) {
1138             c->status[0].predictor = sign_extend(bytestream2_get_le16u(&gb), 16);
1139             c->status[0].step_index = bytestream2_get_le16u(&gb);
1140             bytestream2_skipu(&gb, 4);
1141         } else {
1142             c->status[0].predictor = sign_extend(bytestream2_get_be16u(&gb), 16);
1143             c->status[0].step_index = bytestream2_get_byteu(&gb);
1144             bytestream2_skipu(&gb, 1);
1145         }
1146         if (c->status[0].step_index > 88u) {
1147             av_log(avctx, AV_LOG_ERROR, "ERROR: step_index = %i\n",
1148                    c->status[0].step_index);
1149             return AVERROR_INVALIDDATA;
1150         }
1151
1152         for (n = nb_samples >> (1 - st); n > 0; n--) {
1153             int hi, lo, v = bytestream2_get_byteu(&gb);
1154
1155             if (avctx->codec->id == AV_CODEC_ID_ADPCM_IMA_AMV) {
1156                 hi = v & 0x0F;
1157                 lo = v >> 4;
1158             } else {
1159                 lo = v & 0x0F;
1160                 hi = v >> 4;
1161             }
1162
1163             *samples++ = adpcm_ima_expand_nibble(&c->status[0], lo, 3);
1164             *samples++ = adpcm_ima_expand_nibble(&c->status[0], hi, 3);
1165         }
1166         break;
1167     case AV_CODEC_ID_ADPCM_CT:
1168         for (n = nb_samples >> (1 - st); n > 0; n--) {
1169             int v = bytestream2_get_byteu(&gb);
1170             *samples++ = adpcm_ct_expand_nibble(&c->status[0 ], v >> 4  );
1171             *samples++ = adpcm_ct_expand_nibble(&c->status[st], v & 0x0F);
1172         }
1173         break;
1174     case AV_CODEC_ID_ADPCM_SBPRO_4:
1175     case AV_CODEC_ID_ADPCM_SBPRO_3:
1176     case AV_CODEC_ID_ADPCM_SBPRO_2:
1177         if (!c->status[0].step_index) {
1178             /* the first byte is a raw sample */
1179             *samples++ = 128 * (bytestream2_get_byteu(&gb) - 0x80);
1180             if (st)
1181                 *samples++ = 128 * (bytestream2_get_byteu(&gb) - 0x80);
1182             c->status[0].step_index = 1;
1183             nb_samples--;
1184         }
1185         if (avctx->codec->id == AV_CODEC_ID_ADPCM_SBPRO_4) {
1186             for (n = nb_samples >> (1 - st); n > 0; n--) {
1187                 int byte = bytestream2_get_byteu(&gb);
1188                 *samples++ = adpcm_sbpro_expand_nibble(&c->status[0],
1189                                                        byte >> 4,   4, 0);
1190                 *samples++ = adpcm_sbpro_expand_nibble(&c->status[st],
1191                                                        byte & 0x0F, 4, 0);
1192             }
1193         } else if (avctx->codec->id == AV_CODEC_ID_ADPCM_SBPRO_3) {
1194             for (n = nb_samples / 3; n > 0; n--) {
1195                 int byte = bytestream2_get_byteu(&gb);
1196                 *samples++ = adpcm_sbpro_expand_nibble(&c->status[0],
1197                                                         byte >> 5        , 3, 0);
1198                 *samples++ = adpcm_sbpro_expand_nibble(&c->status[0],
1199                                                        (byte >> 2) & 0x07, 3, 0);
1200                 *samples++ = adpcm_sbpro_expand_nibble(&c->status[0],
1201                                                         byte & 0x03,       2, 0);
1202             }
1203         } else {
1204             for (n = nb_samples >> (2 - st); n > 0; n--) {
1205                 int byte = bytestream2_get_byteu(&gb);
1206                 *samples++ = adpcm_sbpro_expand_nibble(&c->status[0],
1207                                                         byte >> 6        , 2, 2);
1208                 *samples++ = adpcm_sbpro_expand_nibble(&c->status[st],
1209                                                        (byte >> 4) & 0x03, 2, 2);
1210                 *samples++ = adpcm_sbpro_expand_nibble(&c->status[0],
1211                                                        (byte >> 2) & 0x03, 2, 2);
1212                 *samples++ = adpcm_sbpro_expand_nibble(&c->status[st],
1213                                                         byte & 0x03,       2, 2);
1214             }
1215         }
1216         break;
1217     case AV_CODEC_ID_ADPCM_SWF:
1218         adpcm_swf_decode(avctx, buf, buf_size, samples);
1219         bytestream2_seek(&gb, 0, SEEK_END);
1220         break;
1221     case AV_CODEC_ID_ADPCM_YAMAHA:
1222         for (n = nb_samples >> (1 - st); n > 0; n--) {
1223             int v = bytestream2_get_byteu(&gb);
1224             *samples++ = adpcm_yamaha_expand_nibble(&c->status[0 ], v & 0x0F);
1225             *samples++ = adpcm_yamaha_expand_nibble(&c->status[st], v >> 4  );
1226         }
1227         break;
1228     case AV_CODEC_ID_ADPCM_THP:
1229     {
1230         int table[2][16];
1231         int prev[2][2];
1232         int ch;
1233
1234         for (i = 0; i < 2; i++)
1235             for (n = 0; n < 16; n++)
1236                 table[i][n] = sign_extend(bytestream2_get_be16u(&gb), 16);
1237
1238         /* Initialize the previous sample.  */
1239         for (i = 0; i < 2; i++)
1240             for (n = 0; n < 2; n++)
1241                 prev[i][n] = sign_extend(bytestream2_get_be16u(&gb), 16);
1242
1243         for (ch = 0; ch <= st; ch++) {
1244             samples = samples_p[ch];
1245
1246             /* Read in every sample for this channel.  */
1247             for (i = 0; i < nb_samples / 14; i++) {
1248                 int byte = bytestream2_get_byteu(&gb);
1249                 int index = (byte >> 4) & 7;
1250                 unsigned int exp = byte & 0x0F;
1251                 int factor1 = table[ch][index * 2];
1252                 int factor2 = table[ch][index * 2 + 1];
1253
1254                 /* Decode 14 samples.  */
1255                 for (n = 0; n < 14; n++) {
1256                     int32_t sampledat;
1257
1258                     if (n & 1) {
1259                         sampledat = sign_extend(byte, 4);
1260                     } else {
1261                         byte = bytestream2_get_byteu(&gb);
1262                         sampledat = sign_extend(byte >> 4, 4);
1263                     }
1264
1265                     sampledat = ((prev[ch][0]*factor1
1266                                 + prev[ch][1]*factor2) >> 11) + (sampledat << exp);
1267                     *samples = av_clip_int16(sampledat);
1268                     prev[ch][1] = prev[ch][0];
1269                     prev[ch][0] = *samples++;
1270                 }
1271             }
1272         }
1273         break;
1274     }
1275
1276     default:
1277         return -1;
1278     }
1279
1280     *got_frame_ptr = 1;
1281
1282     return bytestream2_tell(&gb);
1283 }
1284
1285
1286 static const enum AVSampleFormat sample_fmts_s16[]  = { AV_SAMPLE_FMT_S16,
1287                                                         AV_SAMPLE_FMT_NONE };
1288 static const enum AVSampleFormat sample_fmts_s16p[] = { AV_SAMPLE_FMT_S16,
1289                                                         AV_SAMPLE_FMT_NONE };
1290 static const enum AVSampleFormat sample_fmts_both[] = { AV_SAMPLE_FMT_S16,
1291                                                         AV_SAMPLE_FMT_S16P,
1292                                                         AV_SAMPLE_FMT_NONE };
1293
1294 #define ADPCM_DECODER(id_, sample_fmts_, name_, long_name_) \
1295 AVCodec ff_ ## name_ ## _decoder = {                        \
1296     .name           = #name_,                               \
1297     .long_name      = NULL_IF_CONFIG_SMALL(long_name_),     \
1298     .type           = AVMEDIA_TYPE_AUDIO,                   \
1299     .id             = id_,                                  \
1300     .priv_data_size = sizeof(ADPCMDecodeContext),           \
1301     .init           = adpcm_decode_init,                    \
1302     .decode         = adpcm_decode_frame,                   \
1303     .capabilities   = AV_CODEC_CAP_DR1,                     \
1304     .sample_fmts    = sample_fmts_,                         \
1305 }
1306
1307 /* Note: Do not forget to add new entries to the Makefile as well. */
1308 ADPCM_DECODER(AV_CODEC_ID_ADPCM_4XM,         sample_fmts_s16p, adpcm_4xm,         "ADPCM 4X Movie");
1309 ADPCM_DECODER(AV_CODEC_ID_ADPCM_CT,          sample_fmts_s16,  adpcm_ct,          "ADPCM Creative Technology");
1310 ADPCM_DECODER(AV_CODEC_ID_ADPCM_EA,          sample_fmts_s16,  adpcm_ea,          "ADPCM Electronic Arts");
1311 ADPCM_DECODER(AV_CODEC_ID_ADPCM_EA_MAXIS_XA, sample_fmts_s16,  adpcm_ea_maxis_xa, "ADPCM Electronic Arts Maxis CDROM XA");
1312 ADPCM_DECODER(AV_CODEC_ID_ADPCM_EA_R1,       sample_fmts_s16p, adpcm_ea_r1,       "ADPCM Electronic Arts R1");
1313 ADPCM_DECODER(AV_CODEC_ID_ADPCM_EA_R2,       sample_fmts_s16p, adpcm_ea_r2,       "ADPCM Electronic Arts R2");
1314 ADPCM_DECODER(AV_CODEC_ID_ADPCM_EA_R3,       sample_fmts_s16p, adpcm_ea_r3,       "ADPCM Electronic Arts R3");
1315 ADPCM_DECODER(AV_CODEC_ID_ADPCM_EA_XAS,      sample_fmts_s16p, adpcm_ea_xas,      "ADPCM Electronic Arts XAS");
1316 ADPCM_DECODER(AV_CODEC_ID_ADPCM_IMA_AMV,     sample_fmts_s16,  adpcm_ima_amv,     "ADPCM IMA AMV");
1317 ADPCM_DECODER(AV_CODEC_ID_ADPCM_IMA_APC,     sample_fmts_s16,  adpcm_ima_apc,     "ADPCM IMA CRYO APC");
1318 ADPCM_DECODER(AV_CODEC_ID_ADPCM_IMA_DK3,     sample_fmts_s16,  adpcm_ima_dk3,     "ADPCM IMA Duck DK3");
1319 ADPCM_DECODER(AV_CODEC_ID_ADPCM_IMA_DK4,     sample_fmts_s16,  adpcm_ima_dk4,     "ADPCM IMA Duck DK4");
1320 ADPCM_DECODER(AV_CODEC_ID_ADPCM_IMA_EA_EACS, sample_fmts_s16,  adpcm_ima_ea_eacs, "ADPCM IMA Electronic Arts EACS");
1321 ADPCM_DECODER(AV_CODEC_ID_ADPCM_IMA_EA_SEAD, sample_fmts_s16,  adpcm_ima_ea_sead, "ADPCM IMA Electronic Arts SEAD");
1322 ADPCM_DECODER(AV_CODEC_ID_ADPCM_IMA_ISS,     sample_fmts_s16,  adpcm_ima_iss,     "ADPCM IMA Funcom ISS");
1323 ADPCM_DECODER(AV_CODEC_ID_ADPCM_IMA_QT,      sample_fmts_s16p, adpcm_ima_qt,      "ADPCM IMA QuickTime");
1324 ADPCM_DECODER(AV_CODEC_ID_ADPCM_IMA_SMJPEG,  sample_fmts_s16,  adpcm_ima_smjpeg,  "ADPCM IMA Loki SDL MJPEG");
1325 ADPCM_DECODER(AV_CODEC_ID_ADPCM_IMA_WAV,     sample_fmts_s16p, adpcm_ima_wav,     "ADPCM IMA WAV");
1326 ADPCM_DECODER(AV_CODEC_ID_ADPCM_IMA_WS,      sample_fmts_both, adpcm_ima_ws,      "ADPCM IMA Westwood");
1327 ADPCM_DECODER(AV_CODEC_ID_ADPCM_MS,          sample_fmts_s16,  adpcm_ms,          "ADPCM Microsoft");
1328 ADPCM_DECODER(AV_CODEC_ID_ADPCM_SBPRO_2,     sample_fmts_s16,  adpcm_sbpro_2,     "ADPCM Sound Blaster Pro 2-bit");
1329 ADPCM_DECODER(AV_CODEC_ID_ADPCM_SBPRO_3,     sample_fmts_s16,  adpcm_sbpro_3,     "ADPCM Sound Blaster Pro 2.6-bit");
1330 ADPCM_DECODER(AV_CODEC_ID_ADPCM_SBPRO_4,     sample_fmts_s16,  adpcm_sbpro_4,     "ADPCM Sound Blaster Pro 4-bit");
1331 ADPCM_DECODER(AV_CODEC_ID_ADPCM_SWF,         sample_fmts_s16,  adpcm_swf,         "ADPCM Shockwave Flash");
1332 ADPCM_DECODER(AV_CODEC_ID_ADPCM_THP,         sample_fmts_s16p, adpcm_thp,         "ADPCM Nintendo Gamecube THP");
1333 ADPCM_DECODER(AV_CODEC_ID_ADPCM_XA,          sample_fmts_s16p, adpcm_xa,          "ADPCM CDROM XA");
1334 ADPCM_DECODER(AV_CODEC_ID_ADPCM_YAMAHA,      sample_fmts_s16,  adpcm_yamaha,      "ADPCM Yamaha");