]> git.sesse.net Git - ffmpeg/blob - libavcodec/adpcm.c
adpcmdec: Fix QT IMA ADPCM decoder
[ffmpeg] / libavcodec / adpcm.c
1 /*
2  * ADPCM codecs
3  * Copyright (c) 2001-2003 The ffmpeg Project
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 #include "avcodec.h"
22 #include "get_bits.h"
23 #include "put_bits.h"
24 #include "bytestream.h"
25
26 /**
27  * @file
28  * ADPCM codecs.
29  * First version by Francois Revol (revol@free.fr)
30  * Fringe ADPCM codecs (e.g., DK3, DK4, Westwood)
31  *   by Mike Melanson (melanson@pcisys.net)
32  * CD-ROM XA ADPCM codec by BERO
33  * EA ADPCM decoder by Robin Kay (komadori@myrealbox.com)
34  * EA ADPCM R1/R2/R3 decoder by Peter Ross (pross@xvid.org)
35  * EA IMA EACS decoder by Peter Ross (pross@xvid.org)
36  * EA IMA SEAD decoder by Peter Ross (pross@xvid.org)
37  * EA ADPCM XAS decoder by Peter Ross (pross@xvid.org)
38  * MAXIS EA ADPCM decoder by Robert Marston (rmarston@gmail.com)
39  * THP ADPCM decoder by Marco Gerards (mgerards@xs4all.nl)
40  *
41  * Features and limitations:
42  *
43  * Reference documents:
44  * http://www.pcisys.net/~melanson/codecs/simpleaudio.html
45  * http://www.geocities.com/SiliconValley/8682/aud3.txt
46  * http://openquicktime.sourceforge.net/plugins.htm
47  * XAnim sources (xa_codec.c) http://www.rasnaimaging.com/people/lapus/download.html
48  * http://www.cs.ucla.edu/~leec/mediabench/applications.html
49  * SoX source code http://home.sprynet.com/~cbagwell/sox.html
50  *
51  * CD-ROM XA:
52  * http://ku-www.ss.titech.ac.jp/~yatsushi/xaadpcm.html
53  * vagpack & depack http://homepages.compuserve.de/bITmASTER32/psx-index.html
54  * readstr http://www.geocities.co.jp/Playtown/2004/
55  */
56
57 #define BLKSIZE 1024
58
59 /* step_table[] and index_table[] are from the ADPCM reference source */
60 /* This is the index table: */
61 static const int index_table[16] = {
62     -1, -1, -1, -1, 2, 4, 6, 8,
63     -1, -1, -1, -1, 2, 4, 6, 8,
64 };
65
66 /**
67  * This is the step table. Note that many programs use slight deviations from
68  * this table, but such deviations are negligible:
69  */
70 static const int step_table[89] = {
71     7, 8, 9, 10, 11, 12, 13, 14, 16, 17,
72     19, 21, 23, 25, 28, 31, 34, 37, 41, 45,
73     50, 55, 60, 66, 73, 80, 88, 97, 107, 118,
74     130, 143, 157, 173, 190, 209, 230, 253, 279, 307,
75     337, 371, 408, 449, 494, 544, 598, 658, 724, 796,
76     876, 963, 1060, 1166, 1282, 1411, 1552, 1707, 1878, 2066,
77     2272, 2499, 2749, 3024, 3327, 3660, 4026, 4428, 4871, 5358,
78     5894, 6484, 7132, 7845, 8630, 9493, 10442, 11487, 12635, 13899,
79     15289, 16818, 18500, 20350, 22385, 24623, 27086, 29794, 32767
80 };
81
82 /* These are for MS-ADPCM */
83 /* AdaptationTable[], AdaptCoeff1[], and AdaptCoeff2[] are from libsndfile */
84 static const int AdaptationTable[] = {
85         230, 230, 230, 230, 307, 409, 512, 614,
86         768, 614, 512, 409, 307, 230, 230, 230
87 };
88
89 /** Divided by 4 to fit in 8-bit integers */
90 static const uint8_t AdaptCoeff1[] = {
91         64, 128, 0, 48, 60, 115, 98
92 };
93
94 /** Divided by 4 to fit in 8-bit integers */
95 static const int8_t AdaptCoeff2[] = {
96         0, -64, 0, 16, 0, -52, -58
97 };
98
99 /* These are for CD-ROM XA ADPCM */
100 static const int xa_adpcm_table[5][2] = {
101    {   0,   0 },
102    {  60,   0 },
103    { 115, -52 },
104    {  98, -55 },
105    { 122, -60 }
106 };
107
108 static const int ea_adpcm_table[] = {
109     0, 240, 460, 392, 0, 0, -208, -220, 0, 1,
110     3, 4, 7, 8, 10, 11, 0, -1, -3, -4
111 };
112
113 // padded to zero where table size is less then 16
114 static const int swf_index_tables[4][16] = {
115     /*2*/ { -1, 2 },
116     /*3*/ { -1, -1, 2, 4 },
117     /*4*/ { -1, -1, -1, -1, 2, 4, 6, 8 },
118     /*5*/ { -1, -1, -1, -1, -1, -1, -1, -1, 1, 2, 4, 6, 8, 10, 13, 16 }
119 };
120
121 static const int yamaha_indexscale[] = {
122     230, 230, 230, 230, 307, 409, 512, 614,
123     230, 230, 230, 230, 307, 409, 512, 614
124 };
125
126 static const int yamaha_difflookup[] = {
127     1, 3, 5, 7, 9, 11, 13, 15,
128     -1, -3, -5, -7, -9, -11, -13, -15
129 };
130
131 /* end of tables */
132
133 typedef struct ADPCMChannelStatus {
134     int predictor;
135     short int step_index;
136     int step;
137     /* for encoding */
138     int prev_sample;
139
140     /* MS version */
141     short sample1;
142     short sample2;
143     int coeff1;
144     int coeff2;
145     int idelta;
146 } ADPCMChannelStatus;
147
148 typedef struct TrellisPath {
149     int nibble;
150     int prev;
151 } TrellisPath;
152
153 typedef struct TrellisNode {
154     uint32_t ssd;
155     int path;
156     int sample1;
157     int sample2;
158     int step;
159 } TrellisNode;
160
161 typedef struct ADPCMContext {
162     ADPCMChannelStatus status[6];
163     TrellisPath *paths;
164     TrellisNode *node_buf;
165     TrellisNode **nodep_buf;
166     uint8_t *trellis_hash;
167 } ADPCMContext;
168
169 #define FREEZE_INTERVAL 128
170
171 /* XXX: implement encoding */
172
173 #if CONFIG_ENCODERS
174 static av_cold int adpcm_encode_init(AVCodecContext *avctx)
175 {
176     ADPCMContext *s = avctx->priv_data;
177     uint8_t *extradata;
178     int i;
179     if (avctx->channels > 2)
180         return -1; /* only stereo or mono =) */
181
182     if(avctx->trellis && (unsigned)avctx->trellis > 16U){
183         av_log(avctx, AV_LOG_ERROR, "invalid trellis size\n");
184         return -1;
185     }
186
187     if (avctx->trellis) {
188         int frontier = 1 << avctx->trellis;
189         int max_paths =  frontier * FREEZE_INTERVAL;
190         FF_ALLOC_OR_GOTO(avctx, s->paths,     max_paths * sizeof(*s->paths), error);
191         FF_ALLOC_OR_GOTO(avctx, s->node_buf,  2 * frontier * sizeof(*s->node_buf), error);
192         FF_ALLOC_OR_GOTO(avctx, s->nodep_buf, 2 * frontier * sizeof(*s->nodep_buf), error);
193         FF_ALLOC_OR_GOTO(avctx, s->trellis_hash, 65536 * sizeof(*s->trellis_hash), error);
194     }
195
196     switch(avctx->codec->id) {
197     case CODEC_ID_ADPCM_IMA_WAV:
198         avctx->frame_size = (BLKSIZE - 4 * avctx->channels) * 8 / (4 * avctx->channels) + 1; /* each 16 bits sample gives one nibble */
199                                                              /* and we have 4 bytes per channel overhead */
200         avctx->block_align = BLKSIZE;
201         /* seems frame_size isn't taken into account... have to buffer the samples :-( */
202         break;
203     case CODEC_ID_ADPCM_IMA_QT:
204         avctx->frame_size = 64;
205         avctx->block_align = 34 * avctx->channels;
206         break;
207     case CODEC_ID_ADPCM_MS:
208         avctx->frame_size = (BLKSIZE - 7 * avctx->channels) * 2 / avctx->channels + 2; /* each 16 bits sample gives one nibble */
209                                                              /* and we have 7 bytes per channel overhead */
210         avctx->block_align = BLKSIZE;
211         avctx->extradata_size = 32;
212         extradata = avctx->extradata = av_malloc(avctx->extradata_size);
213         if (!extradata)
214             return AVERROR(ENOMEM);
215         bytestream_put_le16(&extradata, avctx->frame_size);
216         bytestream_put_le16(&extradata, 7); /* wNumCoef */
217         for (i = 0; i < 7; i++) {
218             bytestream_put_le16(&extradata, AdaptCoeff1[i] * 4);
219             bytestream_put_le16(&extradata, AdaptCoeff2[i] * 4);
220         }
221         break;
222     case CODEC_ID_ADPCM_YAMAHA:
223         avctx->frame_size = BLKSIZE * avctx->channels;
224         avctx->block_align = BLKSIZE;
225         break;
226     case CODEC_ID_ADPCM_SWF:
227         if (avctx->sample_rate != 11025 &&
228             avctx->sample_rate != 22050 &&
229             avctx->sample_rate != 44100) {
230             av_log(avctx, AV_LOG_ERROR, "Sample rate must be 11025, 22050 or 44100\n");
231             goto error;
232         }
233         avctx->frame_size = 512 * (avctx->sample_rate / 11025);
234         break;
235     default:
236         goto error;
237     }
238
239     avctx->coded_frame= avcodec_alloc_frame();
240     avctx->coded_frame->key_frame= 1;
241
242     return 0;
243 error:
244     av_freep(&s->paths);
245     av_freep(&s->node_buf);
246     av_freep(&s->nodep_buf);
247     av_freep(&s->trellis_hash);
248     return -1;
249 }
250
251 static av_cold int adpcm_encode_close(AVCodecContext *avctx)
252 {
253     ADPCMContext *s = avctx->priv_data;
254     av_freep(&avctx->coded_frame);
255     av_freep(&s->paths);
256     av_freep(&s->node_buf);
257     av_freep(&s->nodep_buf);
258     av_freep(&s->trellis_hash);
259
260     return 0;
261 }
262
263
264 static inline unsigned char adpcm_ima_compress_sample(ADPCMChannelStatus *c, short sample)
265 {
266     int delta = sample - c->prev_sample;
267     int nibble = FFMIN(7, abs(delta)*4/step_table[c->step_index]) + (delta<0)*8;
268     c->prev_sample += ((step_table[c->step_index] * yamaha_difflookup[nibble]) / 8);
269     c->prev_sample = av_clip_int16(c->prev_sample);
270     c->step_index = av_clip(c->step_index + index_table[nibble], 0, 88);
271     return nibble;
272 }
273
274 static inline unsigned char adpcm_ms_compress_sample(ADPCMChannelStatus *c, short sample)
275 {
276     int predictor, nibble, bias;
277
278     predictor = (((c->sample1) * (c->coeff1)) + ((c->sample2) * (c->coeff2))) / 64;
279
280     nibble= sample - predictor;
281     if(nibble>=0) bias= c->idelta/2;
282     else          bias=-c->idelta/2;
283
284     nibble= (nibble + bias) / c->idelta;
285     nibble= av_clip(nibble, -8, 7)&0x0F;
286
287     predictor += (signed)((nibble & 0x08)?(nibble - 0x10):(nibble)) * c->idelta;
288
289     c->sample2 = c->sample1;
290     c->sample1 = av_clip_int16(predictor);
291
292     c->idelta = (AdaptationTable[(int)nibble] * c->idelta) >> 8;
293     if (c->idelta < 16) c->idelta = 16;
294
295     return nibble;
296 }
297
298 static inline unsigned char adpcm_yamaha_compress_sample(ADPCMChannelStatus *c, short sample)
299 {
300     int nibble, delta;
301
302     if(!c->step) {
303         c->predictor = 0;
304         c->step = 127;
305     }
306
307     delta = sample - c->predictor;
308
309     nibble = FFMIN(7, abs(delta)*4/c->step) + (delta<0)*8;
310
311     c->predictor += ((c->step * yamaha_difflookup[nibble]) / 8);
312     c->predictor = av_clip_int16(c->predictor);
313     c->step = (c->step * yamaha_indexscale[nibble]) >> 8;
314     c->step = av_clip(c->step, 127, 24567);
315
316     return nibble;
317 }
318
319 static void adpcm_compress_trellis(AVCodecContext *avctx, const short *samples,
320                                    uint8_t *dst, ADPCMChannelStatus *c, int n)
321 {
322     //FIXME 6% faster if frontier is a compile-time constant
323     ADPCMContext *s = avctx->priv_data;
324     const int frontier = 1 << avctx->trellis;
325     const int stride = avctx->channels;
326     const int version = avctx->codec->id;
327     TrellisPath *paths = s->paths, *p;
328     TrellisNode *node_buf = s->node_buf;
329     TrellisNode **nodep_buf = s->nodep_buf;
330     TrellisNode **nodes = nodep_buf; // nodes[] is always sorted by .ssd
331     TrellisNode **nodes_next = nodep_buf + frontier;
332     int pathn = 0, froze = -1, i, j, k, generation = 0;
333     uint8_t *hash = s->trellis_hash;
334     memset(hash, 0xff, 65536 * sizeof(*hash));
335
336     memset(nodep_buf, 0, 2 * frontier * sizeof(*nodep_buf));
337     nodes[0] = node_buf + frontier;
338     nodes[0]->ssd = 0;
339     nodes[0]->path = 0;
340     nodes[0]->step = c->step_index;
341     nodes[0]->sample1 = c->sample1;
342     nodes[0]->sample2 = c->sample2;
343     if((version == CODEC_ID_ADPCM_IMA_WAV) || (version == CODEC_ID_ADPCM_IMA_QT) || (version == CODEC_ID_ADPCM_SWF))
344         nodes[0]->sample1 = c->prev_sample;
345     if(version == CODEC_ID_ADPCM_MS)
346         nodes[0]->step = c->idelta;
347     if(version == CODEC_ID_ADPCM_YAMAHA) {
348         if(c->step == 0) {
349             nodes[0]->step = 127;
350             nodes[0]->sample1 = 0;
351         } else {
352             nodes[0]->step = c->step;
353             nodes[0]->sample1 = c->predictor;
354         }
355     }
356
357     for(i=0; i<n; i++) {
358         TrellisNode *t = node_buf + frontier*(i&1);
359         TrellisNode **u;
360         int sample = samples[i*stride];
361         int heap_pos = 0;
362         memset(nodes_next, 0, frontier*sizeof(TrellisNode*));
363         for(j=0; j<frontier && nodes[j]; j++) {
364             // higher j have higher ssd already, so they're likely to yield a suboptimal next sample too
365             const int range = (j < frontier/2) ? 1 : 0;
366             const int step = nodes[j]->step;
367             int nidx;
368             if(version == CODEC_ID_ADPCM_MS) {
369                 const int predictor = ((nodes[j]->sample1 * c->coeff1) + (nodes[j]->sample2 * c->coeff2)) / 64;
370                 const int div = (sample - predictor) / step;
371                 const int nmin = av_clip(div-range, -8, 6);
372                 const int nmax = av_clip(div+range, -7, 7);
373                 for(nidx=nmin; nidx<=nmax; nidx++) {
374                     const int nibble = nidx & 0xf;
375                     int dec_sample = predictor + nidx * step;
376 #define STORE_NODE(NAME, STEP_INDEX)\
377                     int d;\
378                     uint32_t ssd;\
379                     int pos;\
380                     TrellisNode *u;\
381                     uint8_t *h;\
382                     dec_sample = av_clip_int16(dec_sample);\
383                     d = sample - dec_sample;\
384                     ssd = nodes[j]->ssd + d*d;\
385                     /* Check for wraparound, skip such samples completely. \
386                      * Note, changing ssd to a 64 bit variable would be \
387                      * simpler, avoiding this check, but it's slower on \
388                      * x86 32 bit at the moment. */\
389                     if (ssd < nodes[j]->ssd)\
390                         goto next_##NAME;\
391                     /* Collapse any two states with the same previous sample value. \
392                      * One could also distinguish states by step and by 2nd to last
393                      * sample, but the effects of that are negligible.
394                      * Since nodes in the previous generation are iterated
395                      * through a heap, they're roughly ordered from better to
396                      * worse, but not strictly ordered. Therefore, an earlier
397                      * node with the same sample value is better in most cases
398                      * (and thus the current is skipped), but not strictly
399                      * in all cases. Only skipping samples where ssd >=
400                      * ssd of the earlier node with the same sample gives
401                      * slightly worse quality, though, for some reason. */ \
402                     h = &hash[(uint16_t) dec_sample];\
403                     if (*h == generation)\
404                         goto next_##NAME;\
405                     if (heap_pos < frontier) {\
406                         pos = heap_pos++;\
407                     } else {\
408                         /* Try to replace one of the leaf nodes with the new \
409                          * one, but try a different slot each time. */\
410                         pos = (frontier >> 1) + (heap_pos & ((frontier >> 1) - 1));\
411                         if (ssd > nodes_next[pos]->ssd)\
412                             goto next_##NAME;\
413                         heap_pos++;\
414                     }\
415                     *h = generation;\
416                     u = nodes_next[pos];\
417                     if(!u) {\
418                         assert(pathn < FREEZE_INTERVAL<<avctx->trellis);\
419                         u = t++;\
420                         nodes_next[pos] = u;\
421                         u->path = pathn++;\
422                     }\
423                     u->ssd = ssd;\
424                     u->step = STEP_INDEX;\
425                     u->sample2 = nodes[j]->sample1;\
426                     u->sample1 = dec_sample;\
427                     paths[u->path].nibble = nibble;\
428                     paths[u->path].prev = nodes[j]->path;\
429                     /* Sift the newly inserted node up in the heap to \
430                      * restore the heap property. */\
431                     while (pos > 0) {\
432                         int parent = (pos - 1) >> 1;\
433                         if (nodes_next[parent]->ssd <= ssd)\
434                             break;\
435                         FFSWAP(TrellisNode*, nodes_next[parent], nodes_next[pos]);\
436                         pos = parent;\
437                     }\
438                     next_##NAME:;
439                     STORE_NODE(ms, FFMAX(16, (AdaptationTable[nibble] * step) >> 8));
440                 }
441             } else if((version == CODEC_ID_ADPCM_IMA_WAV)|| (version == CODEC_ID_ADPCM_IMA_QT)|| (version == CODEC_ID_ADPCM_SWF)) {
442 #define LOOP_NODES(NAME, STEP_TABLE, STEP_INDEX)\
443                 const int predictor = nodes[j]->sample1;\
444                 const int div = (sample - predictor) * 4 / STEP_TABLE;\
445                 int nmin = av_clip(div-range, -7, 6);\
446                 int nmax = av_clip(div+range, -6, 7);\
447                 if(nmin<=0) nmin--; /* distinguish -0 from +0 */\
448                 if(nmax<0) nmax--;\
449                 for(nidx=nmin; nidx<=nmax; nidx++) {\
450                     const int nibble = nidx<0 ? 7-nidx : nidx;\
451                     int dec_sample = predictor + (STEP_TABLE * yamaha_difflookup[nibble]) / 8;\
452                     STORE_NODE(NAME, STEP_INDEX);\
453                 }
454                 LOOP_NODES(ima, step_table[step], av_clip(step + index_table[nibble], 0, 88));
455             } else { //CODEC_ID_ADPCM_YAMAHA
456                 LOOP_NODES(yamaha, step, av_clip((step * yamaha_indexscale[nibble]) >> 8, 127, 24567));
457 #undef LOOP_NODES
458 #undef STORE_NODE
459             }
460         }
461
462         u = nodes;
463         nodes = nodes_next;
464         nodes_next = u;
465
466         generation++;
467         if (generation == 255) {
468             memset(hash, 0xff, 65536 * sizeof(*hash));
469             generation = 0;
470         }
471
472         // prevent overflow
473         if(nodes[0]->ssd > (1<<28)) {
474             for(j=1; j<frontier && nodes[j]; j++)
475                 nodes[j]->ssd -= nodes[0]->ssd;
476             nodes[0]->ssd = 0;
477         }
478
479         // merge old paths to save memory
480         if(i == froze + FREEZE_INTERVAL) {
481             p = &paths[nodes[0]->path];
482             for(k=i; k>froze; k--) {
483                 dst[k] = p->nibble;
484                 p = &paths[p->prev];
485             }
486             froze = i;
487             pathn = 0;
488             // other nodes might use paths that don't coincide with the frozen one.
489             // checking which nodes do so is too slow, so just kill them all.
490             // this also slightly improves quality, but I don't know why.
491             memset(nodes+1, 0, (frontier-1)*sizeof(TrellisNode*));
492         }
493     }
494
495     p = &paths[nodes[0]->path];
496     for(i=n-1; i>froze; i--) {
497         dst[i] = p->nibble;
498         p = &paths[p->prev];
499     }
500
501     c->predictor = nodes[0]->sample1;
502     c->sample1 = nodes[0]->sample1;
503     c->sample2 = nodes[0]->sample2;
504     c->step_index = nodes[0]->step;
505     c->step = nodes[0]->step;
506     c->idelta = nodes[0]->step;
507 }
508
509 static int adpcm_encode_frame(AVCodecContext *avctx,
510                             unsigned char *frame, int buf_size, void *data)
511 {
512     int n, i, st;
513     short *samples;
514     unsigned char *dst;
515     ADPCMContext *c = avctx->priv_data;
516     uint8_t *buf;
517
518     dst = frame;
519     samples = (short *)data;
520     st= avctx->channels == 2;
521 /*    n = (BLKSIZE - 4 * avctx->channels) / (2 * 8 * avctx->channels); */
522
523     switch(avctx->codec->id) {
524     case CODEC_ID_ADPCM_IMA_WAV:
525         n = avctx->frame_size / 8;
526             c->status[0].prev_sample = (signed short)samples[0]; /* XXX */
527 /*            c->status[0].step_index = 0; *//* XXX: not sure how to init the state machine */
528             bytestream_put_le16(&dst, c->status[0].prev_sample);
529             *dst++ = (unsigned char)c->status[0].step_index;
530             *dst++ = 0; /* unknown */
531             samples++;
532             if (avctx->channels == 2) {
533                 c->status[1].prev_sample = (signed short)samples[0];
534 /*                c->status[1].step_index = 0; */
535                 bytestream_put_le16(&dst, c->status[1].prev_sample);
536                 *dst++ = (unsigned char)c->status[1].step_index;
537                 *dst++ = 0;
538                 samples++;
539             }
540
541             /* stereo: 4 bytes (8 samples) for left, 4 bytes for right, 4 bytes left, ... */
542             if(avctx->trellis > 0) {
543                 FF_ALLOC_OR_GOTO(avctx, buf, 2*n*8, error);
544                 adpcm_compress_trellis(avctx, samples, buf, &c->status[0], n*8);
545                 if(avctx->channels == 2)
546                     adpcm_compress_trellis(avctx, samples+1, buf + n*8, &c->status[1], n*8);
547                 for(i=0; i<n; i++) {
548                     *dst++ = buf[8*i+0] | (buf[8*i+1] << 4);
549                     *dst++ = buf[8*i+2] | (buf[8*i+3] << 4);
550                     *dst++ = buf[8*i+4] | (buf[8*i+5] << 4);
551                     *dst++ = buf[8*i+6] | (buf[8*i+7] << 4);
552                     if (avctx->channels == 2) {
553                         uint8_t *buf1 = buf + n*8;
554                         *dst++ = buf1[8*i+0] | (buf1[8*i+1] << 4);
555                         *dst++ = buf1[8*i+2] | (buf1[8*i+3] << 4);
556                         *dst++ = buf1[8*i+4] | (buf1[8*i+5] << 4);
557                         *dst++ = buf1[8*i+6] | (buf1[8*i+7] << 4);
558                     }
559                 }
560                 av_free(buf);
561             } else
562             for (; n>0; n--) {
563                 *dst = adpcm_ima_compress_sample(&c->status[0], samples[0]);
564                 *dst |= adpcm_ima_compress_sample(&c->status[0], samples[avctx->channels]) << 4;
565                 dst++;
566                 *dst = adpcm_ima_compress_sample(&c->status[0], samples[avctx->channels * 2]);
567                 *dst |= adpcm_ima_compress_sample(&c->status[0], samples[avctx->channels * 3]) << 4;
568                 dst++;
569                 *dst = adpcm_ima_compress_sample(&c->status[0], samples[avctx->channels * 4]);
570                 *dst |= adpcm_ima_compress_sample(&c->status[0], samples[avctx->channels * 5]) << 4;
571                 dst++;
572                 *dst = adpcm_ima_compress_sample(&c->status[0], samples[avctx->channels * 6]);
573                 *dst |= adpcm_ima_compress_sample(&c->status[0], samples[avctx->channels * 7]) << 4;
574                 dst++;
575                 /* right channel */
576                 if (avctx->channels == 2) {
577                     *dst = adpcm_ima_compress_sample(&c->status[1], samples[1]);
578                     *dst |= adpcm_ima_compress_sample(&c->status[1], samples[3]) << 4;
579                     dst++;
580                     *dst = adpcm_ima_compress_sample(&c->status[1], samples[5]);
581                     *dst |= adpcm_ima_compress_sample(&c->status[1], samples[7]) << 4;
582                     dst++;
583                     *dst = adpcm_ima_compress_sample(&c->status[1], samples[9]);
584                     *dst |= adpcm_ima_compress_sample(&c->status[1], samples[11]) << 4;
585                     dst++;
586                     *dst = adpcm_ima_compress_sample(&c->status[1], samples[13]);
587                     *dst |= adpcm_ima_compress_sample(&c->status[1], samples[15]) << 4;
588                     dst++;
589                 }
590                 samples += 8 * avctx->channels;
591             }
592         break;
593     case CODEC_ID_ADPCM_IMA_QT:
594     {
595         int ch, i;
596         PutBitContext pb;
597         init_put_bits(&pb, dst, buf_size*8);
598
599         for(ch=0; ch<avctx->channels; ch++){
600             put_bits(&pb, 9, (c->status[ch].prev_sample + 0x10000) >> 7);
601             put_bits(&pb, 7, c->status[ch].step_index);
602             if(avctx->trellis > 0) {
603                 uint8_t buf[64];
604                 adpcm_compress_trellis(avctx, samples+ch, buf, &c->status[ch], 64);
605                 for(i=0; i<64; i++)
606                     put_bits(&pb, 4, buf[i^1]);
607                 c->status[ch].prev_sample = c->status[ch].predictor & ~0x7F;
608             } else {
609                 for (i=0; i<64; i+=2){
610                     int t1, t2;
611                     t1 = adpcm_ima_compress_sample(&c->status[ch], samples[avctx->channels*(i+0)+ch]);
612                     t2 = adpcm_ima_compress_sample(&c->status[ch], samples[avctx->channels*(i+1)+ch]);
613                     put_bits(&pb, 4, t2);
614                     put_bits(&pb, 4, t1);
615                 }
616                 c->status[ch].prev_sample &= ~0x7F;
617             }
618         }
619
620         flush_put_bits(&pb);
621         dst += put_bits_count(&pb)>>3;
622         break;
623     }
624     case CODEC_ID_ADPCM_SWF:
625     {
626         int i;
627         PutBitContext pb;
628         init_put_bits(&pb, dst, buf_size*8);
629
630         n = avctx->frame_size-1;
631
632         //Store AdpcmCodeSize
633         put_bits(&pb, 2, 2);                //Set 4bits flash adpcm format
634
635         //Init the encoder state
636         for(i=0; i<avctx->channels; i++){
637             c->status[i].step_index = av_clip(c->status[i].step_index, 0, 63); // clip step so it fits 6 bits
638             put_sbits(&pb, 16, samples[i]);
639             put_bits(&pb, 6, c->status[i].step_index);
640             c->status[i].prev_sample = (signed short)samples[i];
641         }
642
643         if(avctx->trellis > 0) {
644             FF_ALLOC_OR_GOTO(avctx, buf, 2*n, error);
645             adpcm_compress_trellis(avctx, samples+2, buf, &c->status[0], n);
646             if (avctx->channels == 2)
647                 adpcm_compress_trellis(avctx, samples+3, buf+n, &c->status[1], n);
648             for(i=0; i<n; i++) {
649                 put_bits(&pb, 4, buf[i]);
650                 if (avctx->channels == 2)
651                     put_bits(&pb, 4, buf[n+i]);
652             }
653             av_free(buf);
654         } else {
655             for (i=1; i<avctx->frame_size; i++) {
656                 put_bits(&pb, 4, adpcm_ima_compress_sample(&c->status[0], samples[avctx->channels*i]));
657                 if (avctx->channels == 2)
658                     put_bits(&pb, 4, adpcm_ima_compress_sample(&c->status[1], samples[2*i+1]));
659             }
660         }
661         flush_put_bits(&pb);
662         dst += put_bits_count(&pb)>>3;
663         break;
664     }
665     case CODEC_ID_ADPCM_MS:
666         for(i=0; i<avctx->channels; i++){
667             int predictor=0;
668
669             *dst++ = predictor;
670             c->status[i].coeff1 = AdaptCoeff1[predictor];
671             c->status[i].coeff2 = AdaptCoeff2[predictor];
672         }
673         for(i=0; i<avctx->channels; i++){
674             if (c->status[i].idelta < 16)
675                 c->status[i].idelta = 16;
676
677             bytestream_put_le16(&dst, c->status[i].idelta);
678         }
679         for(i=0; i<avctx->channels; i++){
680             c->status[i].sample2= *samples++;
681         }
682         for(i=0; i<avctx->channels; i++){
683             c->status[i].sample1= *samples++;
684
685             bytestream_put_le16(&dst, c->status[i].sample1);
686         }
687         for(i=0; i<avctx->channels; i++)
688             bytestream_put_le16(&dst, c->status[i].sample2);
689
690         if(avctx->trellis > 0) {
691             int n = avctx->block_align - 7*avctx->channels;
692             FF_ALLOC_OR_GOTO(avctx, buf, 2*n, error);
693             if(avctx->channels == 1) {
694                 adpcm_compress_trellis(avctx, samples, buf, &c->status[0], n);
695                 for(i=0; i<n; i+=2)
696                     *dst++ = (buf[i] << 4) | buf[i+1];
697             } else {
698                 adpcm_compress_trellis(avctx, samples, buf, &c->status[0], n);
699                 adpcm_compress_trellis(avctx, samples+1, buf+n, &c->status[1], n);
700                 for(i=0; i<n; i++)
701                     *dst++ = (buf[i] << 4) | buf[n+i];
702             }
703             av_free(buf);
704         } else
705         for(i=7*avctx->channels; i<avctx->block_align; i++) {
706             int nibble;
707             nibble = adpcm_ms_compress_sample(&c->status[ 0], *samples++)<<4;
708             nibble|= adpcm_ms_compress_sample(&c->status[st], *samples++);
709             *dst++ = nibble;
710         }
711         break;
712     case CODEC_ID_ADPCM_YAMAHA:
713         n = avctx->frame_size / 2;
714         if(avctx->trellis > 0) {
715             FF_ALLOC_OR_GOTO(avctx, buf, 2*n*2, error);
716             n *= 2;
717             if(avctx->channels == 1) {
718                 adpcm_compress_trellis(avctx, samples, buf, &c->status[0], n);
719                 for(i=0; i<n; i+=2)
720                     *dst++ = buf[i] | (buf[i+1] << 4);
721             } else {
722                 adpcm_compress_trellis(avctx, samples, buf, &c->status[0], n);
723                 adpcm_compress_trellis(avctx, samples+1, buf+n, &c->status[1], n);
724                 for(i=0; i<n; i++)
725                     *dst++ = buf[i] | (buf[n+i] << 4);
726             }
727             av_free(buf);
728         } else
729             for (n *= avctx->channels; n>0; n--) {
730                 int nibble;
731                 nibble  = adpcm_yamaha_compress_sample(&c->status[ 0], *samples++);
732                 nibble |= adpcm_yamaha_compress_sample(&c->status[st], *samples++) << 4;
733                 *dst++ = nibble;
734             }
735         break;
736     default:
737     error:
738         return -1;
739     }
740     return dst - frame;
741 }
742 #endif //CONFIG_ENCODERS
743
744 static av_cold int adpcm_decode_init(AVCodecContext * avctx)
745 {
746     ADPCMContext *c = avctx->priv_data;
747     unsigned int max_channels = 2;
748
749     switch(avctx->codec->id) {
750     case CODEC_ID_ADPCM_EA_R1:
751     case CODEC_ID_ADPCM_EA_R2:
752     case CODEC_ID_ADPCM_EA_R3:
753     case CODEC_ID_ADPCM_EA_XAS:
754         max_channels = 6;
755         break;
756     }
757     if(avctx->channels > max_channels){
758         return -1;
759     }
760
761     switch(avctx->codec->id) {
762     case CODEC_ID_ADPCM_CT:
763         c->status[0].step = c->status[1].step = 511;
764         break;
765     case CODEC_ID_ADPCM_IMA_WAV:
766         if (avctx->bits_per_coded_sample != 4) {
767             av_log(avctx, AV_LOG_ERROR, "Only 4-bit ADPCM IMA WAV files are supported\n");
768             return -1;
769         }
770         break;
771     case CODEC_ID_ADPCM_IMA_WS:
772         if (avctx->extradata && avctx->extradata_size == 2 * 4) {
773             c->status[0].predictor = AV_RL32(avctx->extradata);
774             c->status[1].predictor = AV_RL32(avctx->extradata + 4);
775         }
776         break;
777     default:
778         break;
779     }
780     avctx->sample_fmt = AV_SAMPLE_FMT_S16;
781     return 0;
782 }
783
784 static inline short adpcm_ima_expand_nibble(ADPCMChannelStatus *c, char nibble, int shift)
785 {
786     int step_index;
787     int predictor;
788     int sign, delta, diff, step;
789
790     step = step_table[c->step_index];
791     step_index = c->step_index + index_table[(unsigned)nibble];
792     if (step_index < 0) step_index = 0;
793     else if (step_index > 88) step_index = 88;
794
795     sign = nibble & 8;
796     delta = nibble & 7;
797     /* perform direct multiplication instead of series of jumps proposed by
798      * the reference ADPCM implementation since modern CPUs can do the mults
799      * quickly enough */
800     diff = ((2 * delta + 1) * step) >> shift;
801     predictor = c->predictor;
802     if (sign) predictor -= diff;
803     else predictor += diff;
804
805     c->predictor = av_clip_int16(predictor);
806     c->step_index = step_index;
807
808     return (short)c->predictor;
809 }
810
811 static inline int adpcm_ima_qt_expand_nibble(ADPCMChannelStatus *c, int nibble, int shift)
812 {
813     int step_index;
814     int predictor;
815     int diff, step;
816
817     step = step_table[c->step_index];
818     step_index = c->step_index + index_table[nibble];
819     step_index = av_clip(step_index, 0, 88);
820
821     diff = step >> 3;
822     if (nibble & 4) diff += step;
823     if (nibble & 2) diff += step >> 1;
824     if (nibble & 1) diff += step >> 2;
825
826     if (nibble & 8)
827         predictor = c->predictor - diff;
828     else
829         predictor = c->predictor + diff;
830
831     c->predictor = av_clip_int16(predictor);
832     c->step_index = step_index;
833
834     return c->predictor;
835 }
836
837 static inline short adpcm_ms_expand_nibble(ADPCMChannelStatus *c, char nibble)
838 {
839     int predictor;
840
841     predictor = (((c->sample1) * (c->coeff1)) + ((c->sample2) * (c->coeff2))) / 64;
842     predictor += (signed)((nibble & 0x08)?(nibble - 0x10):(nibble)) * c->idelta;
843
844     c->sample2 = c->sample1;
845     c->sample1 = av_clip_int16(predictor);
846     c->idelta = (AdaptationTable[(int)nibble] * c->idelta) >> 8;
847     if (c->idelta < 16) c->idelta = 16;
848
849     return c->sample1;
850 }
851
852 static inline short adpcm_ct_expand_nibble(ADPCMChannelStatus *c, char nibble)
853 {
854     int sign, delta, diff;
855     int new_step;
856
857     sign = nibble & 8;
858     delta = nibble & 7;
859     /* perform direct multiplication instead of series of jumps proposed by
860      * the reference ADPCM implementation since modern CPUs can do the mults
861      * quickly enough */
862     diff = ((2 * delta + 1) * c->step) >> 3;
863     /* predictor update is not so trivial: predictor is multiplied on 254/256 before updating */
864     c->predictor = ((c->predictor * 254) >> 8) + (sign ? -diff : diff);
865     c->predictor = av_clip_int16(c->predictor);
866     /* calculate new step and clamp it to range 511..32767 */
867     new_step = (AdaptationTable[nibble & 7] * c->step) >> 8;
868     c->step = av_clip(new_step, 511, 32767);
869
870     return (short)c->predictor;
871 }
872
873 static inline short adpcm_sbpro_expand_nibble(ADPCMChannelStatus *c, char nibble, int size, int shift)
874 {
875     int sign, delta, diff;
876
877     sign = nibble & (1<<(size-1));
878     delta = nibble & ((1<<(size-1))-1);
879     diff = delta << (7 + c->step + shift);
880
881     /* clamp result */
882     c->predictor = av_clip(c->predictor + (sign ? -diff : diff), -16384,16256);
883
884     /* calculate new step */
885     if (delta >= (2*size - 3) && c->step < 3)
886         c->step++;
887     else if (delta == 0 && c->step > 0)
888         c->step--;
889
890     return (short) c->predictor;
891 }
892
893 static inline short adpcm_yamaha_expand_nibble(ADPCMChannelStatus *c, unsigned char nibble)
894 {
895     if(!c->step) {
896         c->predictor = 0;
897         c->step = 127;
898     }
899
900     c->predictor += (c->step * yamaha_difflookup[nibble]) / 8;
901     c->predictor = av_clip_int16(c->predictor);
902     c->step = (c->step * yamaha_indexscale[nibble]) >> 8;
903     c->step = av_clip(c->step, 127, 24567);
904     return c->predictor;
905 }
906
907 static void xa_decode(short *out, const unsigned char *in,
908     ADPCMChannelStatus *left, ADPCMChannelStatus *right, int inc)
909 {
910     int i, j;
911     int shift,filter,f0,f1;
912     int s_1,s_2;
913     int d,s,t;
914
915     for(i=0;i<4;i++) {
916
917         shift  = 12 - (in[4+i*2] & 15);
918         filter = in[4+i*2] >> 4;
919         f0 = xa_adpcm_table[filter][0];
920         f1 = xa_adpcm_table[filter][1];
921
922         s_1 = left->sample1;
923         s_2 = left->sample2;
924
925         for(j=0;j<28;j++) {
926             d = in[16+i+j*4];
927
928             t = (signed char)(d<<4)>>4;
929             s = ( t<<shift ) + ((s_1*f0 + s_2*f1+32)>>6);
930             s_2 = s_1;
931             s_1 = av_clip_int16(s);
932             *out = s_1;
933             out += inc;
934         }
935
936         if (inc==2) { /* stereo */
937             left->sample1 = s_1;
938             left->sample2 = s_2;
939             s_1 = right->sample1;
940             s_2 = right->sample2;
941             out = out + 1 - 28*2;
942         }
943
944         shift  = 12 - (in[5+i*2] & 15);
945         filter = in[5+i*2] >> 4;
946
947         f0 = xa_adpcm_table[filter][0];
948         f1 = xa_adpcm_table[filter][1];
949
950         for(j=0;j<28;j++) {
951             d = in[16+i+j*4];
952
953             t = (signed char)d >> 4;
954             s = ( t<<shift ) + ((s_1*f0 + s_2*f1+32)>>6);
955             s_2 = s_1;
956             s_1 = av_clip_int16(s);
957             *out = s_1;
958             out += inc;
959         }
960
961         if (inc==2) { /* stereo */
962             right->sample1 = s_1;
963             right->sample2 = s_2;
964             out -= 1;
965         } else {
966             left->sample1 = s_1;
967             left->sample2 = s_2;
968         }
969     }
970 }
971
972
973 /* DK3 ADPCM support macro */
974 #define DK3_GET_NEXT_NIBBLE() \
975     if (decode_top_nibble_next) \
976     { \
977         nibble = last_byte >> 4; \
978         decode_top_nibble_next = 0; \
979     } \
980     else \
981     { \
982         last_byte = *src++; \
983         if (src >= buf + buf_size) break; \
984         nibble = last_byte & 0x0F; \
985         decode_top_nibble_next = 1; \
986     }
987
988 static int adpcm_decode_frame(AVCodecContext *avctx,
989                             void *data, int *data_size,
990                             AVPacket *avpkt)
991 {
992     const uint8_t *buf = avpkt->data;
993     int buf_size = avpkt->size;
994     ADPCMContext *c = avctx->priv_data;
995     ADPCMChannelStatus *cs;
996     int n, m, channel, i;
997     int block_predictor[2];
998     short *samples;
999     short *samples_end;
1000     const uint8_t *src;
1001     int st; /* stereo */
1002
1003     /* DK3 ADPCM accounting variables */
1004     unsigned char last_byte = 0;
1005     unsigned char nibble;
1006     int decode_top_nibble_next = 0;
1007     int diff_channel;
1008
1009     /* EA ADPCM state variables */
1010     uint32_t samples_in_chunk;
1011     int32_t previous_left_sample, previous_right_sample;
1012     int32_t current_left_sample, current_right_sample;
1013     int32_t next_left_sample, next_right_sample;
1014     int32_t coeff1l, coeff2l, coeff1r, coeff2r;
1015     uint8_t shift_left, shift_right;
1016     int count1, count2;
1017     int coeff[2][2], shift[2];//used in EA MAXIS ADPCM
1018
1019     if (!buf_size)
1020         return 0;
1021
1022     //should protect all 4bit ADPCM variants
1023     //8 is needed for CODEC_ID_ADPCM_IMA_WAV with 2 channels
1024     //
1025     if(*data_size/4 < buf_size + 8)
1026         return -1;
1027
1028     samples = data;
1029     samples_end= samples + *data_size/2;
1030     *data_size= 0;
1031     src = buf;
1032
1033     st = avctx->channels == 2 ? 1 : 0;
1034
1035     switch(avctx->codec->id) {
1036     case CODEC_ID_ADPCM_IMA_QT:
1037         n = buf_size - 2*avctx->channels;
1038         for (channel = 0; channel < avctx->channels; channel++) {
1039             int16_t predictor;
1040             int step_index;
1041             cs = &(c->status[channel]);
1042             /* (pppppp) (piiiiiii) */
1043
1044             /* Bits 15-7 are the _top_ 9 bits of the 16-bit initial predictor value */
1045             predictor = AV_RB16(src);
1046             step_index = predictor & 0x7F;
1047             predictor &= 0xFF80;
1048
1049             src += 2;
1050
1051             if (cs->step_index == step_index) {
1052                 int diff = (int)predictor - cs->predictor;
1053                 if (diff < 0)
1054                     diff = - diff;
1055                 if (diff > 0x7f)
1056                     goto update;
1057             } else {
1058             update:
1059                 cs->step_index = step_index;
1060                 cs->predictor = predictor;
1061             }
1062
1063             if (cs->step_index > 88){
1064                 av_log(avctx, AV_LOG_ERROR, "ERROR: step_index = %i\n", cs->step_index);
1065                 cs->step_index = 88;
1066             }
1067
1068             samples = (short*)data + channel;
1069
1070             for(m=32; n>0 && m>0; n--, m--) { /* in QuickTime, IMA is encoded by chuncks of 34 bytes (=64 samples) */
1071                 *samples = adpcm_ima_qt_expand_nibble(cs, src[0] & 0x0F, 3);
1072                 samples += avctx->channels;
1073                 *samples = adpcm_ima_qt_expand_nibble(cs, src[0] >> 4  , 3);
1074                 samples += avctx->channels;
1075                 src ++;
1076             }
1077         }
1078         if (st)
1079             samples--;
1080         break;
1081     case CODEC_ID_ADPCM_IMA_WAV:
1082         if (avctx->block_align != 0 && buf_size > avctx->block_align)
1083             buf_size = avctx->block_align;
1084
1085 //        samples_per_block= (block_align-4*chanels)*8 / (bits_per_sample * chanels) + 1;
1086
1087         for(i=0; i<avctx->channels; i++){
1088             cs = &(c->status[i]);
1089             cs->predictor = *samples++ = (int16_t)bytestream_get_le16(&src);
1090
1091             cs->step_index = *src++;
1092             if (cs->step_index > 88){
1093                 av_log(avctx, AV_LOG_ERROR, "ERROR: step_index = %i\n", cs->step_index);
1094                 cs->step_index = 88;
1095             }
1096             if (*src++) av_log(avctx, AV_LOG_ERROR, "unused byte should be null but is %d!!\n", src[-1]); /* unused */
1097         }
1098
1099         while(src < buf + buf_size){
1100             for(m=0; m<4; m++){
1101                 for(i=0; i<=st; i++)
1102                     *samples++ = adpcm_ima_expand_nibble(&c->status[i], src[4*i] & 0x0F, 3);
1103                 for(i=0; i<=st; i++)
1104                     *samples++ = adpcm_ima_expand_nibble(&c->status[i], src[4*i] >> 4  , 3);
1105                 src++;
1106             }
1107             src += 4*st;
1108         }
1109         break;
1110     case CODEC_ID_ADPCM_4XM:
1111         cs = &(c->status[0]);
1112         c->status[0].predictor= (int16_t)bytestream_get_le16(&src);
1113         if(st){
1114             c->status[1].predictor= (int16_t)bytestream_get_le16(&src);
1115         }
1116         c->status[0].step_index= (int16_t)bytestream_get_le16(&src);
1117         if(st){
1118             c->status[1].step_index= (int16_t)bytestream_get_le16(&src);
1119         }
1120         if (cs->step_index < 0) cs->step_index = 0;
1121         if (cs->step_index > 88) cs->step_index = 88;
1122
1123         m= (buf_size - (src - buf))>>st;
1124         for(i=0; i<m; i++) {
1125             *samples++ = adpcm_ima_expand_nibble(&c->status[0], src[i] & 0x0F, 4);
1126             if (st)
1127                 *samples++ = adpcm_ima_expand_nibble(&c->status[1], src[i+m] & 0x0F, 4);
1128             *samples++ = adpcm_ima_expand_nibble(&c->status[0], src[i] >> 4, 4);
1129             if (st)
1130                 *samples++ = adpcm_ima_expand_nibble(&c->status[1], src[i+m] >> 4, 4);
1131         }
1132
1133         src += m<<st;
1134
1135         break;
1136     case CODEC_ID_ADPCM_MS:
1137         if (avctx->block_align != 0 && buf_size > avctx->block_align)
1138             buf_size = avctx->block_align;
1139         n = buf_size - 7 * avctx->channels;
1140         if (n < 0)
1141             return -1;
1142         block_predictor[0] = av_clip(*src++, 0, 6);
1143         block_predictor[1] = 0;
1144         if (st)
1145             block_predictor[1] = av_clip(*src++, 0, 6);
1146         c->status[0].idelta = (int16_t)bytestream_get_le16(&src);
1147         if (st){
1148             c->status[1].idelta = (int16_t)bytestream_get_le16(&src);
1149         }
1150         c->status[0].coeff1 = AdaptCoeff1[block_predictor[0]];
1151         c->status[0].coeff2 = AdaptCoeff2[block_predictor[0]];
1152         c->status[1].coeff1 = AdaptCoeff1[block_predictor[1]];
1153         c->status[1].coeff2 = AdaptCoeff2[block_predictor[1]];
1154
1155         c->status[0].sample1 = bytestream_get_le16(&src);
1156         if (st) c->status[1].sample1 = bytestream_get_le16(&src);
1157         c->status[0].sample2 = bytestream_get_le16(&src);
1158         if (st) c->status[1].sample2 = bytestream_get_le16(&src);
1159
1160         *samples++ = c->status[0].sample2;
1161         if (st) *samples++ = c->status[1].sample2;
1162         *samples++ = c->status[0].sample1;
1163         if (st) *samples++ = c->status[1].sample1;
1164         for(;n>0;n--) {
1165             *samples++ = adpcm_ms_expand_nibble(&c->status[0 ], src[0] >> 4  );
1166             *samples++ = adpcm_ms_expand_nibble(&c->status[st], src[0] & 0x0F);
1167             src ++;
1168         }
1169         break;
1170     case CODEC_ID_ADPCM_IMA_DK4:
1171         if (avctx->block_align != 0 && buf_size > avctx->block_align)
1172             buf_size = avctx->block_align;
1173
1174         c->status[0].predictor  = (int16_t)bytestream_get_le16(&src);
1175         c->status[0].step_index = *src++;
1176         src++;
1177         *samples++ = c->status[0].predictor;
1178         if (st) {
1179             c->status[1].predictor  = (int16_t)bytestream_get_le16(&src);
1180             c->status[1].step_index = *src++;
1181             src++;
1182             *samples++ = c->status[1].predictor;
1183         }
1184         while (src < buf + buf_size) {
1185
1186             /* take care of the top nibble (always left or mono channel) */
1187             *samples++ = adpcm_ima_expand_nibble(&c->status[0],
1188                 src[0] >> 4, 3);
1189
1190             /* take care of the bottom nibble, which is right sample for
1191              * stereo, or another mono sample */
1192             if (st)
1193                 *samples++ = adpcm_ima_expand_nibble(&c->status[1],
1194                     src[0] & 0x0F, 3);
1195             else
1196                 *samples++ = adpcm_ima_expand_nibble(&c->status[0],
1197                     src[0] & 0x0F, 3);
1198
1199             src++;
1200         }
1201         break;
1202     case CODEC_ID_ADPCM_IMA_DK3:
1203         if (avctx->block_align != 0 && buf_size > avctx->block_align)
1204             buf_size = avctx->block_align;
1205
1206         if(buf_size + 16 > (samples_end - samples)*3/8)
1207             return -1;
1208
1209         c->status[0].predictor  = (int16_t)AV_RL16(src + 10);
1210         c->status[1].predictor  = (int16_t)AV_RL16(src + 12);
1211         c->status[0].step_index = src[14];
1212         c->status[1].step_index = src[15];
1213         /* sign extend the predictors */
1214         src += 16;
1215         diff_channel = c->status[1].predictor;
1216
1217         /* the DK3_GET_NEXT_NIBBLE macro issues the break statement when
1218          * the buffer is consumed */
1219         while (1) {
1220
1221             /* for this algorithm, c->status[0] is the sum channel and
1222              * c->status[1] is the diff channel */
1223
1224             /* process the first predictor of the sum channel */
1225             DK3_GET_NEXT_NIBBLE();
1226             adpcm_ima_expand_nibble(&c->status[0], nibble, 3);
1227
1228             /* process the diff channel predictor */
1229             DK3_GET_NEXT_NIBBLE();
1230             adpcm_ima_expand_nibble(&c->status[1], nibble, 3);
1231
1232             /* process the first pair of stereo PCM samples */
1233             diff_channel = (diff_channel + c->status[1].predictor) / 2;
1234             *samples++ = c->status[0].predictor + c->status[1].predictor;
1235             *samples++ = c->status[0].predictor - c->status[1].predictor;
1236
1237             /* process the second predictor of the sum channel */
1238             DK3_GET_NEXT_NIBBLE();
1239             adpcm_ima_expand_nibble(&c->status[0], nibble, 3);
1240
1241             /* process the second pair of stereo PCM samples */
1242             diff_channel = (diff_channel + c->status[1].predictor) / 2;
1243             *samples++ = c->status[0].predictor + c->status[1].predictor;
1244             *samples++ = c->status[0].predictor - c->status[1].predictor;
1245         }
1246         break;
1247     case CODEC_ID_ADPCM_IMA_ISS:
1248         c->status[0].predictor  = (int16_t)AV_RL16(src + 0);
1249         c->status[0].step_index = src[2];
1250         src += 4;
1251         if(st) {
1252             c->status[1].predictor  = (int16_t)AV_RL16(src + 0);
1253             c->status[1].step_index = src[2];
1254             src += 4;
1255         }
1256
1257         while (src < buf + buf_size) {
1258
1259             if (st) {
1260                 *samples++ = adpcm_ima_expand_nibble(&c->status[0],
1261                     src[0] >> 4  , 3);
1262                 *samples++ = adpcm_ima_expand_nibble(&c->status[1],
1263                     src[0] & 0x0F, 3);
1264             } else {
1265                 *samples++ = adpcm_ima_expand_nibble(&c->status[0],
1266                     src[0] & 0x0F, 3);
1267                 *samples++ = adpcm_ima_expand_nibble(&c->status[0],
1268                     src[0] >> 4  , 3);
1269             }
1270
1271             src++;
1272         }
1273         break;
1274     case CODEC_ID_ADPCM_IMA_WS:
1275         /* no per-block initialization; just start decoding the data */
1276         while (src < buf + buf_size) {
1277
1278             if (st) {
1279                 *samples++ = adpcm_ima_expand_nibble(&c->status[0],
1280                     src[0] >> 4  , 3);
1281                 *samples++ = adpcm_ima_expand_nibble(&c->status[1],
1282                     src[0] & 0x0F, 3);
1283             } else {
1284                 *samples++ = adpcm_ima_expand_nibble(&c->status[0],
1285                     src[0] >> 4  , 3);
1286                 *samples++ = adpcm_ima_expand_nibble(&c->status[0],
1287                     src[0] & 0x0F, 3);
1288             }
1289
1290             src++;
1291         }
1292         break;
1293     case CODEC_ID_ADPCM_XA:
1294         while (buf_size >= 128) {
1295             xa_decode(samples, src, &c->status[0], &c->status[1],
1296                 avctx->channels);
1297             src += 128;
1298             samples += 28 * 8;
1299             buf_size -= 128;
1300         }
1301         break;
1302     case CODEC_ID_ADPCM_IMA_EA_EACS:
1303         samples_in_chunk = bytestream_get_le32(&src) >> (1-st);
1304
1305         if (samples_in_chunk > buf_size-4-(8<<st)) {
1306             src += buf_size - 4;
1307             break;
1308         }
1309
1310         for (i=0; i<=st; i++)
1311             c->status[i].step_index = bytestream_get_le32(&src);
1312         for (i=0; i<=st; i++)
1313             c->status[i].predictor  = bytestream_get_le32(&src);
1314
1315         for (; samples_in_chunk; samples_in_chunk--, src++) {
1316             *samples++ = adpcm_ima_expand_nibble(&c->status[0],  *src>>4,   3);
1317             *samples++ = adpcm_ima_expand_nibble(&c->status[st], *src&0x0F, 3);
1318         }
1319         break;
1320     case CODEC_ID_ADPCM_IMA_EA_SEAD:
1321         for (; src < buf+buf_size; src++) {
1322             *samples++ = adpcm_ima_expand_nibble(&c->status[0], src[0] >> 4, 6);
1323             *samples++ = adpcm_ima_expand_nibble(&c->status[st],src[0]&0x0F, 6);
1324         }
1325         break;
1326     case CODEC_ID_ADPCM_EA:
1327         if (buf_size < 12 || AV_RL32(src) > (buf_size - 12)/30*28) {
1328             src += buf_size;
1329             break;
1330         }
1331         samples_in_chunk = AV_RL32(src);
1332         src += 4;
1333         current_left_sample   = (int16_t)bytestream_get_le16(&src);
1334         previous_left_sample  = (int16_t)bytestream_get_le16(&src);
1335         current_right_sample  = (int16_t)bytestream_get_le16(&src);
1336         previous_right_sample = (int16_t)bytestream_get_le16(&src);
1337
1338         for (count1 = 0; count1 < samples_in_chunk/28;count1++) {
1339             coeff1l = ea_adpcm_table[ *src >> 4       ];
1340             coeff2l = ea_adpcm_table[(*src >> 4  ) + 4];
1341             coeff1r = ea_adpcm_table[*src & 0x0F];
1342             coeff2r = ea_adpcm_table[(*src & 0x0F) + 4];
1343             src++;
1344
1345             shift_left  = (*src >> 4  ) + 8;
1346             shift_right = (*src & 0x0F) + 8;
1347             src++;
1348
1349             for (count2 = 0; count2 < 28; count2++) {
1350                 next_left_sample  = (int32_t)((*src & 0xF0) << 24) >> shift_left;
1351                 next_right_sample = (int32_t)((*src & 0x0F) << 28) >> shift_right;
1352                 src++;
1353
1354                 next_left_sample = (next_left_sample +
1355                     (current_left_sample * coeff1l) +
1356                     (previous_left_sample * coeff2l) + 0x80) >> 8;
1357                 next_right_sample = (next_right_sample +
1358                     (current_right_sample * coeff1r) +
1359                     (previous_right_sample * coeff2r) + 0x80) >> 8;
1360
1361                 previous_left_sample = current_left_sample;
1362                 current_left_sample = av_clip_int16(next_left_sample);
1363                 previous_right_sample = current_right_sample;
1364                 current_right_sample = av_clip_int16(next_right_sample);
1365                 *samples++ = (unsigned short)current_left_sample;
1366                 *samples++ = (unsigned short)current_right_sample;
1367             }
1368         }
1369
1370         if (src - buf == buf_size - 2)
1371             src += 2; // Skip terminating 0x0000
1372
1373         break;
1374     case CODEC_ID_ADPCM_EA_MAXIS_XA:
1375         for(channel = 0; channel < avctx->channels; channel++) {
1376             for (i=0; i<2; i++)
1377                 coeff[channel][i] = ea_adpcm_table[(*src >> 4) + 4*i];
1378             shift[channel] = (*src & 0x0F) + 8;
1379             src++;
1380         }
1381         for (count1 = 0; count1 < (buf_size - avctx->channels) / avctx->channels; count1++) {
1382             for(i = 4; i >= 0; i-=4) { /* Pairwise samples LL RR (st) or LL LL (mono) */
1383                 for(channel = 0; channel < avctx->channels; channel++) {
1384                     int32_t sample = (int32_t)(((*(src+channel) >> i) & 0x0F) << 0x1C) >> shift[channel];
1385                     sample = (sample +
1386                              c->status[channel].sample1 * coeff[channel][0] +
1387                              c->status[channel].sample2 * coeff[channel][1] + 0x80) >> 8;
1388                     c->status[channel].sample2 = c->status[channel].sample1;
1389                     c->status[channel].sample1 = av_clip_int16(sample);
1390                     *samples++ = c->status[channel].sample1;
1391                 }
1392             }
1393             src+=avctx->channels;
1394         }
1395         break;
1396     case CODEC_ID_ADPCM_EA_R1:
1397     case CODEC_ID_ADPCM_EA_R2:
1398     case CODEC_ID_ADPCM_EA_R3: {
1399         /* channel numbering
1400            2chan: 0=fl, 1=fr
1401            4chan: 0=fl, 1=rl, 2=fr, 3=rr
1402            6chan: 0=fl, 1=c,  2=fr, 3=rl,  4=rr, 5=sub */
1403         const int big_endian = avctx->codec->id == CODEC_ID_ADPCM_EA_R3;
1404         int32_t previous_sample, current_sample, next_sample;
1405         int32_t coeff1, coeff2;
1406         uint8_t shift;
1407         unsigned int channel;
1408         uint16_t *samplesC;
1409         const uint8_t *srcC;
1410         const uint8_t *src_end = buf + buf_size;
1411
1412         samples_in_chunk = (big_endian ? bytestream_get_be32(&src)
1413                                        : bytestream_get_le32(&src)) / 28;
1414         if (samples_in_chunk > UINT32_MAX/(28*avctx->channels) ||
1415             28*samples_in_chunk*avctx->channels > samples_end-samples) {
1416             src += buf_size - 4;
1417             break;
1418         }
1419
1420         for (channel=0; channel<avctx->channels; channel++) {
1421             int32_t offset = (big_endian ? bytestream_get_be32(&src)
1422                                          : bytestream_get_le32(&src))
1423                            + (avctx->channels-channel-1) * 4;
1424
1425             if ((offset < 0) || (offset >= src_end - src - 4)) break;
1426             srcC  = src + offset;
1427             samplesC = samples + channel;
1428
1429             if (avctx->codec->id == CODEC_ID_ADPCM_EA_R1) {
1430                 current_sample  = (int16_t)bytestream_get_le16(&srcC);
1431                 previous_sample = (int16_t)bytestream_get_le16(&srcC);
1432             } else {
1433                 current_sample  = c->status[channel].predictor;
1434                 previous_sample = c->status[channel].prev_sample;
1435             }
1436
1437             for (count1=0; count1<samples_in_chunk; count1++) {
1438                 if (*srcC == 0xEE) {  /* only seen in R2 and R3 */
1439                     srcC++;
1440                     if (srcC > src_end - 30*2) break;
1441                     current_sample  = (int16_t)bytestream_get_be16(&srcC);
1442                     previous_sample = (int16_t)bytestream_get_be16(&srcC);
1443
1444                     for (count2=0; count2<28; count2++) {
1445                         *samplesC = (int16_t)bytestream_get_be16(&srcC);
1446                         samplesC += avctx->channels;
1447                     }
1448                 } else {
1449                     coeff1 = ea_adpcm_table[ *srcC>>4     ];
1450                     coeff2 = ea_adpcm_table[(*srcC>>4) + 4];
1451                     shift = (*srcC++ & 0x0F) + 8;
1452
1453                     if (srcC > src_end - 14) break;
1454                     for (count2=0; count2<28; count2++) {
1455                         if (count2 & 1)
1456                             next_sample = (int32_t)((*srcC++ & 0x0F) << 28) >> shift;
1457                         else
1458                             next_sample = (int32_t)((*srcC   & 0xF0) << 24) >> shift;
1459
1460                         next_sample += (current_sample  * coeff1) +
1461                                        (previous_sample * coeff2);
1462                         next_sample = av_clip_int16(next_sample >> 8);
1463
1464                         previous_sample = current_sample;
1465                         current_sample  = next_sample;
1466                         *samplesC = current_sample;
1467                         samplesC += avctx->channels;
1468                     }
1469                 }
1470             }
1471
1472             if (avctx->codec->id != CODEC_ID_ADPCM_EA_R1) {
1473                 c->status[channel].predictor   = current_sample;
1474                 c->status[channel].prev_sample = previous_sample;
1475             }
1476         }
1477
1478         src = src + buf_size - (4 + 4*avctx->channels);
1479         samples += 28 * samples_in_chunk * avctx->channels;
1480         break;
1481     }
1482     case CODEC_ID_ADPCM_EA_XAS:
1483         if (samples_end-samples < 32*4*avctx->channels
1484             || buf_size < (4+15)*4*avctx->channels) {
1485             src += buf_size;
1486             break;
1487         }
1488         for (channel=0; channel<avctx->channels; channel++) {
1489             int coeff[2][4], shift[4];
1490             short *s2, *s = &samples[channel];
1491             for (n=0; n<4; n++, s+=32*avctx->channels) {
1492                 for (i=0; i<2; i++)
1493                     coeff[i][n] = ea_adpcm_table[(src[0]&0x0F)+4*i];
1494                 shift[n] = (src[2]&0x0F) + 8;
1495                 for (s2=s, i=0; i<2; i++, src+=2, s2+=avctx->channels)
1496                     s2[0] = (src[0]&0xF0) + (src[1]<<8);
1497             }
1498
1499             for (m=2; m<32; m+=2) {
1500                 s = &samples[m*avctx->channels + channel];
1501                 for (n=0; n<4; n++, src++, s+=32*avctx->channels) {
1502                     for (s2=s, i=0; i<8; i+=4, s2+=avctx->channels) {
1503                         int level = (int32_t)((*src & (0xF0>>i)) << (24+i)) >> shift[n];
1504                         int pred  = s2[-1*avctx->channels] * coeff[0][n]
1505                                   + s2[-2*avctx->channels] * coeff[1][n];
1506                         s2[0] = av_clip_int16((level + pred + 0x80) >> 8);
1507                     }
1508                 }
1509             }
1510         }
1511         samples += 32*4*avctx->channels;
1512         break;
1513     case CODEC_ID_ADPCM_IMA_AMV:
1514     case CODEC_ID_ADPCM_IMA_SMJPEG:
1515         c->status[0].predictor = (int16_t)bytestream_get_le16(&src);
1516         c->status[0].step_index = bytestream_get_le16(&src);
1517
1518         if (avctx->codec->id == CODEC_ID_ADPCM_IMA_AMV)
1519             src+=4;
1520
1521         while (src < buf + buf_size) {
1522             char hi, lo;
1523             lo = *src & 0x0F;
1524             hi = *src >> 4;
1525
1526             if (avctx->codec->id == CODEC_ID_ADPCM_IMA_AMV)
1527                 FFSWAP(char, hi, lo);
1528
1529             *samples++ = adpcm_ima_expand_nibble(&c->status[0],
1530                 lo, 3);
1531             *samples++ = adpcm_ima_expand_nibble(&c->status[0],
1532                 hi, 3);
1533             src++;
1534         }
1535         break;
1536     case CODEC_ID_ADPCM_CT:
1537         while (src < buf + buf_size) {
1538             if (st) {
1539                 *samples++ = adpcm_ct_expand_nibble(&c->status[0],
1540                     src[0] >> 4);
1541                 *samples++ = adpcm_ct_expand_nibble(&c->status[1],
1542                     src[0] & 0x0F);
1543             } else {
1544                 *samples++ = adpcm_ct_expand_nibble(&c->status[0],
1545                     src[0] >> 4);
1546                 *samples++ = adpcm_ct_expand_nibble(&c->status[0],
1547                     src[0] & 0x0F);
1548             }
1549             src++;
1550         }
1551         break;
1552     case CODEC_ID_ADPCM_SBPRO_4:
1553     case CODEC_ID_ADPCM_SBPRO_3:
1554     case CODEC_ID_ADPCM_SBPRO_2:
1555         if (!c->status[0].step_index) {
1556             /* the first byte is a raw sample */
1557             *samples++ = 128 * (*src++ - 0x80);
1558             if (st)
1559               *samples++ = 128 * (*src++ - 0x80);
1560             c->status[0].step_index = 1;
1561         }
1562         if (avctx->codec->id == CODEC_ID_ADPCM_SBPRO_4) {
1563             while (src < buf + buf_size) {
1564                 *samples++ = adpcm_sbpro_expand_nibble(&c->status[0],
1565                     src[0] >> 4, 4, 0);
1566                 *samples++ = adpcm_sbpro_expand_nibble(&c->status[st],
1567                     src[0] & 0x0F, 4, 0);
1568                 src++;
1569             }
1570         } else if (avctx->codec->id == CODEC_ID_ADPCM_SBPRO_3) {
1571             while (src < buf + buf_size && samples + 2 < samples_end) {
1572                 *samples++ = adpcm_sbpro_expand_nibble(&c->status[0],
1573                      src[0] >> 5        , 3, 0);
1574                 *samples++ = adpcm_sbpro_expand_nibble(&c->status[0],
1575                     (src[0] >> 2) & 0x07, 3, 0);
1576                 *samples++ = adpcm_sbpro_expand_nibble(&c->status[0],
1577                     src[0] & 0x03, 2, 0);
1578                 src++;
1579             }
1580         } else {
1581             while (src < buf + buf_size && samples + 3 < samples_end) {
1582                 *samples++ = adpcm_sbpro_expand_nibble(&c->status[0],
1583                      src[0] >> 6        , 2, 2);
1584                 *samples++ = adpcm_sbpro_expand_nibble(&c->status[st],
1585                     (src[0] >> 4) & 0x03, 2, 2);
1586                 *samples++ = adpcm_sbpro_expand_nibble(&c->status[0],
1587                     (src[0] >> 2) & 0x03, 2, 2);
1588                 *samples++ = adpcm_sbpro_expand_nibble(&c->status[st],
1589                     src[0] & 0x03, 2, 2);
1590                 src++;
1591             }
1592         }
1593         break;
1594     case CODEC_ID_ADPCM_SWF:
1595     {
1596         GetBitContext gb;
1597         const int *table;
1598         int k0, signmask, nb_bits, count;
1599         int size = buf_size*8;
1600
1601         init_get_bits(&gb, buf, size);
1602
1603         //read bits & initial values
1604         nb_bits = get_bits(&gb, 2)+2;
1605         //av_log(NULL,AV_LOG_INFO,"nb_bits: %d\n", nb_bits);
1606         table = swf_index_tables[nb_bits-2];
1607         k0 = 1 << (nb_bits-2);
1608         signmask = 1 << (nb_bits-1);
1609
1610         while (get_bits_count(&gb) <= size - 22*avctx->channels) {
1611             for (i = 0; i < avctx->channels; i++) {
1612                 *samples++ = c->status[i].predictor = get_sbits(&gb, 16);
1613                 c->status[i].step_index = get_bits(&gb, 6);
1614             }
1615
1616             for (count = 0; get_bits_count(&gb) <= size - nb_bits*avctx->channels && count < 4095; count++) {
1617                 int i;
1618
1619                 for (i = 0; i < avctx->channels; i++) {
1620                     // similar to IMA adpcm
1621                     int delta = get_bits(&gb, nb_bits);
1622                     int step = step_table[c->status[i].step_index];
1623                     long vpdiff = 0; // vpdiff = (delta+0.5)*step/4
1624                     int k = k0;
1625
1626                     do {
1627                         if (delta & k)
1628                             vpdiff += step;
1629                         step >>= 1;
1630                         k >>= 1;
1631                     } while(k);
1632                     vpdiff += step;
1633
1634                     if (delta & signmask)
1635                         c->status[i].predictor -= vpdiff;
1636                     else
1637                         c->status[i].predictor += vpdiff;
1638
1639                     c->status[i].step_index += table[delta & (~signmask)];
1640
1641                     c->status[i].step_index = av_clip(c->status[i].step_index, 0, 88);
1642                     c->status[i].predictor = av_clip_int16(c->status[i].predictor);
1643
1644                     *samples++ = c->status[i].predictor;
1645                     if (samples >= samples_end) {
1646                         av_log(avctx, AV_LOG_ERROR, "allocated output buffer is too small\n");
1647                         return -1;
1648                     }
1649                 }
1650             }
1651         }
1652         src += buf_size;
1653         break;
1654     }
1655     case CODEC_ID_ADPCM_YAMAHA:
1656         while (src < buf + buf_size) {
1657             if (st) {
1658                 *samples++ = adpcm_yamaha_expand_nibble(&c->status[0],
1659                         src[0] & 0x0F);
1660                 *samples++ = adpcm_yamaha_expand_nibble(&c->status[1],
1661                         src[0] >> 4  );
1662             } else {
1663                 *samples++ = adpcm_yamaha_expand_nibble(&c->status[0],
1664                         src[0] & 0x0F);
1665                 *samples++ = adpcm_yamaha_expand_nibble(&c->status[0],
1666                         src[0] >> 4  );
1667             }
1668             src++;
1669         }
1670         break;
1671     case CODEC_ID_ADPCM_THP:
1672     {
1673         int table[2][16];
1674         unsigned int samplecnt;
1675         int prev[2][2];
1676         int ch;
1677
1678         if (buf_size < 80) {
1679             av_log(avctx, AV_LOG_ERROR, "frame too small\n");
1680             return -1;
1681         }
1682
1683         src+=4;
1684         samplecnt = bytestream_get_be32(&src);
1685
1686         for (i = 0; i < 32; i++)
1687             table[0][i] = (int16_t)bytestream_get_be16(&src);
1688
1689         /* Initialize the previous sample.  */
1690         for (i = 0; i < 4; i++)
1691             prev[0][i] = (int16_t)bytestream_get_be16(&src);
1692
1693         if (samplecnt >= (samples_end - samples) /  (st + 1)) {
1694             av_log(avctx, AV_LOG_ERROR, "allocated output buffer is too small\n");
1695             return -1;
1696         }
1697
1698         for (ch = 0; ch <= st; ch++) {
1699             samples = (unsigned short *) data + ch;
1700
1701             /* Read in every sample for this channel.  */
1702             for (i = 0; i < samplecnt / 14; i++) {
1703                 int index = (*src >> 4) & 7;
1704                 unsigned int exp = 28 - (*src++ & 15);
1705                 int factor1 = table[ch][index * 2];
1706                 int factor2 = table[ch][index * 2 + 1];
1707
1708                 /* Decode 14 samples.  */
1709                 for (n = 0; n < 14; n++) {
1710                     int32_t sampledat;
1711                     if(n&1) sampledat=  *src++    <<28;
1712                     else    sampledat= (*src&0xF0)<<24;
1713
1714                     sampledat = ((prev[ch][0]*factor1
1715                                 + prev[ch][1]*factor2) >> 11) + (sampledat>>exp);
1716                     *samples = av_clip_int16(sampledat);
1717                     prev[ch][1] = prev[ch][0];
1718                     prev[ch][0] = *samples++;
1719
1720                     /* In case of stereo, skip one sample, this sample
1721                        is for the other channel.  */
1722                     samples += st;
1723                 }
1724             }
1725         }
1726
1727         /* In the previous loop, in case stereo is used, samples is
1728            increased exactly one time too often.  */
1729         samples -= st;
1730         break;
1731     }
1732
1733     default:
1734         return -1;
1735     }
1736     *data_size = (uint8_t *)samples - (uint8_t *)data;
1737     return src - buf;
1738 }
1739
1740
1741
1742 #if CONFIG_ENCODERS
1743 #define ADPCM_ENCODER(id,name,long_name_)       \
1744 AVCodec ff_ ## name ## _encoder = {             \
1745     #name,                                      \
1746     AVMEDIA_TYPE_AUDIO,                         \
1747     id,                                         \
1748     sizeof(ADPCMContext),                       \
1749     adpcm_encode_init,                          \
1750     adpcm_encode_frame,                         \
1751     adpcm_encode_close,                         \
1752     NULL,                                       \
1753     .sample_fmts = (const enum AVSampleFormat[]){AV_SAMPLE_FMT_S16,AV_SAMPLE_FMT_NONE}, \
1754     .long_name = NULL_IF_CONFIG_SMALL(long_name_), \
1755 }
1756 #else
1757 #define ADPCM_ENCODER(id,name,long_name_)
1758 #endif
1759
1760 #if CONFIG_DECODERS
1761 #define ADPCM_DECODER(id,name,long_name_)       \
1762 AVCodec ff_ ## name ## _decoder = {             \
1763     #name,                                      \
1764     AVMEDIA_TYPE_AUDIO,                         \
1765     id,                                         \
1766     sizeof(ADPCMContext),                       \
1767     adpcm_decode_init,                          \
1768     NULL,                                       \
1769     NULL,                                       \
1770     adpcm_decode_frame,                         \
1771     .long_name = NULL_IF_CONFIG_SMALL(long_name_), \
1772 }
1773 #else
1774 #define ADPCM_DECODER(id,name,long_name_)
1775 #endif
1776
1777 #define ADPCM_CODEC(id,name,long_name_)         \
1778     ADPCM_ENCODER(id,name,long_name_); ADPCM_DECODER(id,name,long_name_)
1779
1780 /* Note: Do not forget to add new entries to the Makefile as well. */
1781 ADPCM_DECODER(CODEC_ID_ADPCM_4XM, adpcm_4xm, "ADPCM 4X Movie");
1782 ADPCM_DECODER(CODEC_ID_ADPCM_CT, adpcm_ct, "ADPCM Creative Technology");
1783 ADPCM_DECODER(CODEC_ID_ADPCM_EA, adpcm_ea, "ADPCM Electronic Arts");
1784 ADPCM_DECODER(CODEC_ID_ADPCM_EA_MAXIS_XA, adpcm_ea_maxis_xa, "ADPCM Electronic Arts Maxis CDROM XA");
1785 ADPCM_DECODER(CODEC_ID_ADPCM_EA_R1, adpcm_ea_r1, "ADPCM Electronic Arts R1");
1786 ADPCM_DECODER(CODEC_ID_ADPCM_EA_R2, adpcm_ea_r2, "ADPCM Electronic Arts R2");
1787 ADPCM_DECODER(CODEC_ID_ADPCM_EA_R3, adpcm_ea_r3, "ADPCM Electronic Arts R3");
1788 ADPCM_DECODER(CODEC_ID_ADPCM_EA_XAS, adpcm_ea_xas, "ADPCM Electronic Arts XAS");
1789 ADPCM_DECODER(CODEC_ID_ADPCM_IMA_AMV, adpcm_ima_amv, "ADPCM IMA AMV");
1790 ADPCM_DECODER(CODEC_ID_ADPCM_IMA_DK3, adpcm_ima_dk3, "ADPCM IMA Duck DK3");
1791 ADPCM_DECODER(CODEC_ID_ADPCM_IMA_DK4, adpcm_ima_dk4, "ADPCM IMA Duck DK4");
1792 ADPCM_DECODER(CODEC_ID_ADPCM_IMA_EA_EACS, adpcm_ima_ea_eacs, "ADPCM IMA Electronic Arts EACS");
1793 ADPCM_DECODER(CODEC_ID_ADPCM_IMA_EA_SEAD, adpcm_ima_ea_sead, "ADPCM IMA Electronic Arts SEAD");
1794 ADPCM_DECODER(CODEC_ID_ADPCM_IMA_ISS, adpcm_ima_iss, "ADPCM IMA Funcom ISS");
1795 ADPCM_CODEC  (CODEC_ID_ADPCM_IMA_QT, adpcm_ima_qt, "ADPCM IMA QuickTime");
1796 ADPCM_DECODER(CODEC_ID_ADPCM_IMA_SMJPEG, adpcm_ima_smjpeg, "ADPCM IMA Loki SDL MJPEG");
1797 ADPCM_CODEC  (CODEC_ID_ADPCM_IMA_WAV, adpcm_ima_wav, "ADPCM IMA WAV");
1798 ADPCM_DECODER(CODEC_ID_ADPCM_IMA_WS, adpcm_ima_ws, "ADPCM IMA Westwood");
1799 ADPCM_CODEC  (CODEC_ID_ADPCM_MS, adpcm_ms, "ADPCM Microsoft");
1800 ADPCM_DECODER(CODEC_ID_ADPCM_SBPRO_2, adpcm_sbpro_2, "ADPCM Sound Blaster Pro 2-bit");
1801 ADPCM_DECODER(CODEC_ID_ADPCM_SBPRO_3, adpcm_sbpro_3, "ADPCM Sound Blaster Pro 2.6-bit");
1802 ADPCM_DECODER(CODEC_ID_ADPCM_SBPRO_4, adpcm_sbpro_4, "ADPCM Sound Blaster Pro 4-bit");
1803 ADPCM_CODEC  (CODEC_ID_ADPCM_SWF, adpcm_swf, "ADPCM Shockwave Flash");
1804 ADPCM_DECODER(CODEC_ID_ADPCM_THP, adpcm_thp, "ADPCM Nintendo Gamecube THP");
1805 ADPCM_DECODER(CODEC_ID_ADPCM_XA, adpcm_xa, "ADPCM CDROM XA");
1806 ADPCM_CODEC  (CODEC_ID_ADPCM_YAMAHA, adpcm_yamaha, "ADPCM Yamaha");