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