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