]> git.sesse.net Git - ffmpeg/blob - libavcodec/vorbisdec.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavcodec / vorbisdec.c
1 /**
2  * @file
3  * Vorbis I decoder
4  * @author Denes Balatoni  ( dbalatoni programozo hu )
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22
23 /**
24  * @file
25  * Vorbis I decoder
26  * @author Denes Balatoni  ( dbalatoni programozo hu )
27  */
28
29 #include <inttypes.h>
30 #include <math.h>
31
32 #define BITSTREAM_READER_LE
33 #include "avcodec.h"
34 #include "get_bits.h"
35 #include "dsputil.h"
36 #include "fft.h"
37 #include "fmtconvert.h"
38
39 #include "vorbis.h"
40 #include "xiph.h"
41
42 #define V_NB_BITS 8
43 #define V_NB_BITS2 11
44 #define V_MAX_VLCS (1 << 16)
45 #define V_MAX_PARTITIONS (1 << 20)
46
47 #undef NDEBUG
48 #include <assert.h>
49
50 typedef struct {
51     uint8_t      dimensions;
52     uint8_t      lookup_type;
53     uint8_t      maxdepth;
54     VLC          vlc;
55     float       *codevectors;
56     unsigned int nb_bits;
57 } vorbis_codebook;
58
59 typedef union  vorbis_floor_u  vorbis_floor_data;
60 typedef struct vorbis_floor0_s vorbis_floor0;
61 typedef struct vorbis_floor1_s vorbis_floor1;
62 struct vorbis_context_s;
63 typedef
64 int (* vorbis_floor_decode_func)
65     (struct vorbis_context_s *, vorbis_floor_data *, float *);
66 typedef struct {
67     uint8_t floor_type;
68     vorbis_floor_decode_func decode;
69     union vorbis_floor_u {
70         struct vorbis_floor0_s {
71             uint8_t       order;
72             uint16_t      rate;
73             uint16_t      bark_map_size;
74             int32_t      *map[2];
75             uint32_t      map_size[2];
76             uint8_t       amplitude_bits;
77             uint8_t       amplitude_offset;
78             uint8_t       num_books;
79             uint8_t      *book_list;
80             float        *lsp;
81         } t0;
82         struct vorbis_floor1_s {
83             uint8_t       partitions;
84             uint8_t       partition_class[32];
85             uint8_t       class_dimensions[16];
86             uint8_t       class_subclasses[16];
87             uint8_t       class_masterbook[16];
88             int16_t       subclass_books[16][8];
89             uint8_t       multiplier;
90             uint16_t      x_list_dim;
91             vorbis_floor1_entry *list;
92         } t1;
93     } data;
94 } vorbis_floor;
95
96 typedef struct {
97     uint16_t      type;
98     uint32_t      begin;
99     uint32_t      end;
100     unsigned      partition_size;
101     uint8_t       classifications;
102     uint8_t       classbook;
103     int16_t       books[64][8];
104     uint8_t       maxpass;
105     uint16_t      ptns_to_read;
106     uint8_t      *classifs;
107 } vorbis_residue;
108
109 typedef struct {
110     uint8_t       submaps;
111     uint16_t      coupling_steps;
112     uint8_t      *magnitude;
113     uint8_t      *angle;
114     uint8_t      *mux;
115     uint8_t       submap_floor[16];
116     uint8_t       submap_residue[16];
117 } vorbis_mapping;
118
119 typedef struct {
120     uint8_t       blockflag;
121     uint16_t      windowtype;
122     uint16_t      transformtype;
123     uint8_t       mapping;
124 } vorbis_mode;
125
126 typedef struct vorbis_context_s {
127     AVCodecContext *avccontext;
128     AVFrame frame;
129     GetBitContext gb;
130     DSPContext dsp;
131     FmtConvertContext fmt_conv;
132
133     FFTContext mdct[2];
134     uint8_t       first_frame;
135     uint32_t      version;
136     uint8_t       audio_channels;
137     uint32_t      audio_samplerate;
138     uint32_t      bitrate_maximum;
139     uint32_t      bitrate_nominal;
140     uint32_t      bitrate_minimum;
141     uint32_t      blocksize[2];
142     const float  *win[2];
143     uint16_t      codebook_count;
144     vorbis_codebook *codebooks;
145     uint8_t       floor_count;
146     vorbis_floor *floors;
147     uint8_t       residue_count;
148     vorbis_residue *residues;
149     uint8_t       mapping_count;
150     vorbis_mapping *mappings;
151     uint8_t       mode_count;
152     vorbis_mode  *modes;
153     uint8_t       mode_number; // mode number for the current packet
154     uint8_t       previous_window;
155     float        *channel_residues;
156     float        *channel_floors;
157     float        *saved;
158     float         scale_bias; // for float->int conversion
159 } vorbis_context;
160
161 /* Helper functions */
162
163 #define BARK(x) \
164     (13.1f * atan(0.00074f * (x)) + 2.24f * atan(1.85e-8f * (x) * (x)) + 1e-4f * (x))
165
166 static const char idx_err_str[] = "Index value %d out of range (0 - %d) for %s at %s:%i\n";
167 #define VALIDATE_INDEX(idx, limit) \
168     if (idx >= limit) {\
169         av_log(vc->avccontext, AV_LOG_ERROR,\
170                idx_err_str,\
171                (int)(idx), (int)(limit - 1), #idx, __FILE__, __LINE__);\
172         return AVERROR_INVALIDDATA;\
173     }
174 #define GET_VALIDATED_INDEX(idx, bits, limit) \
175     {\
176         idx = get_bits(gb, bits);\
177         VALIDATE_INDEX(idx, limit)\
178     }
179
180 static float vorbisfloat2float(unsigned val)
181 {
182     double mant = val & 0x1fffff;
183     long exp    = (val & 0x7fe00000L) >> 21;
184     if (val & 0x80000000)
185         mant = -mant;
186     return ldexp(mant, exp - 20 - 768);
187 }
188
189
190 // Free all allocated memory -----------------------------------------
191
192 static void vorbis_free(vorbis_context *vc)
193 {
194     int i;
195
196     av_freep(&vc->channel_residues);
197     av_freep(&vc->channel_floors);
198     av_freep(&vc->saved);
199
200     for (i = 0; i < vc->residue_count; i++)
201         av_free(vc->residues[i].classifs);
202     av_freep(&vc->residues);
203     av_freep(&vc->modes);
204
205     ff_mdct_end(&vc->mdct[0]);
206     ff_mdct_end(&vc->mdct[1]);
207
208     for (i = 0; i < vc->codebook_count; ++i) {
209         av_free(vc->codebooks[i].codevectors);
210         ff_free_vlc(&vc->codebooks[i].vlc);
211     }
212     av_freep(&vc->codebooks);
213
214     for (i = 0; i < vc->floor_count; ++i) {
215         if (vc->floors[i].floor_type == 0) {
216             av_free(vc->floors[i].data.t0.map[0]);
217             av_free(vc->floors[i].data.t0.map[1]);
218             av_free(vc->floors[i].data.t0.book_list);
219             av_free(vc->floors[i].data.t0.lsp);
220         } else {
221             av_free(vc->floors[i].data.t1.list);
222         }
223     }
224     av_freep(&vc->floors);
225
226     for (i = 0; i < vc->mapping_count; ++i) {
227         av_free(vc->mappings[i].magnitude);
228         av_free(vc->mappings[i].angle);
229         av_free(vc->mappings[i].mux);
230     }
231     av_freep(&vc->mappings);
232 }
233
234 // Parse setup header -------------------------------------------------
235
236 // Process codebooks part
237
238 static int vorbis_parse_setup_hdr_codebooks(vorbis_context *vc)
239 {
240     unsigned cb;
241     uint8_t  *tmp_vlc_bits;
242     uint32_t *tmp_vlc_codes;
243     GetBitContext *gb = &vc->gb;
244     uint16_t *codebook_multiplicands;
245     int ret = 0;
246
247     vc->codebook_count = get_bits(gb, 8) + 1;
248
249     av_dlog(NULL, " Codebooks: %d \n", vc->codebook_count);
250
251     vc->codebooks = av_mallocz(vc->codebook_count * sizeof(*vc->codebooks));
252     tmp_vlc_bits  = av_mallocz(V_MAX_VLCS * sizeof(*tmp_vlc_bits));
253     tmp_vlc_codes = av_mallocz(V_MAX_VLCS * sizeof(*tmp_vlc_codes));
254     codebook_multiplicands = av_malloc(V_MAX_VLCS * sizeof(*codebook_multiplicands));
255
256     for (cb = 0; cb < vc->codebook_count; ++cb) {
257         vorbis_codebook *codebook_setup = &vc->codebooks[cb];
258         unsigned ordered, t, entries, used_entries = 0;
259
260         av_dlog(NULL, " %u. Codebook\n", cb);
261
262         if (get_bits(gb, 24) != 0x564342) {
263             av_log(vc->avccontext, AV_LOG_ERROR,
264                    " %u. Codebook setup data corrupt.\n", cb);
265             ret = AVERROR_INVALIDDATA;
266             goto error;
267         }
268
269         codebook_setup->dimensions=get_bits(gb, 16);
270         if (codebook_setup->dimensions > 16 || codebook_setup->dimensions == 0) {
271             av_log(vc->avccontext, AV_LOG_ERROR,
272                    " %u. Codebook's dimension is invalid (%d).\n",
273                    cb, codebook_setup->dimensions);
274             ret = AVERROR_INVALIDDATA;
275             goto error;
276         }
277         entries = get_bits(gb, 24);
278         if (entries > V_MAX_VLCS) {
279             av_log(vc->avccontext, AV_LOG_ERROR,
280                    " %u. Codebook has too many entries (%u).\n",
281                    cb, entries);
282             ret = AVERROR_INVALIDDATA;
283             goto error;
284         }
285
286         ordered = get_bits1(gb);
287
288         av_dlog(NULL, " codebook_dimensions %d, codebook_entries %u\n",
289                 codebook_setup->dimensions, entries);
290
291         if (!ordered) {
292             unsigned ce, flag;
293             unsigned sparse = get_bits1(gb);
294
295             av_dlog(NULL, " not ordered \n");
296
297             if (sparse) {
298                 av_dlog(NULL, " sparse \n");
299
300                 used_entries = 0;
301                 for (ce = 0; ce < entries; ++ce) {
302                     flag = get_bits1(gb);
303                     if (flag) {
304                         tmp_vlc_bits[ce] = get_bits(gb, 5) + 1;
305                         ++used_entries;
306                     } else
307                         tmp_vlc_bits[ce] = 0;
308                 }
309             } else {
310                 av_dlog(NULL, " not sparse \n");
311
312                 used_entries = entries;
313                 for (ce = 0; ce < entries; ++ce)
314                     tmp_vlc_bits[ce] = get_bits(gb, 5) + 1;
315             }
316         } else {
317             unsigned current_entry  = 0;
318             unsigned current_length = get_bits(gb, 5) + 1;
319
320             av_dlog(NULL, " ordered, current length: %u\n", current_length);  //FIXME
321
322             used_entries = entries;
323             for (; current_entry < used_entries && current_length <= 32; ++current_length) {
324                 unsigned i, number;
325
326                 av_dlog(NULL, " number bits: %u ", ilog(entries - current_entry));
327
328                 number = get_bits(gb, ilog(entries - current_entry));
329
330                 av_dlog(NULL, " number: %u\n", number);
331
332                 for (i = current_entry; i < number+current_entry; ++i)
333                     if (i < used_entries)
334                         tmp_vlc_bits[i] = current_length;
335
336                 current_entry+=number;
337             }
338             if (current_entry>used_entries) {
339                 av_log(vc->avccontext, AV_LOG_ERROR, " More codelengths than codes in codebook. \n");
340                 ret = AVERROR_INVALIDDATA;
341                 goto error;
342             }
343         }
344
345         codebook_setup->lookup_type = get_bits(gb, 4);
346
347         av_dlog(NULL, " lookup type: %d : %s \n", codebook_setup->lookup_type,
348                 codebook_setup->lookup_type ? "vq" : "no lookup");
349
350 // If the codebook is used for (inverse) VQ, calculate codevectors.
351
352         if (codebook_setup->lookup_type == 1) {
353             unsigned i, j, k;
354             unsigned codebook_lookup_values = ff_vorbis_nth_root(entries, codebook_setup->dimensions);
355
356             float codebook_minimum_value = vorbisfloat2float(get_bits_long(gb, 32));
357             float codebook_delta_value   = vorbisfloat2float(get_bits_long(gb, 32));
358             unsigned codebook_value_bits = get_bits(gb, 4) + 1;
359             unsigned codebook_sequence_p = get_bits1(gb);
360
361             av_dlog(NULL, " We expect %d numbers for building the codevectors. \n",
362                     codebook_lookup_values);
363             av_dlog(NULL, "  delta %f minmum %f \n",
364                     codebook_delta_value, codebook_minimum_value);
365
366             for (i = 0; i < codebook_lookup_values; ++i) {
367                 codebook_multiplicands[i] = get_bits(gb, codebook_value_bits);
368
369                 av_dlog(NULL, " multiplicands*delta+minmum : %e \n",
370                         (float)codebook_multiplicands[i] * codebook_delta_value + codebook_minimum_value);
371                 av_dlog(NULL, " multiplicand %u\n", codebook_multiplicands[i]);
372             }
373
374 // Weed out unused vlcs and build codevector vector
375             codebook_setup->codevectors = used_entries ? av_mallocz(used_entries *
376                                                                     codebook_setup->dimensions *
377                                                                     sizeof(*codebook_setup->codevectors))
378                                                        : NULL;
379             for (j = 0, i = 0; i < entries; ++i) {
380                 unsigned dim = codebook_setup->dimensions;
381
382                 if (tmp_vlc_bits[i]) {
383                     float last = 0.0;
384                     unsigned lookup_offset = i;
385
386                     av_dlog(vc->avccontext, "Lookup offset %u ,", i);
387
388                     for (k = 0; k < dim; ++k) {
389                         unsigned multiplicand_offset = lookup_offset % codebook_lookup_values;
390                         codebook_setup->codevectors[j * dim + k] = codebook_multiplicands[multiplicand_offset] * codebook_delta_value + codebook_minimum_value + last;
391                         if (codebook_sequence_p)
392                             last = codebook_setup->codevectors[j * dim + k];
393                         lookup_offset/=codebook_lookup_values;
394                     }
395                     tmp_vlc_bits[j] = tmp_vlc_bits[i];
396
397                     av_dlog(vc->avccontext, "real lookup offset %u, vector: ", j);
398                     for (k = 0; k < dim; ++k)
399                         av_dlog(vc->avccontext, " %f ",
400                                 codebook_setup->codevectors[j * dim + k]);
401                     av_dlog(vc->avccontext, "\n");
402
403                     ++j;
404                 }
405             }
406             if (j != used_entries) {
407                 av_log(vc->avccontext, AV_LOG_ERROR, "Bug in codevector vector building code. \n");
408                 ret = AVERROR_INVALIDDATA;
409                 goto error;
410             }
411             entries = used_entries;
412         } else if (codebook_setup->lookup_type >= 2) {
413             av_log(vc->avccontext, AV_LOG_ERROR, "Codebook lookup type not supported. \n");
414             ret = AVERROR_INVALIDDATA;
415             goto error;
416         }
417
418 // Initialize VLC table
419         if (ff_vorbis_len2vlc(tmp_vlc_bits, tmp_vlc_codes, entries)) {
420             av_log(vc->avccontext, AV_LOG_ERROR, " Invalid code lengths while generating vlcs. \n");
421             ret = AVERROR_INVALIDDATA;
422             goto error;
423         }
424         codebook_setup->maxdepth = 0;
425         for (t = 0; t < entries; ++t)
426             if (tmp_vlc_bits[t] >= codebook_setup->maxdepth)
427                 codebook_setup->maxdepth = tmp_vlc_bits[t];
428
429         if (codebook_setup->maxdepth > 3 * V_NB_BITS)
430             codebook_setup->nb_bits = V_NB_BITS2;
431         else
432             codebook_setup->nb_bits = V_NB_BITS;
433
434         codebook_setup->maxdepth = (codebook_setup->maxdepth+codebook_setup->nb_bits - 1) / codebook_setup->nb_bits;
435
436         if ((ret = init_vlc(&codebook_setup->vlc, codebook_setup->nb_bits,
437                             entries, tmp_vlc_bits, sizeof(*tmp_vlc_bits),
438                             sizeof(*tmp_vlc_bits), tmp_vlc_codes,
439                             sizeof(*tmp_vlc_codes), sizeof(*tmp_vlc_codes),
440                             INIT_VLC_LE))) {
441             av_log(vc->avccontext, AV_LOG_ERROR, " Error generating vlc tables. \n");
442             goto error;
443         }
444     }
445
446     av_free(tmp_vlc_bits);
447     av_free(tmp_vlc_codes);
448     av_free(codebook_multiplicands);
449     return 0;
450
451 // Error:
452 error:
453     av_free(tmp_vlc_bits);
454     av_free(tmp_vlc_codes);
455     av_free(codebook_multiplicands);
456     return ret;
457 }
458
459 // Process time domain transforms part (unused in Vorbis I)
460
461 static int vorbis_parse_setup_hdr_tdtransforms(vorbis_context *vc)
462 {
463     GetBitContext *gb = &vc->gb;
464     unsigned i, vorbis_time_count = get_bits(gb, 6) + 1;
465
466     for (i = 0; i < vorbis_time_count; ++i) {
467         unsigned vorbis_tdtransform = get_bits(gb, 16);
468
469         av_dlog(NULL, " Vorbis time domain transform %u: %u\n",
470                 vorbis_time_count, vorbis_tdtransform);
471
472         if (vorbis_tdtransform) {
473             av_log(vc->avccontext, AV_LOG_ERROR, "Vorbis time domain transform data nonzero. \n");
474             return AVERROR_INVALIDDATA;
475         }
476     }
477     return 0;
478 }
479
480 // Process floors part
481
482 static int vorbis_floor0_decode(vorbis_context *vc,
483                                 vorbis_floor_data *vfu, float *vec);
484 static void create_map(vorbis_context *vc, unsigned floor_number);
485 static int vorbis_floor1_decode(vorbis_context *vc,
486                                 vorbis_floor_data *vfu, float *vec);
487 static int vorbis_parse_setup_hdr_floors(vorbis_context *vc)
488 {
489     GetBitContext *gb = &vc->gb;
490     int i,j,k;
491
492     vc->floor_count = get_bits(gb, 6) + 1;
493
494     vc->floors = av_mallocz(vc->floor_count * sizeof(*vc->floors));
495
496     for (i = 0; i < vc->floor_count; ++i) {
497         vorbis_floor *floor_setup = &vc->floors[i];
498
499         floor_setup->floor_type = get_bits(gb, 16);
500
501         av_dlog(NULL, " %d. floor type %d \n", i, floor_setup->floor_type);
502
503         if (floor_setup->floor_type == 1) {
504             int maximum_class = -1;
505             unsigned rangebits, rangemax, floor1_values = 2;
506
507             floor_setup->decode = vorbis_floor1_decode;
508
509             floor_setup->data.t1.partitions = get_bits(gb, 5);
510
511             av_dlog(NULL, " %d.floor: %d partitions \n",
512                     i, floor_setup->data.t1.partitions);
513
514             for (j = 0; j < floor_setup->data.t1.partitions; ++j) {
515                 floor_setup->data.t1.partition_class[j] = get_bits(gb, 4);
516                 if (floor_setup->data.t1.partition_class[j] > maximum_class)
517                     maximum_class = floor_setup->data.t1.partition_class[j];
518
519                 av_dlog(NULL, " %d. floor %d partition class %d \n",
520                         i, j, floor_setup->data.t1.partition_class[j]);
521
522             }
523
524             av_dlog(NULL, " maximum class %d \n", maximum_class);
525
526             for (j = 0; j <= maximum_class; ++j) {
527                 floor_setup->data.t1.class_dimensions[j] = get_bits(gb, 3) + 1;
528                 floor_setup->data.t1.class_subclasses[j] = get_bits(gb, 2);
529
530                 av_dlog(NULL, " %d floor %d class dim: %d subclasses %d \n", i, j,
531                         floor_setup->data.t1.class_dimensions[j],
532                         floor_setup->data.t1.class_subclasses[j]);
533
534                 if (floor_setup->data.t1.class_subclasses[j]) {
535                     GET_VALIDATED_INDEX(floor_setup->data.t1.class_masterbook[j], 8, vc->codebook_count)
536
537                     av_dlog(NULL, "   masterbook: %d \n", floor_setup->data.t1.class_masterbook[j]);
538                 }
539
540                 for (k = 0; k < (1 << floor_setup->data.t1.class_subclasses[j]); ++k) {
541                     int16_t bits = get_bits(gb, 8) - 1;
542                     if (bits != -1)
543                         VALIDATE_INDEX(bits, vc->codebook_count)
544                     floor_setup->data.t1.subclass_books[j][k] = bits;
545
546                     av_dlog(NULL, "    book %d. : %d \n", k, floor_setup->data.t1.subclass_books[j][k]);
547                 }
548             }
549
550             floor_setup->data.t1.multiplier = get_bits(gb, 2) + 1;
551             floor_setup->data.t1.x_list_dim = 2;
552
553             for (j = 0; j < floor_setup->data.t1.partitions; ++j)
554                 floor_setup->data.t1.x_list_dim+=floor_setup->data.t1.class_dimensions[floor_setup->data.t1.partition_class[j]];
555
556             floor_setup->data.t1.list = av_mallocz(floor_setup->data.t1.x_list_dim *
557                                                    sizeof(*floor_setup->data.t1.list));
558
559
560             rangebits = get_bits(gb, 4);
561             rangemax = (1 << rangebits);
562             if (rangemax > vc->blocksize[1] / 2) {
563                 av_log(vc->avccontext, AV_LOG_ERROR,
564                        "Floor value is too large for blocksize: %u (%"PRIu32")\n",
565                        rangemax, vc->blocksize[1] / 2);
566                 return AVERROR_INVALIDDATA;
567             }
568             floor_setup->data.t1.list[0].x = 0;
569             floor_setup->data.t1.list[1].x = rangemax;
570
571             for (j = 0; j < floor_setup->data.t1.partitions; ++j) {
572                 for (k = 0; k < floor_setup->data.t1.class_dimensions[floor_setup->data.t1.partition_class[j]]; ++k, ++floor1_values) {
573                     floor_setup->data.t1.list[floor1_values].x = get_bits(gb, rangebits);
574
575                     av_dlog(NULL, " %u. floor1 Y coord. %d\n", floor1_values,
576                             floor_setup->data.t1.list[floor1_values].x);
577                 }
578             }
579
580 // Precalculate order of x coordinates - needed for decode
581             ff_vorbis_ready_floor1_list(floor_setup->data.t1.list, floor_setup->data.t1.x_list_dim);
582
583             for (j=1; j<floor_setup->data.t1.x_list_dim; j++) {
584                 if (   floor_setup->data.t1.list[ floor_setup->data.t1.list[j-1].sort ].x
585                     == floor_setup->data.t1.list[ floor_setup->data.t1.list[j  ].sort ].x) {
586                     av_log(vc->avccontext, AV_LOG_ERROR, "Non unique x values in floor type 1\n");
587                     return AVERROR_INVALIDDATA;
588                 }
589             }
590         } else if (floor_setup->floor_type == 0) {
591             unsigned max_codebook_dim = 0;
592
593             floor_setup->decode = vorbis_floor0_decode;
594
595             floor_setup->data.t0.order          = get_bits(gb,  8);
596             floor_setup->data.t0.rate           = get_bits(gb, 16);
597             floor_setup->data.t0.bark_map_size  = get_bits(gb, 16);
598             floor_setup->data.t0.amplitude_bits = get_bits(gb,  6);
599             /* zero would result in a div by zero later *
600              * 2^0 - 1 == 0                             */
601             if (floor_setup->data.t0.amplitude_bits == 0) {
602                 av_log(vc->avccontext, AV_LOG_ERROR,
603                        "Floor 0 amplitude bits is 0.\n");
604                 return AVERROR_INVALIDDATA;
605             }
606             floor_setup->data.t0.amplitude_offset = get_bits(gb, 8);
607             floor_setup->data.t0.num_books        = get_bits(gb, 4) + 1;
608
609             /* allocate mem for booklist */
610             floor_setup->data.t0.book_list =
611                 av_malloc(floor_setup->data.t0.num_books);
612             if (!floor_setup->data.t0.book_list)
613                 return AVERROR(ENOMEM);
614             /* read book indexes */
615             {
616                 int idx;
617                 unsigned book_idx;
618                 for (idx = 0; idx < floor_setup->data.t0.num_books; ++idx) {
619                     GET_VALIDATED_INDEX(book_idx, 8, vc->codebook_count)
620                     floor_setup->data.t0.book_list[idx] = book_idx;
621                     if (vc->codebooks[book_idx].dimensions > max_codebook_dim)
622                         max_codebook_dim = vc->codebooks[book_idx].dimensions;
623                 }
624             }
625
626             create_map(vc, i);
627
628             /* codebook dim is for padding if codebook dim doesn't *
629              * divide order+1 then we need to read more data       */
630             floor_setup->data.t0.lsp =
631                 av_malloc((floor_setup->data.t0.order + 1 + max_codebook_dim)
632                           * sizeof(*floor_setup->data.t0.lsp));
633             if (!floor_setup->data.t0.lsp)
634                 return AVERROR(ENOMEM);
635
636             /* debug output parsed headers */
637             av_dlog(NULL, "floor0 order: %u\n", floor_setup->data.t0.order);
638             av_dlog(NULL, "floor0 rate: %u\n", floor_setup->data.t0.rate);
639             av_dlog(NULL, "floor0 bark map size: %u\n",
640                     floor_setup->data.t0.bark_map_size);
641             av_dlog(NULL, "floor0 amplitude bits: %u\n",
642                     floor_setup->data.t0.amplitude_bits);
643             av_dlog(NULL, "floor0 amplitude offset: %u\n",
644                     floor_setup->data.t0.amplitude_offset);
645             av_dlog(NULL, "floor0 number of books: %u\n",
646                     floor_setup->data.t0.num_books);
647             av_dlog(NULL, "floor0 book list pointer: %p\n",
648                     floor_setup->data.t0.book_list);
649             {
650                 int idx;
651                 for (idx = 0; idx < floor_setup->data.t0.num_books; ++idx) {
652                     av_dlog(NULL, "  Book %d: %u\n", idx + 1,
653                             floor_setup->data.t0.book_list[idx]);
654                 }
655             }
656         } else {
657             av_log(vc->avccontext, AV_LOG_ERROR, "Invalid floor type!\n");
658             return AVERROR_INVALIDDATA;
659         }
660     }
661     return 0;
662 }
663
664 // Process residues part
665
666 static int vorbis_parse_setup_hdr_residues(vorbis_context *vc)
667 {
668     GetBitContext *gb = &vc->gb;
669     unsigned i, j, k;
670
671     vc->residue_count = get_bits(gb, 6)+1;
672     vc->residues      = av_mallocz(vc->residue_count * sizeof(*vc->residues));
673
674     av_dlog(NULL, " There are %d residues. \n", vc->residue_count);
675
676     for (i = 0; i < vc->residue_count; ++i) {
677         vorbis_residue *res_setup = &vc->residues[i];
678         uint8_t cascade[64];
679         unsigned high_bits, low_bits;
680
681         res_setup->type = get_bits(gb, 16);
682
683         av_dlog(NULL, " %u. residue type %d\n", i, res_setup->type);
684
685         res_setup->begin          = get_bits(gb, 24);
686         res_setup->end            = get_bits(gb, 24);
687         res_setup->partition_size = get_bits(gb, 24) + 1;
688         /* Validations to prevent a buffer overflow later. */
689         if (res_setup->begin>res_setup->end ||
690             res_setup->end > (res_setup->type == 2 ? vc->audio_channels : 1) * vc->blocksize[1] / 2 ||
691             (res_setup->end-res_setup->begin) / res_setup->partition_size > V_MAX_PARTITIONS) {
692             av_log(vc->avccontext, AV_LOG_ERROR,
693                    "partition out of bounds: type, begin, end, size, blocksize: %"PRIu16", %"PRIu32", %"PRIu32", %u, %"PRIu32"\n",
694                    res_setup->type, res_setup->begin, res_setup->end,
695                    res_setup->partition_size, vc->blocksize[1] / 2);
696             return AVERROR_INVALIDDATA;
697         }
698
699         res_setup->classifications = get_bits(gb, 6) + 1;
700         GET_VALIDATED_INDEX(res_setup->classbook, 8, vc->codebook_count)
701
702         res_setup->ptns_to_read =
703             (res_setup->end - res_setup->begin) / res_setup->partition_size;
704         res_setup->classifs = av_malloc(res_setup->ptns_to_read *
705                                         vc->audio_channels *
706                                         sizeof(*res_setup->classifs));
707         if (!res_setup->classifs)
708             return AVERROR(ENOMEM);
709
710         av_dlog(NULL, "    begin %d end %d part.size %d classif.s %d classbook %d \n",
711                 res_setup->begin, res_setup->end, res_setup->partition_size,
712                 res_setup->classifications, res_setup->classbook);
713
714         for (j = 0; j < res_setup->classifications; ++j) {
715             high_bits = 0;
716             low_bits  = get_bits(gb, 3);
717             if (get_bits1(gb))
718                 high_bits = get_bits(gb, 5);
719             cascade[j] = (high_bits << 3) + low_bits;
720
721             av_dlog(NULL, "     %u class cascade depth: %d\n", j, ilog(cascade[j]));
722         }
723
724         res_setup->maxpass = 0;
725         for (j = 0; j < res_setup->classifications; ++j) {
726             for (k = 0; k < 8; ++k) {
727                 if (cascade[j]&(1 << k)) {
728                     GET_VALIDATED_INDEX(res_setup->books[j][k], 8, vc->codebook_count)
729
730                     av_dlog(NULL, "     %u class cascade depth %u book: %d\n",
731                             j, k, res_setup->books[j][k]);
732
733                     if (k>res_setup->maxpass)
734                         res_setup->maxpass = k;
735                 } else {
736                     res_setup->books[j][k] = -1;
737                 }
738             }
739         }
740     }
741     return 0;
742 }
743
744 // Process mappings part
745
746 static int vorbis_parse_setup_hdr_mappings(vorbis_context *vc)
747 {
748     GetBitContext *gb = &vc->gb;
749     unsigned i, j;
750
751     vc->mapping_count = get_bits(gb, 6)+1;
752     vc->mappings      = av_mallocz(vc->mapping_count * sizeof(*vc->mappings));
753
754     av_dlog(NULL, " There are %d mappings. \n", vc->mapping_count);
755
756     for (i = 0; i < vc->mapping_count; ++i) {
757         vorbis_mapping *mapping_setup = &vc->mappings[i];
758
759         if (get_bits(gb, 16)) {
760             av_log(vc->avccontext, AV_LOG_ERROR, "Other mappings than type 0 are not compliant with the Vorbis I specification. \n");
761             return AVERROR_INVALIDDATA;
762         }
763         if (get_bits1(gb)) {
764             mapping_setup->submaps = get_bits(gb, 4) + 1;
765         } else {
766             mapping_setup->submaps = 1;
767         }
768
769         if (get_bits1(gb)) {
770             mapping_setup->coupling_steps = get_bits(gb, 8) + 1;
771             mapping_setup->magnitude      = av_mallocz(mapping_setup->coupling_steps *
772                                                        sizeof(*mapping_setup->magnitude));
773             mapping_setup->angle          = av_mallocz(mapping_setup->coupling_steps *
774                                                        sizeof(*mapping_setup->angle));
775             for (j = 0; j < mapping_setup->coupling_steps; ++j) {
776                 GET_VALIDATED_INDEX(mapping_setup->magnitude[j], ilog(vc->audio_channels - 1), vc->audio_channels)
777                 GET_VALIDATED_INDEX(mapping_setup->angle[j],     ilog(vc->audio_channels - 1), vc->audio_channels)
778             }
779         } else {
780             mapping_setup->coupling_steps = 0;
781         }
782
783         av_dlog(NULL, "   %u mapping coupling steps: %d\n",
784                 i, mapping_setup->coupling_steps);
785
786         if (get_bits(gb, 2)) {
787             av_log(vc->avccontext, AV_LOG_ERROR, "%u. mapping setup data invalid.\n", i);
788             return AVERROR_INVALIDDATA; // following spec.
789         }
790
791         if (mapping_setup->submaps>1) {
792             mapping_setup->mux = av_mallocz(vc->audio_channels *
793                                             sizeof(*mapping_setup->mux));
794             for (j = 0; j < vc->audio_channels; ++j)
795                 mapping_setup->mux[j] = get_bits(gb, 4);
796         }
797
798         for (j = 0; j < mapping_setup->submaps; ++j) {
799             skip_bits(gb, 8); // FIXME check?
800             GET_VALIDATED_INDEX(mapping_setup->submap_floor[j],   8, vc->floor_count)
801             GET_VALIDATED_INDEX(mapping_setup->submap_residue[j], 8, vc->residue_count)
802
803             av_dlog(NULL, "   %u mapping %u submap : floor %d, residue %d\n", i, j,
804                     mapping_setup->submap_floor[j],
805                     mapping_setup->submap_residue[j]);
806         }
807     }
808     return 0;
809 }
810
811 // Process modes part
812
813 static void create_map(vorbis_context *vc, unsigned floor_number)
814 {
815     vorbis_floor *floors = vc->floors;
816     vorbis_floor0 *vf;
817     int idx;
818     int blockflag, n;
819     int32_t *map;
820
821     for (blockflag = 0; blockflag < 2; ++blockflag) {
822         n = vc->blocksize[blockflag] / 2;
823         floors[floor_number].data.t0.map[blockflag] =
824             av_malloc((n + 1) * sizeof(int32_t)); // n + sentinel
825
826         map =  floors[floor_number].data.t0.map[blockflag];
827         vf  = &floors[floor_number].data.t0;
828
829         for (idx = 0; idx < n; ++idx) {
830             map[idx] = floor(BARK((vf->rate * idx) / (2.0f * n)) *
831                              (vf->bark_map_size / BARK(vf->rate / 2.0f)));
832             if (vf->bark_map_size-1 < map[idx])
833                 map[idx] = vf->bark_map_size - 1;
834         }
835         map[n] = -1;
836         vf->map_size[blockflag] = n;
837     }
838
839     for (idx = 0; idx <= n; ++idx) {
840         av_dlog(NULL, "floor0 map: map at pos %d is %d\n", idx, map[idx]);
841     }
842 }
843
844 static int vorbis_parse_setup_hdr_modes(vorbis_context *vc)
845 {
846     GetBitContext *gb = &vc->gb;
847     unsigned i;
848
849     vc->mode_count = get_bits(gb, 6) + 1;
850     vc->modes      = av_mallocz(vc->mode_count * sizeof(*vc->modes));
851
852     av_dlog(NULL, " There are %d modes.\n", vc->mode_count);
853
854     for (i = 0; i < vc->mode_count; ++i) {
855         vorbis_mode *mode_setup = &vc->modes[i];
856
857         mode_setup->blockflag     = get_bits1(gb);
858         mode_setup->windowtype    = get_bits(gb, 16); //FIXME check
859         mode_setup->transformtype = get_bits(gb, 16); //FIXME check
860         GET_VALIDATED_INDEX(mode_setup->mapping, 8, vc->mapping_count);
861
862         av_dlog(NULL, " %u mode: blockflag %d, windowtype %d, transformtype %d, mapping %d\n",
863                 i, mode_setup->blockflag, mode_setup->windowtype,
864                 mode_setup->transformtype, mode_setup->mapping);
865     }
866     return 0;
867 }
868
869 // Process the whole setup header using the functions above
870
871 static int vorbis_parse_setup_hdr(vorbis_context *vc)
872 {
873     GetBitContext *gb = &vc->gb;
874     int ret;
875
876     if ((get_bits(gb, 8) != 'v') || (get_bits(gb, 8) != 'o') ||
877         (get_bits(gb, 8) != 'r') || (get_bits(gb, 8) != 'b') ||
878         (get_bits(gb, 8) != 'i') || (get_bits(gb, 8) != 's')) {
879         av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (no vorbis signature). \n");
880         return AVERROR_INVALIDDATA;
881     }
882
883     if ((ret = vorbis_parse_setup_hdr_codebooks(vc))) {
884         av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (codebooks). \n");
885         return ret;
886     }
887     if ((ret = vorbis_parse_setup_hdr_tdtransforms(vc))) {
888         av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (time domain transforms). \n");
889         return ret;
890     }
891     if ((ret = vorbis_parse_setup_hdr_floors(vc))) {
892         av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (floors). \n");
893         return ret;
894     }
895     if ((ret = vorbis_parse_setup_hdr_residues(vc))) {
896         av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (residues). \n");
897         return ret;
898     }
899     if ((ret = vorbis_parse_setup_hdr_mappings(vc))) {
900         av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (mappings). \n");
901         return ret;
902     }
903     if ((ret = vorbis_parse_setup_hdr_modes(vc))) {
904         av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (modes). \n");
905         return ret;
906     }
907     if (!get_bits1(gb)) {
908         av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (framing flag). \n");
909         return AVERROR_INVALIDDATA; // framing flag bit unset error
910     }
911
912     return 0;
913 }
914
915 // Process the identification header
916
917 static int vorbis_parse_id_hdr(vorbis_context *vc)
918 {
919     GetBitContext *gb = &vc->gb;
920     unsigned bl0, bl1;
921
922     if ((get_bits(gb, 8) != 'v') || (get_bits(gb, 8) != 'o') ||
923         (get_bits(gb, 8) != 'r') || (get_bits(gb, 8) != 'b') ||
924         (get_bits(gb, 8) != 'i') || (get_bits(gb, 8) != 's')) {
925         av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis id header packet corrupt (no vorbis signature). \n");
926         return AVERROR_INVALIDDATA;
927     }
928
929     vc->version        = get_bits_long(gb, 32);    //FIXME check 0
930     vc->audio_channels = get_bits(gb, 8);
931     if (vc->audio_channels <= 0) {
932         av_log(vc->avccontext, AV_LOG_ERROR, "Invalid number of channels\n");
933         return AVERROR_INVALIDDATA;
934     }
935     vc->audio_samplerate = get_bits_long(gb, 32);
936     if (vc->audio_samplerate <= 0) {
937         av_log(vc->avccontext, AV_LOG_ERROR, "Invalid samplerate\n");
938         return AVERROR_INVALIDDATA;
939     }
940     vc->bitrate_maximum = get_bits_long(gb, 32);
941     vc->bitrate_nominal = get_bits_long(gb, 32);
942     vc->bitrate_minimum = get_bits_long(gb, 32);
943     bl0 = get_bits(gb, 4);
944     bl1 = get_bits(gb, 4);
945     if (bl0 > 13 || bl0 < 6 || bl1 > 13 || bl1 < 6 || bl1 < bl0) {
946         av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis id header packet corrupt (illegal blocksize). \n");
947         return AVERROR_INVALIDDATA;
948     }
949     vc->blocksize[0] = (1 << bl0);
950     vc->blocksize[1] = (1 << bl1);
951     vc->win[0] = ff_vorbis_vwin[bl0 - 6];
952     vc->win[1] = ff_vorbis_vwin[bl1 - 6];
953
954     if ((get_bits1(gb)) == 0) {
955         av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis id header packet corrupt (framing flag not set). \n");
956         return AVERROR_INVALIDDATA;
957     }
958
959     vc->channel_residues =  av_malloc((vc->blocksize[1]  / 2) * vc->audio_channels * sizeof(*vc->channel_residues));
960     vc->channel_floors   =  av_malloc((vc->blocksize[1]  / 2) * vc->audio_channels * sizeof(*vc->channel_floors));
961     vc->saved            =  av_mallocz((vc->blocksize[1] / 4) * vc->audio_channels * sizeof(*vc->saved));
962     vc->previous_window  = 0;
963
964     ff_mdct_init(&vc->mdct[0], bl0, 1, -vc->scale_bias);
965     ff_mdct_init(&vc->mdct[1], bl1, 1, -vc->scale_bias);
966
967     av_dlog(NULL, " vorbis version %d \n audio_channels %d \n audio_samplerate %d \n bitrate_max %d \n bitrate_nom %d \n bitrate_min %d \n blk_0 %d blk_1 %d \n ",
968             vc->version, vc->audio_channels, vc->audio_samplerate, vc->bitrate_maximum, vc->bitrate_nominal, vc->bitrate_minimum, vc->blocksize[0], vc->blocksize[1]);
969
970 /*
971     BLK = vc->blocksize[0];
972     for (i = 0; i < BLK / 2; ++i) {
973         vc->win[0][i] = sin(0.5*3.14159265358*(sin(((float)i + 0.5) / (float)BLK*3.14159265358))*(sin(((float)i + 0.5) / (float)BLK*3.14159265358)));
974     }
975 */
976
977     return 0;
978 }
979
980 // Process the extradata using the functions above (identification header, setup header)
981
982 static av_cold int vorbis_decode_init(AVCodecContext *avccontext)
983 {
984     vorbis_context *vc = avccontext->priv_data;
985     uint8_t *headers   = avccontext->extradata;
986     int headers_len    = avccontext->extradata_size;
987     uint8_t *header_start[3];
988     int header_len[3];
989     GetBitContext *gb = &vc->gb;
990     int hdr_type, ret;
991
992     vc->avccontext = avccontext;
993     ff_dsputil_init(&vc->dsp, avccontext);
994     ff_fmt_convert_init(&vc->fmt_conv, avccontext);
995
996     if (avccontext->request_sample_fmt == AV_SAMPLE_FMT_FLT) {
997         avccontext->sample_fmt = AV_SAMPLE_FMT_FLT;
998         vc->scale_bias = 1.0f;
999     } else {
1000         avccontext->sample_fmt = AV_SAMPLE_FMT_S16;
1001         vc->scale_bias = 32768.0f;
1002     }
1003
1004     if (!headers_len) {
1005         av_log(avccontext, AV_LOG_ERROR, "Extradata missing.\n");
1006         return AVERROR_INVALIDDATA;
1007     }
1008
1009     if ((ret = avpriv_split_xiph_headers(headers, headers_len, 30, header_start, header_len)) < 0) {
1010         av_log(avccontext, AV_LOG_ERROR, "Extradata corrupt.\n");
1011         return ret;
1012     }
1013
1014     init_get_bits(gb, header_start[0], header_len[0]*8);
1015     hdr_type = get_bits(gb, 8);
1016     if (hdr_type != 1) {
1017         av_log(avccontext, AV_LOG_ERROR, "First header is not the id header.\n");
1018         return AVERROR_INVALIDDATA;
1019     }
1020     if ((ret = vorbis_parse_id_hdr(vc))) {
1021         av_log(avccontext, AV_LOG_ERROR, "Id header corrupt.\n");
1022         vorbis_free(vc);
1023         return ret;
1024     }
1025
1026     init_get_bits(gb, header_start[2], header_len[2]*8);
1027     hdr_type = get_bits(gb, 8);
1028     if (hdr_type != 5) {
1029         av_log(avccontext, AV_LOG_ERROR, "Third header is not the setup header.\n");
1030         vorbis_free(vc);
1031         return AVERROR_INVALIDDATA;
1032     }
1033     if ((ret = vorbis_parse_setup_hdr(vc))) {
1034         av_log(avccontext, AV_LOG_ERROR, "Setup header corrupt.\n");
1035         vorbis_free(vc);
1036         return ret;
1037     }
1038
1039     if (vc->audio_channels > 8)
1040         avccontext->channel_layout = 0;
1041     else
1042         avccontext->channel_layout = ff_vorbis_channel_layouts[vc->audio_channels - 1];
1043
1044     avccontext->channels    = vc->audio_channels;
1045     avccontext->sample_rate = vc->audio_samplerate;
1046
1047     avcodec_get_frame_defaults(&vc->frame);
1048     avccontext->coded_frame = &vc->frame;
1049
1050     return 0;
1051 }
1052
1053 // Decode audiopackets -------------------------------------------------
1054
1055 // Read and decode floor
1056
1057 static int vorbis_floor0_decode(vorbis_context *vc,
1058                                 vorbis_floor_data *vfu, float *vec)
1059 {
1060     vorbis_floor0 *vf = &vfu->t0;
1061     float *lsp = vf->lsp;
1062     unsigned amplitude, book_idx;
1063     unsigned blockflag = vc->modes[vc->mode_number].blockflag;
1064
1065     amplitude = get_bits(&vc->gb, vf->amplitude_bits);
1066     if (amplitude > 0) {
1067         float last = 0;
1068         unsigned idx, lsp_len = 0;
1069         vorbis_codebook codebook;
1070
1071         book_idx = get_bits(&vc->gb, ilog(vf->num_books));
1072         if (book_idx >= vf->num_books) {
1073             av_log(vc->avccontext, AV_LOG_ERROR,
1074                     "floor0 dec: booknumber too high!\n");
1075             book_idx =  0;
1076         }
1077         av_dlog(NULL, "floor0 dec: booknumber: %u\n", book_idx);
1078         codebook = vc->codebooks[vf->book_list[book_idx]];
1079         /* Invalid codebook! */
1080         if (!codebook.codevectors)
1081             return AVERROR_INVALIDDATA;
1082
1083         while (lsp_len<vf->order) {
1084             int vec_off;
1085
1086             av_dlog(NULL, "floor0 dec: book dimension: %d\n", codebook.dimensions);
1087             av_dlog(NULL, "floor0 dec: maximum depth: %d\n", codebook.maxdepth);
1088             /* read temp vector */
1089             vec_off = get_vlc2(&vc->gb, codebook.vlc.table,
1090                                codebook.nb_bits, codebook.maxdepth)
1091                       * codebook.dimensions;
1092             av_dlog(NULL, "floor0 dec: vector offset: %d\n", vec_off);
1093             /* copy each vector component and add last to it */
1094             for (idx = 0; idx < codebook.dimensions; ++idx)
1095                 lsp[lsp_len+idx] = codebook.codevectors[vec_off+idx] + last;
1096             last = lsp[lsp_len+idx-1]; /* set last to last vector component */
1097
1098             lsp_len += codebook.dimensions;
1099         }
1100         /* DEBUG: output lsp coeffs */
1101         {
1102             int idx;
1103             for (idx = 0; idx < lsp_len; ++idx)
1104                 av_dlog(NULL, "floor0 dec: coeff at %d is %f\n", idx, lsp[idx]);
1105         }
1106
1107         /* synthesize floor output vector */
1108         {
1109             int i;
1110             int order = vf->order;
1111             float wstep = M_PI / vf->bark_map_size;
1112
1113             for (i = 0; i < order; i++)
1114                 lsp[i] = 2.0f * cos(lsp[i]);
1115
1116             av_dlog(NULL, "floor0 synth: map_size = %"PRIu32"; m = %d; wstep = %f\n",
1117                     vf->map_size[blockflag], order, wstep);
1118
1119             i = 0;
1120             while (i < vf->map_size[blockflag]) {
1121                 int j, iter_cond = vf->map[blockflag][i];
1122                 float p = 0.5f;
1123                 float q = 0.5f;
1124                 float two_cos_w = 2.0f * cos(wstep * iter_cond); // needed all times
1125
1126                 /* similar part for the q and p products */
1127                 for (j = 0; j + 1 < order; j += 2) {
1128                     q *= lsp[j]     - two_cos_w;
1129                     p *= lsp[j + 1] - two_cos_w;
1130                 }
1131                 if (j == order) { // even order
1132                     p *= p * (2.0f - two_cos_w);
1133                     q *= q * (2.0f + two_cos_w);
1134                 } else { // odd order
1135                     q *= two_cos_w-lsp[j]; // one more time for q
1136
1137                     /* final step and square */
1138                     p *= p * (4.f - two_cos_w * two_cos_w);
1139                     q *= q;
1140                 }
1141
1142                 /* calculate linear floor value */
1143                 q = exp((((amplitude*vf->amplitude_offset) /
1144                           (((1 << vf->amplitude_bits) - 1) * sqrt(p + q)))
1145                          - vf->amplitude_offset) * .11512925f);
1146
1147                 /* fill vector */
1148                 do {
1149                     vec[i] = q; ++i;
1150                 } while (vf->map[blockflag][i] == iter_cond);
1151             }
1152         }
1153     } else {
1154         /* this channel is unused */
1155         return 1;
1156     }
1157
1158     av_dlog(NULL, " Floor0 decoded\n");
1159
1160     return 0;
1161 }
1162
1163 static int vorbis_floor1_decode(vorbis_context *vc,
1164                                 vorbis_floor_data *vfu, float *vec)
1165 {
1166     vorbis_floor1 *vf = &vfu->t1;
1167     GetBitContext *gb = &vc->gb;
1168     uint16_t range_v[4] = { 256, 128, 86, 64 };
1169     unsigned range = range_v[vf->multiplier - 1];
1170     uint16_t floor1_Y[258];
1171     uint16_t floor1_Y_final[258];
1172     int floor1_flag[258];
1173     unsigned partition_class, cdim, cbits, csub, cval, offset, i, j;
1174     int book, adx, ady, dy, off, predicted, err;
1175
1176
1177     if (!get_bits1(gb)) // silence
1178         return 1;
1179
1180 // Read values (or differences) for the floor's points
1181
1182     floor1_Y[0] = get_bits(gb, ilog(range - 1));
1183     floor1_Y[1] = get_bits(gb, ilog(range - 1));
1184
1185     av_dlog(NULL, "floor 0 Y %d floor 1 Y %d \n", floor1_Y[0], floor1_Y[1]);
1186
1187     offset = 2;
1188     for (i = 0; i < vf->partitions; ++i) {
1189         partition_class = vf->partition_class[i];
1190         cdim   = vf->class_dimensions[partition_class];
1191         cbits  = vf->class_subclasses[partition_class];
1192         csub = (1 << cbits) - 1;
1193         cval = 0;
1194
1195         av_dlog(NULL, "Cbits %u\n", cbits);
1196
1197         if (cbits) // this reads all subclasses for this partition's class
1198             cval = get_vlc2(gb, vc->codebooks[vf->class_masterbook[partition_class]].vlc.table,
1199                             vc->codebooks[vf->class_masterbook[partition_class]].nb_bits, 3);
1200
1201         for (j = 0; j < cdim; ++j) {
1202             book = vf->subclass_books[partition_class][cval & csub];
1203
1204             av_dlog(NULL, "book %d Cbits %u cval %u  bits:%d\n",
1205                     book, cbits, cval, get_bits_count(gb));
1206
1207             cval = cval >> cbits;
1208             if (book > -1) {
1209                 floor1_Y[offset+j] = get_vlc2(gb, vc->codebooks[book].vlc.table,
1210                 vc->codebooks[book].nb_bits, 3);
1211             } else {
1212                 floor1_Y[offset+j] = 0;
1213             }
1214
1215             av_dlog(NULL, " floor(%d) = %d \n",
1216                     vf->list[offset+j].x, floor1_Y[offset+j]);
1217         }
1218         offset+=cdim;
1219     }
1220
1221 // Amplitude calculation from the differences
1222
1223     floor1_flag[0] = 1;
1224     floor1_flag[1] = 1;
1225     floor1_Y_final[0] = floor1_Y[0];
1226     floor1_Y_final[1] = floor1_Y[1];
1227
1228     for (i = 2; i < vf->x_list_dim; ++i) {
1229         unsigned val, highroom, lowroom, room, high_neigh_offs, low_neigh_offs;
1230
1231         low_neigh_offs  = vf->list[i].low;
1232         high_neigh_offs = vf->list[i].high;
1233         dy  = floor1_Y_final[high_neigh_offs] - floor1_Y_final[low_neigh_offs];  // render_point begin
1234         adx = vf->list[high_neigh_offs].x - vf->list[low_neigh_offs].x;
1235         ady = FFABS(dy);
1236         err = ady * (vf->list[i].x - vf->list[low_neigh_offs].x);
1237         off = err / adx;
1238         if (dy < 0) {
1239             predicted = floor1_Y_final[low_neigh_offs] - off;
1240         } else {
1241             predicted = floor1_Y_final[low_neigh_offs] + off;
1242         } // render_point end
1243
1244         val = floor1_Y[i];
1245         highroom = range-predicted;
1246         lowroom  = predicted;
1247         if (highroom < lowroom) {
1248             room = highroom * 2;
1249         } else {
1250             room = lowroom * 2;   // SPEC mispelling
1251         }
1252         if (val) {
1253             floor1_flag[low_neigh_offs]  = 1;
1254             floor1_flag[high_neigh_offs] = 1;
1255             floor1_flag[i]               = 1;
1256             if (val >= room) {
1257                 if (highroom > lowroom) {
1258                     floor1_Y_final[i] = av_clip_uint16(val - lowroom + predicted);
1259                 } else {
1260                     floor1_Y_final[i] = av_clip_uint16(predicted - val + highroom - 1);
1261                 }
1262             } else {
1263                 if (val & 1) {
1264                     floor1_Y_final[i] = av_clip_uint16(predicted - (val + 1) / 2);
1265                 } else {
1266                     floor1_Y_final[i] = av_clip_uint16(predicted + val / 2);
1267                 }
1268             }
1269         } else {
1270             floor1_flag[i]    = 0;
1271             floor1_Y_final[i] = av_clip_uint16(predicted);
1272         }
1273
1274         av_dlog(NULL, " Decoded floor(%d) = %u / val %u\n",
1275                 vf->list[i].x, floor1_Y_final[i], val);
1276     }
1277
1278 // Curve synth - connect the calculated dots and convert from dB scale FIXME optimize ?
1279
1280     ff_vorbis_floor1_render_list(vf->list, vf->x_list_dim, floor1_Y_final, floor1_flag, vf->multiplier, vec, vf->list[1].x);
1281
1282     av_dlog(NULL, " Floor decoded\n");
1283
1284     return 0;
1285 }
1286
1287 // Read and decode residue
1288
1289 static av_always_inline int vorbis_residue_decode_internal(vorbis_context *vc,
1290                                                            vorbis_residue *vr,
1291                                                            unsigned ch,
1292                                                            uint8_t *do_not_decode,
1293                                                            float *vec,
1294                                                            unsigned vlen,
1295                                                            unsigned ch_left,
1296                                                            int vr_type)
1297 {
1298     GetBitContext *gb = &vc->gb;
1299     unsigned c_p_c        = vc->codebooks[vr->classbook].dimensions;
1300     unsigned ptns_to_read = vr->ptns_to_read;
1301     uint8_t *classifs = vr->classifs;
1302     unsigned pass, ch_used, i, j, k, l;
1303     unsigned max_output = (ch - 1) * vlen;
1304
1305     if (vr_type == 2) {
1306         for (j = 1; j < ch; ++j)
1307             do_not_decode[0] &= do_not_decode[j];  // FIXME - clobbering input
1308         if (do_not_decode[0])
1309             return 0;
1310         ch_used = 1;
1311         max_output += vr->end / ch;
1312     } else {
1313         ch_used = ch;
1314         max_output += vr->end;
1315     }
1316
1317     if (max_output > ch_left * vlen) {
1318         av_log(vc->avccontext, AV_LOG_ERROR, "Insufficient output buffer\n");
1319         return -1;
1320     }
1321
1322     av_dlog(NULL, " residue type 0/1/2 decode begin, ch: %d  cpc %d  \n", ch, c_p_c);
1323
1324     for (pass = 0; pass <= vr->maxpass; ++pass) { // FIXME OPTIMIZE?
1325         uint16_t voffset, partition_count, j_times_ptns_to_read;
1326
1327         voffset = vr->begin;
1328         for (partition_count = 0; partition_count < ptns_to_read;) {  // SPEC        error
1329             if (!pass) {
1330                 unsigned inverse_class = ff_inverse[vr->classifications];
1331                 for (j_times_ptns_to_read = 0, j = 0; j < ch_used; ++j) {
1332                     if (!do_not_decode[j]) {
1333                         unsigned temp = get_vlc2(gb, vc->codebooks[vr->classbook].vlc.table,
1334                                                  vc->codebooks[vr->classbook].nb_bits, 3);
1335
1336                         av_dlog(NULL, "Classword: %u\n", temp);
1337
1338                         assert(vr->classifications > 1 && temp <= 65536); //needed for inverse[]
1339                         for (i = 0; i < c_p_c; ++i) {
1340                             unsigned temp2;
1341
1342                             temp2 = (((uint64_t)temp) * inverse_class) >> 32;
1343                             if (partition_count + c_p_c - 1 - i < ptns_to_read)
1344                                 classifs[j_times_ptns_to_read + partition_count + c_p_c - 1 - i] = temp - temp2 * vr->classifications;
1345                             temp = temp2;
1346                         }
1347                     }
1348                     j_times_ptns_to_read += ptns_to_read;
1349                 }
1350             }
1351             for (i = 0; (i < c_p_c) && (partition_count < ptns_to_read); ++i) {
1352                 for (j_times_ptns_to_read = 0, j = 0; j < ch_used; ++j) {
1353                     unsigned voffs;
1354
1355                     if (!do_not_decode[j]) {
1356                         unsigned vqclass = classifs[j_times_ptns_to_read + partition_count];
1357                         int vqbook  = vr->books[vqclass][pass];
1358
1359                         if (vqbook >= 0 && vc->codebooks[vqbook].codevectors) {
1360                             unsigned coffs;
1361                             unsigned dim  = vc->codebooks[vqbook].dimensions;
1362                             unsigned step = dim == 1 ? vr->partition_size
1363                                                      : FASTDIV(vr->partition_size, dim);
1364                             vorbis_codebook codebook = vc->codebooks[vqbook];
1365
1366                             if (vr_type == 0) {
1367
1368                                 voffs = voffset+j*vlen;
1369                                 for (k = 0; k < step; ++k) {
1370                                     coffs = get_vlc2(gb, codebook.vlc.table, codebook.nb_bits, 3) * dim;
1371                                     for (l = 0; l < dim; ++l)
1372                                         vec[voffs + k + l * step] += codebook.codevectors[coffs + l];  // FPMATH
1373                                 }
1374                             } else if (vr_type == 1) {
1375                                 voffs = voffset + j * vlen;
1376                                 for (k = 0; k < step; ++k) {
1377                                     coffs = get_vlc2(gb, codebook.vlc.table, codebook.nb_bits, 3) * dim;
1378                                     for (l = 0; l < dim; ++l, ++voffs) {
1379                                         vec[voffs]+=codebook.codevectors[coffs+l];  // FPMATH
1380
1381                                         av_dlog(NULL, " pass %d offs: %d curr: %f change: %f cv offs.: %d  \n",
1382                                                 pass, voffs, vec[voffs], codebook.codevectors[coffs+l], coffs);
1383                                     }
1384                                 }
1385                             } else if (vr_type == 2 && ch == 2 && (voffset & 1) == 0 && (dim & 1) == 0) { // most frequent case optimized
1386                                 voffs = voffset >> 1;
1387
1388                                 if (dim == 2) {
1389                                     for (k = 0; k < step; ++k) {
1390                                         coffs = get_vlc2(gb, codebook.vlc.table, codebook.nb_bits, 3) * 2;
1391                                         vec[voffs + k       ] += codebook.codevectors[coffs    ];  // FPMATH
1392                                         vec[voffs + k + vlen] += codebook.codevectors[coffs + 1];  // FPMATH
1393                                     }
1394                                 } else if (dim == 4) {
1395                                     for (k = 0; k < step; ++k, voffs += 2) {
1396                                         coffs = get_vlc2(gb, codebook.vlc.table, codebook.nb_bits, 3) * 4;
1397                                         vec[voffs           ] += codebook.codevectors[coffs    ];  // FPMATH
1398                                         vec[voffs + 1       ] += codebook.codevectors[coffs + 2];  // FPMATH
1399                                         vec[voffs + vlen    ] += codebook.codevectors[coffs + 1];  // FPMATH
1400                                         vec[voffs + vlen + 1] += codebook.codevectors[coffs + 3];  // FPMATH
1401                                     }
1402                                 } else
1403                                 for (k = 0; k < step; ++k) {
1404                                     coffs = get_vlc2(gb, codebook.vlc.table, codebook.nb_bits, 3) * dim;
1405                                     for (l = 0; l < dim; l += 2, voffs++) {
1406                                         vec[voffs       ] += codebook.codevectors[coffs + l    ];  // FPMATH
1407                                         vec[voffs + vlen] += codebook.codevectors[coffs + l + 1];  // FPMATH
1408
1409                                         av_dlog(NULL, " pass %d offs: %d curr: %f change: %f cv offs.: %d+%d  \n",
1410                                                 pass, voffset / ch + (voffs % ch) * vlen,
1411                                                 vec[voffset / ch + (voffs % ch) * vlen],
1412                                                 codebook.codevectors[coffs + l], coffs, l);
1413                                     }
1414                                 }
1415
1416                             } else if (vr_type == 2) {
1417                                 voffs = voffset;
1418
1419                                 for (k = 0; k < step; ++k) {
1420                                     coffs = get_vlc2(gb, codebook.vlc.table, codebook.nb_bits, 3) * dim;
1421                                     for (l = 0; l < dim; ++l, ++voffs) {
1422                                         vec[voffs / ch + (voffs % ch) * vlen] += codebook.codevectors[coffs + l];  // FPMATH FIXME use if and counter instead of / and %
1423
1424                                         av_dlog(NULL, " pass %d offs: %d curr: %f change: %f cv offs.: %d+%d  \n",
1425                                                 pass, voffset / ch + (voffs % ch) * vlen,
1426                                                 vec[voffset / ch + (voffs % ch) * vlen],
1427                                                 codebook.codevectors[coffs + l], coffs, l);
1428                                     }
1429                                 }
1430                             }
1431                         }
1432                     }
1433                     j_times_ptns_to_read += ptns_to_read;
1434                 }
1435                 ++partition_count;
1436                 voffset += vr->partition_size;
1437             }
1438         }
1439     }
1440     return 0;
1441 }
1442
1443 static inline int vorbis_residue_decode(vorbis_context *vc, vorbis_residue *vr,
1444                                         unsigned ch,
1445                                         uint8_t *do_not_decode,
1446                                         float *vec, unsigned vlen,
1447                                         unsigned ch_left)
1448 {
1449     if (vr->type == 2)
1450         return vorbis_residue_decode_internal(vc, vr, ch, do_not_decode, vec, vlen, ch_left, 2);
1451     else if (vr->type == 1)
1452         return vorbis_residue_decode_internal(vc, vr, ch, do_not_decode, vec, vlen, ch_left, 1);
1453     else if (vr->type == 0)
1454         return vorbis_residue_decode_internal(vc, vr, ch, do_not_decode, vec, vlen, ch_left, 0);
1455     else {
1456         av_log(vc->avccontext, AV_LOG_ERROR, " Invalid residue type while residue decode?! \n");
1457         return AVERROR_INVALIDDATA;
1458     }
1459 }
1460
1461 void ff_vorbis_inverse_coupling(float *mag, float *ang, int blocksize)
1462 {
1463     int i;
1464     for (i = 0;  i < blocksize;  i++) {
1465         if (mag[i] > 0.0) {
1466             if (ang[i] > 0.0) {
1467                 ang[i] = mag[i] - ang[i];
1468             } else {
1469                 float temp = ang[i];
1470                 ang[i]     = mag[i];
1471                 mag[i]    += temp;
1472             }
1473         } else {
1474             if (ang[i] > 0.0) {
1475                 ang[i] += mag[i];
1476             } else {
1477                 float temp = ang[i];
1478                 ang[i]     = mag[i];
1479                 mag[i]    -= temp;
1480             }
1481         }
1482     }
1483 }
1484
1485 // Decode the audio packet using the functions above
1486
1487 static int vorbis_parse_audio_packet(vorbis_context *vc)
1488 {
1489     GetBitContext *gb = &vc->gb;
1490     FFTContext *mdct;
1491     unsigned previous_window = vc->previous_window;
1492     unsigned mode_number, blockflag, blocksize;
1493     int i, j;
1494     uint8_t no_residue[255];
1495     uint8_t do_not_decode[255];
1496     vorbis_mapping *mapping;
1497     float *ch_res_ptr   = vc->channel_residues;
1498     float *ch_floor_ptr = vc->channel_floors;
1499     uint8_t res_chan[255];
1500     unsigned res_num = 0;
1501     int retlen  = 0;
1502     unsigned ch_left = vc->audio_channels;
1503     unsigned vlen;
1504
1505     if (get_bits1(gb)) {
1506         av_log(vc->avccontext, AV_LOG_ERROR, "Not a Vorbis I audio packet.\n");
1507         return AVERROR_INVALIDDATA; // packet type not audio
1508     }
1509
1510     if (vc->mode_count == 1) {
1511         mode_number = 0;
1512     } else {
1513         GET_VALIDATED_INDEX(mode_number, ilog(vc->mode_count-1), vc->mode_count)
1514     }
1515     vc->mode_number = mode_number;
1516     mapping = &vc->mappings[vc->modes[mode_number].mapping];
1517
1518     av_dlog(NULL, " Mode number: %u , mapping: %d , blocktype %d\n", mode_number,
1519             vc->modes[mode_number].mapping, vc->modes[mode_number].blockflag);
1520
1521     blockflag = vc->modes[mode_number].blockflag;
1522     blocksize = vc->blocksize[blockflag];
1523     vlen = blocksize / 2;
1524     if (blockflag) {
1525         previous_window = get_bits(gb, 1);
1526         skip_bits1(gb); // next_window
1527     }
1528
1529     memset(ch_res_ptr,   0, sizeof(float) * vc->audio_channels * vlen); //FIXME can this be removed ?
1530     memset(ch_floor_ptr, 0, sizeof(float) * vc->audio_channels * vlen); //FIXME can this be removed ?
1531
1532 // Decode floor
1533
1534     for (i = 0; i < vc->audio_channels; ++i) {
1535         vorbis_floor *floor;
1536         int ret;
1537         if (mapping->submaps > 1) {
1538             floor = &vc->floors[mapping->submap_floor[mapping->mux[i]]];
1539         } else {
1540             floor = &vc->floors[mapping->submap_floor[0]];
1541         }
1542
1543         ret = floor->decode(vc, &floor->data, ch_floor_ptr);
1544
1545         if (ret < 0) {
1546             av_log(vc->avccontext, AV_LOG_ERROR, "Invalid codebook in vorbis_floor_decode.\n");
1547             return AVERROR_INVALIDDATA;
1548         }
1549         no_residue[i] = ret;
1550         ch_floor_ptr += vlen;
1551     }
1552
1553 // Nonzero vector propagate
1554
1555     for (i = mapping->coupling_steps - 1; i >= 0; --i) {
1556         if (!(no_residue[mapping->magnitude[i]] & no_residue[mapping->angle[i]])) {
1557             no_residue[mapping->magnitude[i]] = 0;
1558             no_residue[mapping->angle[i]]     = 0;
1559         }
1560     }
1561
1562 // Decode residue
1563
1564     for (i = 0; i < mapping->submaps; ++i) {
1565         vorbis_residue *residue;
1566         unsigned ch = 0;
1567         int ret;
1568
1569         for (j = 0; j < vc->audio_channels; ++j) {
1570             if ((mapping->submaps == 1) || (i == mapping->mux[j])) {
1571                 res_chan[j] = res_num;
1572                 if (no_residue[j]) {
1573                     do_not_decode[ch] = 1;
1574                 } else {
1575                     do_not_decode[ch] = 0;
1576                 }
1577                 ++ch;
1578                 ++res_num;
1579             }
1580         }
1581         residue = &vc->residues[mapping->submap_residue[i]];
1582         if (ch_left < ch) {
1583             av_log(vc->avccontext, AV_LOG_ERROR, "Too many channels in vorbis_floor_decode.\n");
1584             return -1;
1585         }
1586         if (ch) {
1587             ret = vorbis_residue_decode(vc, residue, ch, do_not_decode, ch_res_ptr, vlen, ch_left);
1588             if (ret < 0)
1589                 return ret;
1590         }
1591
1592         ch_res_ptr += ch * vlen;
1593         ch_left -= ch;
1594     }
1595
1596     if (ch_left > 0)
1597         return AVERROR_INVALIDDATA;
1598
1599 // Inverse coupling
1600
1601     for (i = mapping->coupling_steps - 1; i >= 0; --i) { //warning: i has to be signed
1602         float *mag, *ang;
1603
1604         mag = vc->channel_residues+res_chan[mapping->magnitude[i]] * blocksize / 2;
1605         ang = vc->channel_residues+res_chan[mapping->angle[i]]     * blocksize / 2;
1606         vc->dsp.vorbis_inverse_coupling(mag, ang, blocksize / 2);
1607     }
1608
1609 // Dotproduct, MDCT
1610
1611     mdct = &vc->mdct[blockflag];
1612
1613     for (j = vc->audio_channels-1;j >= 0; j--) {
1614         ch_floor_ptr = vc->channel_floors   + j           * blocksize / 2;
1615         ch_res_ptr   = vc->channel_residues + res_chan[j] * blocksize / 2;
1616         vc->dsp.vector_fmul(ch_floor_ptr, ch_floor_ptr, ch_res_ptr, blocksize / 2);
1617         mdct->imdct_half(mdct, ch_res_ptr, ch_floor_ptr);
1618     }
1619
1620 // Overlap/add, save data for next overlapping  FPMATH
1621
1622     retlen = (blocksize + vc->blocksize[previous_window]) / 4;
1623     for (j = 0; j < vc->audio_channels; j++) {
1624         unsigned bs0 = vc->blocksize[0];
1625         unsigned bs1 = vc->blocksize[1];
1626         float *residue    = vc->channel_residues + res_chan[j] * blocksize / 2;
1627         float *saved      = vc->saved + j * bs1 / 4;
1628         float *ret        = vc->channel_floors + j * retlen;
1629         float *buf        = residue;
1630         const float *win  = vc->win[blockflag & previous_window];
1631
1632         if (blockflag == previous_window) {
1633             vc->dsp.vector_fmul_window(ret, saved, buf, win, blocksize / 4);
1634         } else if (blockflag > previous_window) {
1635             vc->dsp.vector_fmul_window(ret, saved, buf, win, bs0 / 4);
1636             memcpy(ret+bs0/2, buf+bs0/4, ((bs1-bs0)/4) * sizeof(float));
1637         } else {
1638             memcpy(ret, saved, ((bs1 - bs0) / 4) * sizeof(float));
1639             vc->dsp.vector_fmul_window(ret + (bs1 - bs0) / 4, saved + (bs1 - bs0) / 4, buf, win, bs0 / 4);
1640         }
1641         memcpy(saved, buf + blocksize / 4, blocksize / 4 * sizeof(float));
1642     }
1643
1644     vc->previous_window = blockflag;
1645     return retlen;
1646 }
1647
1648 // Return the decoded audio packet through the standard api
1649
1650 static int vorbis_decode_frame(AVCodecContext *avccontext, void *data,
1651                                int *got_frame_ptr, AVPacket *avpkt)
1652 {
1653     const uint8_t *buf = avpkt->data;
1654     int buf_size       = avpkt->size;
1655     vorbis_context *vc = avccontext->priv_data;
1656     GetBitContext *gb = &vc->gb;
1657     const float *channel_ptrs[255];
1658     int i, len, ret;
1659
1660     av_dlog(NULL, "packet length %d \n", buf_size);
1661
1662     init_get_bits(gb, buf, buf_size*8);
1663
1664     if ((len = vorbis_parse_audio_packet(vc)) <= 0)
1665         return len;
1666
1667     if (!vc->first_frame) {
1668         vc->first_frame = 1;
1669         *got_frame_ptr = 0;
1670         return buf_size;
1671     }
1672
1673     av_dlog(NULL, "parsed %d bytes %d bits, returned %d samples (*ch*bits) \n",
1674             get_bits_count(gb) / 8, get_bits_count(gb) % 8, len);
1675
1676     /* get output buffer */
1677     vc->frame.nb_samples = len;
1678     if ((ret = avccontext->get_buffer(avccontext, &vc->frame)) < 0) {
1679         av_log(avccontext, AV_LOG_ERROR, "get_buffer() failed\n");
1680         return ret;
1681     }
1682
1683     if (vc->audio_channels > 8) {
1684         for (i = 0; i < vc->audio_channels; i++)
1685             channel_ptrs[i] = vc->channel_floors + i * len;
1686     } else {
1687         for (i = 0; i < vc->audio_channels; i++)
1688             channel_ptrs[i] = vc->channel_floors +
1689                               len * ff_vorbis_channel_layout_offsets[vc->audio_channels - 1][i];
1690     }
1691
1692     if (avccontext->sample_fmt == AV_SAMPLE_FMT_FLT)
1693         vc->fmt_conv.float_interleave((float *)vc->frame.data[0], channel_ptrs,
1694                                       len, vc->audio_channels);
1695     else
1696         vc->fmt_conv.float_to_int16_interleave((int16_t *)vc->frame.data[0],
1697                                                channel_ptrs, len,
1698                                                vc->audio_channels);
1699
1700     *got_frame_ptr   = 1;
1701     *(AVFrame *)data = vc->frame;
1702
1703     return buf_size;
1704 }
1705
1706 // Close decoder
1707
1708 static av_cold int vorbis_decode_close(AVCodecContext *avccontext)
1709 {
1710     vorbis_context *vc = avccontext->priv_data;
1711
1712     vorbis_free(vc);
1713
1714     return 0;
1715 }
1716
1717 static av_cold void vorbis_decode_flush(AVCodecContext *avccontext)
1718 {
1719     vorbis_context *vc = avccontext->priv_data;
1720
1721     if (vc->saved) {
1722         memset(vc->saved, 0, (vc->blocksize[1] / 4) * vc->audio_channels *
1723                              sizeof(*vc->saved));
1724     }
1725     vc->previous_window = 0;
1726 }
1727
1728 AVCodec ff_vorbis_decoder = {
1729     .name            = "vorbis",
1730     .type            = AVMEDIA_TYPE_AUDIO,
1731     .id              = CODEC_ID_VORBIS,
1732     .priv_data_size  = sizeof(vorbis_context),
1733     .init            = vorbis_decode_init,
1734     .close           = vorbis_decode_close,
1735     .decode          = vorbis_decode_frame,
1736     .flush           = vorbis_decode_flush,
1737     .capabilities    = CODEC_CAP_DR1,
1738     .long_name       = NULL_IF_CONFIG_SMALL("Vorbis"),
1739     .channel_layouts = ff_vorbis_channel_layouts,
1740     .sample_fmts     = (const enum AVSampleFormat[]) {
1741         AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_NONE
1742     },
1743 };