]> git.sesse.net Git - ffmpeg/blob - libavcodec/flacdec.c
Use a shared function to validate FLAC extradata.
[ffmpeg] / libavcodec / flacdec.c
1 /*
2  * FLAC (Free Lossless Audio Codec) decoder
3  * Copyright (c) 2003 Alex Beregszaszi
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 /**
23  * @file libavcodec/flacdec.c
24  * FLAC (Free Lossless Audio Codec) decoder
25  * @author Alex Beregszaszi
26  *
27  * For more information on the FLAC format, visit:
28  *  http://flac.sourceforge.net/
29  *
30  * This decoder can be used in 1 of 2 ways: Either raw FLAC data can be fed
31  * through, starting from the initial 'fLaC' signature; or by passing the
32  * 34-byte streaminfo structure through avctx->extradata[_size] followed
33  * by data starting with the 0xFFF8 marker.
34  */
35
36 #include <limits.h>
37
38 #define ALT_BITSTREAM_READER
39 #include "libavutil/crc.h"
40 #include "avcodec.h"
41 #include "bitstream.h"
42 #include "golomb.h"
43 #include "flac.h"
44
45 #undef NDEBUG
46 #include <assert.h>
47
48 #define MAX_CHANNELS 8
49 #define MAX_BLOCKSIZE 65535
50
51 enum decorrelation_type {
52     INDEPENDENT,
53     LEFT_SIDE,
54     RIGHT_SIDE,
55     MID_SIDE,
56 };
57
58 typedef struct FLACContext {
59     FLACSTREAMINFO
60
61     AVCodecContext *avctx;                  ///< parent AVCodecContext
62     GetBitContext gb;                       ///< GetBitContext initialized to start at the current frame
63
64     int blocksize;                          ///< number of samples in the current frame
65     int curr_bps;                           ///< bps for current subframe, adjusted for channel correlation and wasted bits
66     int sample_shift;                       ///< shift required to make output samples 16-bit or 32-bit
67     int is32;                               ///< flag to indicate if output should be 32-bit instead of 16-bit
68     enum decorrelation_type decorrelation;  ///< channel decorrelation type in the current frame
69
70     int32_t *decoded[MAX_CHANNELS];         ///< decoded samples
71     uint8_t *bitstream;
72     unsigned int bitstream_size;
73     unsigned int bitstream_index;
74     unsigned int allocated_bitstream_size;
75 } FLACContext;
76
77 static const int sample_rate_table[] =
78 { 0,
79   88200, 176400, 192000,
80   8000, 16000, 22050, 24000, 32000, 44100, 48000, 96000,
81   0, 0, 0, 0 };
82
83 static const int sample_size_table[] =
84 { 0, 8, 12, 0, 16, 20, 24, 0 };
85
86 static const int blocksize_table[] = {
87      0,    192, 576<<0, 576<<1, 576<<2, 576<<3,      0,      0,
88 256<<0, 256<<1, 256<<2, 256<<3, 256<<4, 256<<5, 256<<6, 256<<7
89 };
90
91 static int64_t get_utf8(GetBitContext *gb)
92 {
93     int64_t val;
94     GET_UTF8(val, get_bits(gb, 8), return -1;)
95     return val;
96 }
97
98 static void allocate_buffers(FLACContext *s);
99
100 int ff_flac_is_extradata_valid(AVCodecContext *avctx,
101                                enum FLACExtradataFormat *format,
102                                uint8_t **streaminfo_start)
103 {
104     if (!avctx->extradata || avctx->extradata_size < FLAC_STREAMINFO_SIZE) {
105         av_log(avctx, AV_LOG_ERROR, "extradata NULL or too small.\n");
106         return 0;
107     }
108     if (AV_RL32(avctx->extradata) != MKTAG('f','L','a','C')) {
109         /* extradata contains STREAMINFO only */
110         if (avctx->extradata_size != FLAC_STREAMINFO_SIZE) {
111             av_log(avctx, AV_LOG_WARNING, "extradata contains %d bytes too many.\n",
112                    FLAC_STREAMINFO_SIZE-avctx->extradata_size);
113         }
114         *format = FLAC_EXTRADATA_FORMAT_STREAMINFO;
115         *streaminfo_start = avctx->extradata;
116     } else {
117         if (avctx->extradata_size < 8+FLAC_STREAMINFO_SIZE) {
118             av_log(avctx, AV_LOG_ERROR, "extradata too small.\n");
119             return 0;
120         }
121         *format = FLAC_EXTRADATA_FORMAT_FULL_HEADER;
122         *streaminfo_start = &avctx->extradata[8];
123     }
124     return 1;
125 }
126
127 static av_cold int flac_decode_init(AVCodecContext *avctx)
128 {
129     enum FLACExtradataFormat format;
130     uint8_t *streaminfo;
131     FLACContext *s = avctx->priv_data;
132     s->avctx = avctx;
133
134     avctx->sample_fmt = SAMPLE_FMT_S16;
135
136     /* for now, the raw FLAC header is allowed to be passed to the decoder as
137        frame data instead of extradata. */
138     if (!avctx->extradata)
139         return 0;
140
141     if (!ff_flac_is_extradata_valid(avctx, &format, &streaminfo))
142         return -1;
143
144         /* initialize based on the demuxer-supplied streamdata header */
145             ff_flac_parse_streaminfo(avctx, (FLACStreaminfo *)s,
146                                      streaminfo);
147             allocate_buffers(s);
148
149     return 0;
150 }
151
152 static void dump_headers(AVCodecContext *avctx, FLACStreaminfo *s)
153 {
154     av_log(avctx, AV_LOG_DEBUG, "  Blocksize: %d .. %d\n", s->min_blocksize,
155            s->max_blocksize);
156     av_log(avctx, AV_LOG_DEBUG, "  Max Framesize: %d\n", s->max_framesize);
157     av_log(avctx, AV_LOG_DEBUG, "  Samplerate: %d\n", s->samplerate);
158     av_log(avctx, AV_LOG_DEBUG, "  Channels: %d\n", s->channels);
159     av_log(avctx, AV_LOG_DEBUG, "  Bits: %d\n", s->bps);
160 }
161
162 static void allocate_buffers(FLACContext *s)
163 {
164     int i;
165
166     assert(s->max_blocksize);
167
168     if (s->max_framesize == 0 && s->max_blocksize) {
169         // FIXME header overhead
170         s->max_framesize= (s->channels * s->bps * s->max_blocksize + 7)/ 8;
171     }
172
173     for (i = 0; i < s->channels; i++) {
174         s->decoded[i] = av_realloc(s->decoded[i],
175                                    sizeof(int32_t)*s->max_blocksize);
176     }
177
178     if (s->allocated_bitstream_size < s->max_framesize)
179         s->bitstream= av_fast_realloc(s->bitstream,
180                                       &s->allocated_bitstream_size,
181                                       s->max_framesize);
182 }
183
184 void ff_flac_parse_streaminfo(AVCodecContext *avctx, struct FLACStreaminfo *s,
185                               const uint8_t *buffer)
186 {
187     GetBitContext gb;
188     init_get_bits(&gb, buffer, FLAC_STREAMINFO_SIZE*8);
189
190     /* mandatory streaminfo */
191     s->min_blocksize = get_bits(&gb, 16);
192     s->max_blocksize = get_bits(&gb, 16);
193
194     skip_bits(&gb, 24); /* skip min frame size */
195     s->max_framesize = get_bits_long(&gb, 24);
196
197     s->samplerate = get_bits_long(&gb, 20);
198     s->channels = get_bits(&gb, 3) + 1;
199     s->bps = get_bits(&gb, 5) + 1;
200
201     avctx->channels = s->channels;
202     avctx->sample_rate = s->samplerate;
203     avctx->bits_per_raw_sample = s->bps;
204     if (s->bps > 16)
205         avctx->sample_fmt = SAMPLE_FMT_S32;
206     else
207         avctx->sample_fmt = SAMPLE_FMT_S16;
208
209     s->samples  = get_bits_long(&gb, 32) << 4;
210     s->samples |= get_bits_long(&gb, 4);
211
212     skip_bits(&gb, 64); /* md5 sum */
213     skip_bits(&gb, 64); /* md5 sum */
214
215     dump_headers(avctx, s);
216 }
217
218 /**
219  * Parse a list of metadata blocks. This list of blocks must begin with
220  * the fLaC marker.
221  * @param s the flac decoding context containing the gb bit reader used to
222  *          parse metadata
223  * @return 1 if some metadata was read, 0 if no fLaC marker was found
224  */
225 static int metadata_parse(FLACContext *s)
226 {
227     int i, metadata_last, metadata_type, metadata_size, streaminfo_updated=0;
228     int initial_pos= get_bits_count(&s->gb);
229
230     if (show_bits_long(&s->gb, 32) == MKBETAG('f','L','a','C')) {
231         skip_bits(&s->gb, 32);
232
233         do {
234             metadata_last = get_bits1(&s->gb);
235             metadata_type = get_bits(&s->gb, 7);
236             metadata_size = get_bits_long(&s->gb, 24);
237
238             if (get_bits_count(&s->gb) + 8*metadata_size > s->gb.size_in_bits) {
239                 skip_bits_long(&s->gb, initial_pos - get_bits_count(&s->gb));
240                 break;
241             }
242
243             if (metadata_size) {
244                 switch (metadata_type) {
245                 case FLAC_METADATA_TYPE_STREAMINFO:
246                     ff_flac_parse_streaminfo(s->avctx, (FLACStreaminfo *)s,
247                                              s->gb.buffer+get_bits_count(&s->gb)/8);
248                     streaminfo_updated = 1;
249
250                 default:
251                     for (i = 0; i < metadata_size; i++)
252                         skip_bits(&s->gb, 8);
253                 }
254             }
255         } while (!metadata_last);
256
257         if (streaminfo_updated)
258             allocate_buffers(s);
259         return 1;
260     }
261     return 0;
262 }
263
264 static int decode_residuals(FLACContext *s, int channel, int pred_order)
265 {
266     int i, tmp, partition, method_type, rice_order;
267     int sample = 0, samples;
268
269     method_type = get_bits(&s->gb, 2);
270     if (method_type > 1) {
271         av_log(s->avctx, AV_LOG_ERROR, "illegal residual coding method %d\n",
272                method_type);
273         return -1;
274     }
275
276     rice_order = get_bits(&s->gb, 4);
277
278     samples= s->blocksize >> rice_order;
279     if (pred_order > samples) {
280         av_log(s->avctx, AV_LOG_ERROR, "invalid predictor order: %i > %i\n",
281                pred_order, samples);
282         return -1;
283     }
284
285     sample=
286     i= pred_order;
287     for (partition = 0; partition < (1 << rice_order); partition++) {
288         tmp = get_bits(&s->gb, method_type == 0 ? 4 : 5);
289         if (tmp == (method_type == 0 ? 15 : 31)) {
290             tmp = get_bits(&s->gb, 5);
291             for (; i < samples; i++, sample++)
292                 s->decoded[channel][sample] = get_sbits(&s->gb, tmp);
293         } else {
294             for (; i < samples; i++, sample++) {
295                 s->decoded[channel][sample] = get_sr_golomb_flac(&s->gb, tmp, INT_MAX, 0);
296             }
297         }
298         i= 0;
299     }
300
301     return 0;
302 }
303
304 static int decode_subframe_fixed(FLACContext *s, int channel, int pred_order)
305 {
306     const int blocksize = s->blocksize;
307     int32_t *decoded = s->decoded[channel];
308     int av_uninit(a), av_uninit(b), av_uninit(c), av_uninit(d), i;
309
310     /* warm up samples */
311     for (i = 0; i < pred_order; i++) {
312         decoded[i] = get_sbits(&s->gb, s->curr_bps);
313     }
314
315     if (decode_residuals(s, channel, pred_order) < 0)
316         return -1;
317
318     if (pred_order > 0)
319         a = decoded[pred_order-1];
320     if (pred_order > 1)
321         b = a - decoded[pred_order-2];
322     if (pred_order > 2)
323         c = b - decoded[pred_order-2] + decoded[pred_order-3];
324     if (pred_order > 3)
325         d = c - decoded[pred_order-2] + 2*decoded[pred_order-3] - decoded[pred_order-4];
326
327     switch (pred_order) {
328     case 0:
329         break;
330     case 1:
331         for (i = pred_order; i < blocksize; i++)
332             decoded[i] = a += decoded[i];
333         break;
334     case 2:
335         for (i = pred_order; i < blocksize; i++)
336             decoded[i] = a += b += decoded[i];
337         break;
338     case 3:
339         for (i = pred_order; i < blocksize; i++)
340             decoded[i] = a += b += c += decoded[i];
341         break;
342     case 4:
343         for (i = pred_order; i < blocksize; i++)
344             decoded[i] = a += b += c += d += decoded[i];
345         break;
346     default:
347         av_log(s->avctx, AV_LOG_ERROR, "illegal pred order %d\n", pred_order);
348         return -1;
349     }
350
351     return 0;
352 }
353
354 static int decode_subframe_lpc(FLACContext *s, int channel, int pred_order)
355 {
356     int i, j;
357     int coeff_prec, qlevel;
358     int coeffs[pred_order];
359     int32_t *decoded = s->decoded[channel];
360
361     /* warm up samples */
362     for (i = 0; i < pred_order; i++) {
363         decoded[i] = get_sbits(&s->gb, s->curr_bps);
364     }
365
366     coeff_prec = get_bits(&s->gb, 4) + 1;
367     if (coeff_prec == 16) {
368         av_log(s->avctx, AV_LOG_ERROR, "invalid coeff precision\n");
369         return -1;
370     }
371     qlevel = get_sbits(&s->gb, 5);
372     if (qlevel < 0) {
373         av_log(s->avctx, AV_LOG_ERROR, "qlevel %d not supported, maybe buggy stream\n",
374                qlevel);
375         return -1;
376     }
377
378     for (i = 0; i < pred_order; i++) {
379         coeffs[i] = get_sbits(&s->gb, coeff_prec);
380     }
381
382     if (decode_residuals(s, channel, pred_order) < 0)
383         return -1;
384
385     if (s->bps > 16) {
386         int64_t sum;
387         for (i = pred_order; i < s->blocksize; i++) {
388             sum = 0;
389             for (j = 0; j < pred_order; j++)
390                 sum += (int64_t)coeffs[j] * decoded[i-j-1];
391             decoded[i] += sum >> qlevel;
392         }
393     } else {
394         for (i = pred_order; i < s->blocksize-1; i += 2) {
395             int c;
396             int d = decoded[i-pred_order];
397             int s0 = 0, s1 = 0;
398             for (j = pred_order-1; j > 0; j--) {
399                 c = coeffs[j];
400                 s0 += c*d;
401                 d = decoded[i-j];
402                 s1 += c*d;
403             }
404             c = coeffs[0];
405             s0 += c*d;
406             d = decoded[i] += s0 >> qlevel;
407             s1 += c*d;
408             decoded[i+1] += s1 >> qlevel;
409         }
410         if (i < s->blocksize) {
411             int sum = 0;
412             for (j = 0; j < pred_order; j++)
413                 sum += coeffs[j] * decoded[i-j-1];
414             decoded[i] += sum >> qlevel;
415         }
416     }
417
418     return 0;
419 }
420
421 static inline int decode_subframe(FLACContext *s, int channel)
422 {
423     int type, wasted = 0;
424     int i, tmp;
425
426     s->curr_bps = s->bps;
427     if (channel == 0) {
428         if (s->decorrelation == RIGHT_SIDE)
429             s->curr_bps++;
430     } else {
431         if (s->decorrelation == LEFT_SIDE || s->decorrelation == MID_SIDE)
432             s->curr_bps++;
433     }
434
435     if (get_bits1(&s->gb)) {
436         av_log(s->avctx, AV_LOG_ERROR, "invalid subframe padding\n");
437         return -1;
438     }
439     type = get_bits(&s->gb, 6);
440
441     if (get_bits1(&s->gb)) {
442         wasted = 1;
443         while (!get_bits1(&s->gb))
444             wasted++;
445         s->curr_bps -= wasted;
446     }
447
448 //FIXME use av_log2 for types
449     if (type == 0) {
450         tmp = get_sbits(&s->gb, s->curr_bps);
451         for (i = 0; i < s->blocksize; i++)
452             s->decoded[channel][i] = tmp;
453     } else if (type == 1) {
454         for (i = 0; i < s->blocksize; i++)
455             s->decoded[channel][i] = get_sbits(&s->gb, s->curr_bps);
456     } else if ((type >= 8) && (type <= 12)) {
457         if (decode_subframe_fixed(s, channel, type & ~0x8) < 0)
458             return -1;
459     } else if (type >= 32) {
460         if (decode_subframe_lpc(s, channel, (type & ~0x20)+1) < 0)
461             return -1;
462     } else {
463         av_log(s->avctx, AV_LOG_ERROR, "invalid coding type\n");
464         return -1;
465     }
466
467     if (wasted) {
468         int i;
469         for (i = 0; i < s->blocksize; i++)
470             s->decoded[channel][i] <<= wasted;
471     }
472
473     return 0;
474 }
475
476 static int decode_frame(FLACContext *s, int alloc_data_size)
477 {
478     int blocksize_code, sample_rate_code, sample_size_code, assignment, i, crc8;
479     int decorrelation, bps, blocksize, samplerate;
480
481     blocksize_code = get_bits(&s->gb, 4);
482
483     sample_rate_code = get_bits(&s->gb, 4);
484
485     assignment = get_bits(&s->gb, 4); /* channel assignment */
486     if (assignment < 8 && s->channels == assignment+1)
487         decorrelation = INDEPENDENT;
488     else if (assignment >=8 && assignment < 11 && s->channels == 2)
489         decorrelation = LEFT_SIDE + assignment - 8;
490     else {
491         av_log(s->avctx, AV_LOG_ERROR, "unsupported channel assignment %d (channels=%d)\n",
492                assignment, s->channels);
493         return -1;
494     }
495
496     sample_size_code = get_bits(&s->gb, 3);
497     if (sample_size_code == 0)
498         bps= s->bps;
499     else if ((sample_size_code != 3) && (sample_size_code != 7))
500         bps = sample_size_table[sample_size_code];
501     else {
502         av_log(s->avctx, AV_LOG_ERROR, "invalid sample size code (%d)\n",
503                sample_size_code);
504         return -1;
505     }
506     if (bps > 16) {
507         s->avctx->sample_fmt = SAMPLE_FMT_S32;
508         s->sample_shift = 32 - bps;
509         s->is32 = 1;
510     } else {
511         s->avctx->sample_fmt = SAMPLE_FMT_S16;
512         s->sample_shift = 16 - bps;
513         s->is32 = 0;
514     }
515     s->bps = s->avctx->bits_per_raw_sample = bps;
516
517     if (get_bits1(&s->gb)) {
518         av_log(s->avctx, AV_LOG_ERROR, "broken stream, invalid padding\n");
519         return -1;
520     }
521
522     if (get_utf8(&s->gb) < 0) {
523         av_log(s->avctx, AV_LOG_ERROR, "utf8 fscked\n");
524         return -1;
525     }
526
527     if (blocksize_code == 0)
528         blocksize = s->min_blocksize;
529     else if (blocksize_code == 6)
530         blocksize = get_bits(&s->gb, 8)+1;
531     else if (blocksize_code == 7)
532         blocksize = get_bits(&s->gb, 16)+1;
533     else
534         blocksize = blocksize_table[blocksize_code];
535
536     if (blocksize > s->max_blocksize) {
537         av_log(s->avctx, AV_LOG_ERROR, "blocksize %d > %d\n", blocksize,
538                s->max_blocksize);
539         return -1;
540     }
541
542     if (blocksize * s->channels * sizeof(int16_t) > alloc_data_size)
543         return -1;
544
545     if (sample_rate_code == 0)
546         samplerate= s->samplerate;
547     else if (sample_rate_code < 12)
548         samplerate = sample_rate_table[sample_rate_code];
549     else if (sample_rate_code == 12)
550         samplerate = get_bits(&s->gb, 8) * 1000;
551     else if (sample_rate_code == 13)
552         samplerate = get_bits(&s->gb, 16);
553     else if (sample_rate_code == 14)
554         samplerate = get_bits(&s->gb, 16) * 10;
555     else {
556         av_log(s->avctx, AV_LOG_ERROR, "illegal sample rate code %d\n",
557                sample_rate_code);
558         return -1;
559     }
560
561     skip_bits(&s->gb, 8);
562     crc8 = av_crc(av_crc_get_table(AV_CRC_8_ATM), 0,
563                   s->gb.buffer, get_bits_count(&s->gb)/8);
564     if (crc8) {
565         av_log(s->avctx, AV_LOG_ERROR, "header crc mismatch crc=%2X\n", crc8);
566         return -1;
567     }
568
569     s->blocksize    = blocksize;
570     s->samplerate   = samplerate;
571     s->bps          = bps;
572     s->decorrelation= decorrelation;
573
574 //    dump_headers(s->avctx, (FLACStreaminfo *)s);
575
576     /* subframes */
577     for (i = 0; i < s->channels; i++) {
578         if (decode_subframe(s, i) < 0)
579             return -1;
580     }
581
582     align_get_bits(&s->gb);
583
584     /* frame footer */
585     skip_bits(&s->gb, 16); /* data crc */
586
587     return 0;
588 }
589
590 static int flac_decode_frame(AVCodecContext *avctx,
591                             void *data, int *data_size,
592                             const uint8_t *buf, int buf_size)
593 {
594     FLACContext *s = avctx->priv_data;
595     int tmp = 0, i, j = 0, input_buf_size = 0;
596     int16_t *samples_16 = data;
597     int32_t *samples_32 = data;
598     int alloc_data_size= *data_size;
599
600     *data_size=0;
601
602     if (s->max_framesize == 0) {
603         s->max_framesize= FFMAX(4, buf_size); // should hopefully be enough for the first header
604         s->bitstream= av_fast_realloc(s->bitstream, &s->allocated_bitstream_size, s->max_framesize);
605     }
606
607     if (1 && s->max_framesize) { //FIXME truncated
608         if (s->bitstream_size < 4 || AV_RL32(s->bitstream) != MKTAG('f','L','a','C'))
609             buf_size= FFMIN(buf_size, s->max_framesize - FFMIN(s->bitstream_size, s->max_framesize));
610         input_buf_size= buf_size;
611
612         if (s->bitstream_size + buf_size < buf_size || s->bitstream_index + s->bitstream_size + buf_size < s->bitstream_index)
613             return -1;
614
615         if (s->allocated_bitstream_size < s->bitstream_size + buf_size)
616             s->bitstream= av_fast_realloc(s->bitstream, &s->allocated_bitstream_size, s->bitstream_size + buf_size);
617
618         if (s->bitstream_index + s->bitstream_size + buf_size > s->allocated_bitstream_size) {
619             memmove(s->bitstream, &s->bitstream[s->bitstream_index],
620                     s->bitstream_size);
621             s->bitstream_index=0;
622         }
623         memcpy(&s->bitstream[s->bitstream_index + s->bitstream_size],
624                buf, buf_size);
625         buf= &s->bitstream[s->bitstream_index];
626         buf_size += s->bitstream_size;
627         s->bitstream_size= buf_size;
628
629         if (buf_size < s->max_framesize && input_buf_size) {
630             return input_buf_size;
631         }
632     }
633
634     init_get_bits(&s->gb, buf, buf_size*8);
635
636     if (metadata_parse(s))
637         goto end;
638
639     tmp = show_bits(&s->gb, 16);
640     if ((tmp & 0xFFFE) != 0xFFF8) {
641         av_log(s->avctx, AV_LOG_ERROR, "FRAME HEADER not here\n");
642         while (get_bits_count(&s->gb)/8+2 < buf_size && (show_bits(&s->gb, 16) & 0xFFFE) != 0xFFF8)
643             skip_bits(&s->gb, 8);
644         goto end; // we may not have enough bits left to decode a frame, so try next time
645     }
646     skip_bits(&s->gb, 16);
647     if (decode_frame(s, alloc_data_size) < 0) {
648         av_log(s->avctx, AV_LOG_ERROR, "decode_frame() failed\n");
649         s->bitstream_size=0;
650         s->bitstream_index=0;
651         return -1;
652     }
653
654 #define DECORRELATE(left, right)\
655             assert(s->channels == 2);\
656             for (i = 0; i < s->blocksize; i++) {\
657                 int a= s->decoded[0][i];\
658                 int b= s->decoded[1][i];\
659                 if (s->is32) {\
660                     *samples_32++ = (left)  << s->sample_shift;\
661                     *samples_32++ = (right) << s->sample_shift;\
662                 } else {\
663                     *samples_16++ = (left)  << s->sample_shift;\
664                     *samples_16++ = (right) << s->sample_shift;\
665                 }\
666             }\
667             break;
668
669     switch (s->decorrelation) {
670     case INDEPENDENT:
671         for (j = 0; j < s->blocksize; j++) {
672             for (i = 0; i < s->channels; i++) {
673                 if (s->is32)
674                     *samples_32++ = s->decoded[i][j] << s->sample_shift;
675                 else
676                     *samples_16++ = s->decoded[i][j] << s->sample_shift;
677             }
678         }
679         break;
680     case LEFT_SIDE:
681         DECORRELATE(a,a-b)
682     case RIGHT_SIDE:
683         DECORRELATE(a+b,b)
684     case MID_SIDE:
685         DECORRELATE( (a-=b>>1) + b, a)
686     }
687
688     *data_size = s->blocksize * s->channels * (s->is32 ? 4 : 2);
689
690 end:
691     i= (get_bits_count(&s->gb)+7)/8;
692     if (i > buf_size) {
693         av_log(s->avctx, AV_LOG_ERROR, "overread: %d\n", i - buf_size);
694         s->bitstream_size=0;
695         s->bitstream_index=0;
696         return -1;
697     }
698
699     if (s->bitstream_size) {
700         s->bitstream_index += i;
701         s->bitstream_size  -= i;
702         return input_buf_size;
703     } else
704         return i;
705 }
706
707 static av_cold int flac_decode_close(AVCodecContext *avctx)
708 {
709     FLACContext *s = avctx->priv_data;
710     int i;
711
712     for (i = 0; i < s->channels; i++) {
713         av_freep(&s->decoded[i]);
714     }
715     av_freep(&s->bitstream);
716
717     return 0;
718 }
719
720 static void flac_flush(AVCodecContext *avctx)
721 {
722     FLACContext *s = avctx->priv_data;
723
724     s->bitstream_size=
725     s->bitstream_index= 0;
726 }
727
728 AVCodec flac_decoder = {
729     "flac",
730     CODEC_TYPE_AUDIO,
731     CODEC_ID_FLAC,
732     sizeof(FLACContext),
733     flac_decode_init,
734     NULL,
735     flac_decode_close,
736     flac_decode_frame,
737     CODEC_CAP_DELAY,
738     .flush= flac_flush,
739     .long_name= NULL_IF_CONFIG_SMALL("FLAC (Free Lossless Audio Codec)"),
740 };