]> git.sesse.net Git - ffmpeg/blob - libavcodec/flacdec.c
d6e0c8620faf5bcfe48af7c2fd961eb13120f316
[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 static int metadata_parse(FLACContext *s);
100
101 static av_cold int flac_decode_init(AVCodecContext *avctx)
102 {
103     FLACContext *s = avctx->priv_data;
104     s->avctx = avctx;
105
106     avctx->sample_fmt = SAMPLE_FMT_S16;
107
108     if (avctx->extradata_size > 4) {
109         /* initialize based on the demuxer-supplied streamdata header */
110         if (avctx->extradata_size == FLAC_STREAMINFO_SIZE) {
111             ff_flac_parse_streaminfo(avctx, (FLACStreaminfo *)s,
112                                      avctx->extradata);
113             allocate_buffers(s);
114         } else {
115             init_get_bits(&s->gb, avctx->extradata, avctx->extradata_size*8);
116             metadata_parse(s);
117         }
118     }
119
120     return 0;
121 }
122
123 static void dump_headers(AVCodecContext *avctx, FLACStreaminfo *s)
124 {
125     av_log(avctx, AV_LOG_DEBUG, "  Blocksize: %d .. %d\n", s->min_blocksize,
126            s->max_blocksize);
127     av_log(avctx, AV_LOG_DEBUG, "  Max Framesize: %d\n", s->max_framesize);
128     av_log(avctx, AV_LOG_DEBUG, "  Samplerate: %d\n", s->samplerate);
129     av_log(avctx, AV_LOG_DEBUG, "  Channels: %d\n", s->channels);
130     av_log(avctx, AV_LOG_DEBUG, "  Bits: %d\n", s->bps);
131 }
132
133 static void allocate_buffers(FLACContext *s)
134 {
135     int i;
136
137     assert(s->max_blocksize);
138
139     if (s->max_framesize == 0 && s->max_blocksize) {
140         // FIXME header overhead
141         s->max_framesize= (s->channels * s->bps * s->max_blocksize + 7)/ 8;
142     }
143
144     for (i = 0; i < s->channels; i++) {
145         s->decoded[i] = av_realloc(s->decoded[i],
146                                    sizeof(int32_t)*s->max_blocksize);
147     }
148
149     if (s->allocated_bitstream_size < s->max_framesize)
150         s->bitstream= av_fast_realloc(s->bitstream,
151                                       &s->allocated_bitstream_size,
152                                       s->max_framesize);
153 }
154
155 void ff_flac_parse_streaminfo(AVCodecContext *avctx, struct FLACStreaminfo *s,
156                               const uint8_t *buffer)
157 {
158     GetBitContext gb;
159     init_get_bits(&gb, buffer, FLAC_STREAMINFO_SIZE*8);
160
161     /* mandatory streaminfo */
162     s->min_blocksize = get_bits(&gb, 16);
163     s->max_blocksize = get_bits(&gb, 16);
164
165     skip_bits(&gb, 24); /* skip min frame size */
166     s->max_framesize = get_bits_long(&gb, 24);
167
168     s->samplerate = get_bits_long(&gb, 20);
169     s->channels = get_bits(&gb, 3) + 1;
170     s->bps = get_bits(&gb, 5) + 1;
171
172     avctx->channels = s->channels;
173     avctx->sample_rate = s->samplerate;
174     avctx->bits_per_raw_sample = s->bps;
175     if (s->bps > 16)
176         avctx->sample_fmt = SAMPLE_FMT_S32;
177     else
178         avctx->sample_fmt = SAMPLE_FMT_S16;
179
180     s->samples  = get_bits_long(&gb, 32) << 4;
181     s->samples |= get_bits_long(&gb, 4);
182
183     skip_bits(&gb, 64); /* md5 sum */
184     skip_bits(&gb, 64); /* md5 sum */
185
186     dump_headers(avctx, s);
187 }
188
189 /**
190  * Parse a list of metadata blocks. This list of blocks must begin with
191  * the fLaC marker.
192  * @param s the flac decoding context containing the gb bit reader used to
193  *          parse metadata
194  * @return 1 if some metadata was read, 0 if no fLaC marker was found
195  */
196 static int metadata_parse(FLACContext *s)
197 {
198     int i, metadata_last, metadata_type, metadata_size, streaminfo_updated=0;
199     int initial_pos= get_bits_count(&s->gb);
200
201     if (show_bits_long(&s->gb, 32) == MKBETAG('f','L','a','C')) {
202         skip_bits(&s->gb, 32);
203
204         do {
205             metadata_last = get_bits1(&s->gb);
206             metadata_type = get_bits(&s->gb, 7);
207             metadata_size = get_bits_long(&s->gb, 24);
208
209             if (get_bits_count(&s->gb) + 8*metadata_size > s->gb.size_in_bits) {
210                 skip_bits_long(&s->gb, initial_pos - get_bits_count(&s->gb));
211                 break;
212             }
213
214             if (metadata_size) {
215                 switch (metadata_type) {
216                 case FLAC_METADATA_TYPE_STREAMINFO:
217                     ff_flac_parse_streaminfo(s->avctx, (FLACStreaminfo *)s,
218                                              s->gb.buffer+get_bits_count(&s->gb)/8);
219                     streaminfo_updated = 1;
220
221                 default:
222                     for (i = 0; i < metadata_size; i++)
223                         skip_bits(&s->gb, 8);
224                 }
225             }
226         } while (!metadata_last);
227
228         if (streaminfo_updated)
229             allocate_buffers(s);
230         return 1;
231     }
232     return 0;
233 }
234
235 static int decode_residuals(FLACContext *s, int channel, int pred_order)
236 {
237     int i, tmp, partition, method_type, rice_order;
238     int sample = 0, samples;
239
240     method_type = get_bits(&s->gb, 2);
241     if (method_type > 1) {
242         av_log(s->avctx, AV_LOG_ERROR, "illegal residual coding method %d\n",
243                method_type);
244         return -1;
245     }
246
247     rice_order = get_bits(&s->gb, 4);
248
249     samples= s->blocksize >> rice_order;
250     if (pred_order > samples) {
251         av_log(s->avctx, AV_LOG_ERROR, "invalid predictor order: %i > %i\n",
252                pred_order, samples);
253         return -1;
254     }
255
256     sample=
257     i= pred_order;
258     for (partition = 0; partition < (1 << rice_order); partition++) {
259         tmp = get_bits(&s->gb, method_type == 0 ? 4 : 5);
260         if (tmp == (method_type == 0 ? 15 : 31)) {
261             tmp = get_bits(&s->gb, 5);
262             for (; i < samples; i++, sample++)
263                 s->decoded[channel][sample] = get_sbits(&s->gb, tmp);
264         } else {
265             for (; i < samples; i++, sample++) {
266                 s->decoded[channel][sample] = get_sr_golomb_flac(&s->gb, tmp, INT_MAX, 0);
267             }
268         }
269         i= 0;
270     }
271
272     return 0;
273 }
274
275 static int decode_subframe_fixed(FLACContext *s, int channel, int pred_order)
276 {
277     const int blocksize = s->blocksize;
278     int32_t *decoded = s->decoded[channel];
279     int av_uninit(a), av_uninit(b), av_uninit(c), av_uninit(d), i;
280
281     /* warm up samples */
282     for (i = 0; i < pred_order; i++) {
283         decoded[i] = get_sbits(&s->gb, s->curr_bps);
284     }
285
286     if (decode_residuals(s, channel, pred_order) < 0)
287         return -1;
288
289     if (pred_order > 0)
290         a = decoded[pred_order-1];
291     if (pred_order > 1)
292         b = a - decoded[pred_order-2];
293     if (pred_order > 2)
294         c = b - decoded[pred_order-2] + decoded[pred_order-3];
295     if (pred_order > 3)
296         d = c - decoded[pred_order-2] + 2*decoded[pred_order-3] - decoded[pred_order-4];
297
298     switch (pred_order) {
299     case 0:
300         break;
301     case 1:
302         for (i = pred_order; i < blocksize; i++)
303             decoded[i] = a += decoded[i];
304         break;
305     case 2:
306         for (i = pred_order; i < blocksize; i++)
307             decoded[i] = a += b += decoded[i];
308         break;
309     case 3:
310         for (i = pred_order; i < blocksize; i++)
311             decoded[i] = a += b += c += decoded[i];
312         break;
313     case 4:
314         for (i = pred_order; i < blocksize; i++)
315             decoded[i] = a += b += c += d += decoded[i];
316         break;
317     default:
318         av_log(s->avctx, AV_LOG_ERROR, "illegal pred order %d\n", pred_order);
319         return -1;
320     }
321
322     return 0;
323 }
324
325 static int decode_subframe_lpc(FLACContext *s, int channel, int pred_order)
326 {
327     int i, j;
328     int coeff_prec, qlevel;
329     int coeffs[pred_order];
330     int32_t *decoded = s->decoded[channel];
331
332     /* warm up samples */
333     for (i = 0; i < pred_order; i++) {
334         decoded[i] = get_sbits(&s->gb, s->curr_bps);
335     }
336
337     coeff_prec = get_bits(&s->gb, 4) + 1;
338     if (coeff_prec == 16) {
339         av_log(s->avctx, AV_LOG_ERROR, "invalid coeff precision\n");
340         return -1;
341     }
342     qlevel = get_sbits(&s->gb, 5);
343     if (qlevel < 0) {
344         av_log(s->avctx, AV_LOG_ERROR, "qlevel %d not supported, maybe buggy stream\n",
345                qlevel);
346         return -1;
347     }
348
349     for (i = 0; i < pred_order; i++) {
350         coeffs[i] = get_sbits(&s->gb, coeff_prec);
351     }
352
353     if (decode_residuals(s, channel, pred_order) < 0)
354         return -1;
355
356     if (s->bps > 16) {
357         int64_t sum;
358         for (i = pred_order; i < s->blocksize; i++) {
359             sum = 0;
360             for (j = 0; j < pred_order; j++)
361                 sum += (int64_t)coeffs[j] * decoded[i-j-1];
362             decoded[i] += sum >> qlevel;
363         }
364     } else {
365         for (i = pred_order; i < s->blocksize-1; i += 2) {
366             int c;
367             int d = decoded[i-pred_order];
368             int s0 = 0, s1 = 0;
369             for (j = pred_order-1; j > 0; j--) {
370                 c = coeffs[j];
371                 s0 += c*d;
372                 d = decoded[i-j];
373                 s1 += c*d;
374             }
375             c = coeffs[0];
376             s0 += c*d;
377             d = decoded[i] += s0 >> qlevel;
378             s1 += c*d;
379             decoded[i+1] += s1 >> qlevel;
380         }
381         if (i < s->blocksize) {
382             int sum = 0;
383             for (j = 0; j < pred_order; j++)
384                 sum += coeffs[j] * decoded[i-j-1];
385             decoded[i] += sum >> qlevel;
386         }
387     }
388
389     return 0;
390 }
391
392 static inline int decode_subframe(FLACContext *s, int channel)
393 {
394     int type, wasted = 0;
395     int i, tmp;
396
397     s->curr_bps = s->bps;
398     if (channel == 0) {
399         if (s->decorrelation == RIGHT_SIDE)
400             s->curr_bps++;
401     } else {
402         if (s->decorrelation == LEFT_SIDE || s->decorrelation == MID_SIDE)
403             s->curr_bps++;
404     }
405
406     if (get_bits1(&s->gb)) {
407         av_log(s->avctx, AV_LOG_ERROR, "invalid subframe padding\n");
408         return -1;
409     }
410     type = get_bits(&s->gb, 6);
411
412     if (get_bits1(&s->gb)) {
413         wasted = 1;
414         while (!get_bits1(&s->gb))
415             wasted++;
416         s->curr_bps -= wasted;
417     }
418
419 //FIXME use av_log2 for types
420     if (type == 0) {
421         tmp = get_sbits(&s->gb, s->curr_bps);
422         for (i = 0; i < s->blocksize; i++)
423             s->decoded[channel][i] = tmp;
424     } else if (type == 1) {
425         for (i = 0; i < s->blocksize; i++)
426             s->decoded[channel][i] = get_sbits(&s->gb, s->curr_bps);
427     } else if ((type >= 8) && (type <= 12)) {
428         if (decode_subframe_fixed(s, channel, type & ~0x8) < 0)
429             return -1;
430     } else if (type >= 32) {
431         if (decode_subframe_lpc(s, channel, (type & ~0x20)+1) < 0)
432             return -1;
433     } else {
434         av_log(s->avctx, AV_LOG_ERROR, "invalid coding type\n");
435         return -1;
436     }
437
438     if (wasted) {
439         int i;
440         for (i = 0; i < s->blocksize; i++)
441             s->decoded[channel][i] <<= wasted;
442     }
443
444     return 0;
445 }
446
447 static int decode_frame(FLACContext *s, int alloc_data_size)
448 {
449     int blocksize_code, sample_rate_code, sample_size_code, assignment, i, crc8;
450     int decorrelation, bps, blocksize, samplerate;
451
452     blocksize_code = get_bits(&s->gb, 4);
453
454     sample_rate_code = get_bits(&s->gb, 4);
455
456     assignment = get_bits(&s->gb, 4); /* channel assignment */
457     if (assignment < 8 && s->channels == assignment+1)
458         decorrelation = INDEPENDENT;
459     else if (assignment >=8 && assignment < 11 && s->channels == 2)
460         decorrelation = LEFT_SIDE + assignment - 8;
461     else {
462         av_log(s->avctx, AV_LOG_ERROR, "unsupported channel assignment %d (channels=%d)\n",
463                assignment, s->channels);
464         return -1;
465     }
466
467     sample_size_code = get_bits(&s->gb, 3);
468     if (sample_size_code == 0)
469         bps= s->bps;
470     else if ((sample_size_code != 3) && (sample_size_code != 7))
471         bps = sample_size_table[sample_size_code];
472     else {
473         av_log(s->avctx, AV_LOG_ERROR, "invalid sample size code (%d)\n",
474                sample_size_code);
475         return -1;
476     }
477     if (bps > 16) {
478         s->avctx->sample_fmt = SAMPLE_FMT_S32;
479         s->sample_shift = 32 - bps;
480         s->is32 = 1;
481     } else {
482         s->avctx->sample_fmt = SAMPLE_FMT_S16;
483         s->sample_shift = 16 - bps;
484         s->is32 = 0;
485     }
486     s->bps = s->avctx->bits_per_raw_sample = bps;
487
488     if (get_bits1(&s->gb)) {
489         av_log(s->avctx, AV_LOG_ERROR, "broken stream, invalid padding\n");
490         return -1;
491     }
492
493     if (get_utf8(&s->gb) < 0) {
494         av_log(s->avctx, AV_LOG_ERROR, "utf8 fscked\n");
495         return -1;
496     }
497
498     if (blocksize_code == 0)
499         blocksize = s->min_blocksize;
500     else if (blocksize_code == 6)
501         blocksize = get_bits(&s->gb, 8)+1;
502     else if (blocksize_code == 7)
503         blocksize = get_bits(&s->gb, 16)+1;
504     else
505         blocksize = blocksize_table[blocksize_code];
506
507     if (blocksize > s->max_blocksize) {
508         av_log(s->avctx, AV_LOG_ERROR, "blocksize %d > %d\n", blocksize,
509                s->max_blocksize);
510         return -1;
511     }
512
513     if (blocksize * s->channels * sizeof(int16_t) > alloc_data_size)
514         return -1;
515
516     if (sample_rate_code == 0)
517         samplerate= s->samplerate;
518     else if (sample_rate_code < 12)
519         samplerate = sample_rate_table[sample_rate_code];
520     else if (sample_rate_code == 12)
521         samplerate = get_bits(&s->gb, 8) * 1000;
522     else if (sample_rate_code == 13)
523         samplerate = get_bits(&s->gb, 16);
524     else if (sample_rate_code == 14)
525         samplerate = get_bits(&s->gb, 16) * 10;
526     else {
527         av_log(s->avctx, AV_LOG_ERROR, "illegal sample rate code %d\n",
528                sample_rate_code);
529         return -1;
530     }
531
532     skip_bits(&s->gb, 8);
533     crc8 = av_crc(av_crc_get_table(AV_CRC_8_ATM), 0,
534                   s->gb.buffer, get_bits_count(&s->gb)/8);
535     if (crc8) {
536         av_log(s->avctx, AV_LOG_ERROR, "header crc mismatch crc=%2X\n", crc8);
537         return -1;
538     }
539
540     s->blocksize    = blocksize;
541     s->samplerate   = samplerate;
542     s->bps          = bps;
543     s->decorrelation= decorrelation;
544
545 //    dump_headers(s->avctx, (FLACStreaminfo *)s);
546
547     /* subframes */
548     for (i = 0; i < s->channels; i++) {
549         if (decode_subframe(s, i) < 0)
550             return -1;
551     }
552
553     align_get_bits(&s->gb);
554
555     /* frame footer */
556     skip_bits(&s->gb, 16); /* data crc */
557
558     return 0;
559 }
560
561 static int flac_decode_frame(AVCodecContext *avctx,
562                             void *data, int *data_size,
563                             const uint8_t *buf, int buf_size)
564 {
565     FLACContext *s = avctx->priv_data;
566     int tmp = 0, i, j = 0, input_buf_size = 0;
567     int16_t *samples_16 = data;
568     int32_t *samples_32 = data;
569     int alloc_data_size= *data_size;
570
571     *data_size=0;
572
573     if (s->max_framesize == 0) {
574         s->max_framesize= FFMAX(4, buf_size); // should hopefully be enough for the first header
575         s->bitstream= av_fast_realloc(s->bitstream, &s->allocated_bitstream_size, s->max_framesize);
576     }
577
578     if (1 && s->max_framesize) { //FIXME truncated
579         if (s->bitstream_size < 4 || AV_RL32(s->bitstream) != MKTAG('f','L','a','C'))
580             buf_size= FFMIN(buf_size, s->max_framesize - FFMIN(s->bitstream_size, s->max_framesize));
581         input_buf_size= buf_size;
582
583         if (s->bitstream_size + buf_size < buf_size || s->bitstream_index + s->bitstream_size + buf_size < s->bitstream_index)
584             return -1;
585
586         if (s->allocated_bitstream_size < s->bitstream_size + buf_size)
587             s->bitstream= av_fast_realloc(s->bitstream, &s->allocated_bitstream_size, s->bitstream_size + buf_size);
588
589         if (s->bitstream_index + s->bitstream_size + buf_size > s->allocated_bitstream_size) {
590             memmove(s->bitstream, &s->bitstream[s->bitstream_index],
591                     s->bitstream_size);
592             s->bitstream_index=0;
593         }
594         memcpy(&s->bitstream[s->bitstream_index + s->bitstream_size],
595                buf, buf_size);
596         buf= &s->bitstream[s->bitstream_index];
597         buf_size += s->bitstream_size;
598         s->bitstream_size= buf_size;
599
600         if (buf_size < s->max_framesize && input_buf_size) {
601             return input_buf_size;
602         }
603     }
604
605     init_get_bits(&s->gb, buf, buf_size*8);
606
607     if (metadata_parse(s))
608         goto end;
609
610     tmp = show_bits(&s->gb, 16);
611     if ((tmp & 0xFFFE) != 0xFFF8) {
612         av_log(s->avctx, AV_LOG_ERROR, "FRAME HEADER not here\n");
613         while (get_bits_count(&s->gb)/8+2 < buf_size && (show_bits(&s->gb, 16) & 0xFFFE) != 0xFFF8)
614             skip_bits(&s->gb, 8);
615         goto end; // we may not have enough bits left to decode a frame, so try next time
616     }
617     skip_bits(&s->gb, 16);
618     if (decode_frame(s, alloc_data_size) < 0) {
619         av_log(s->avctx, AV_LOG_ERROR, "decode_frame() failed\n");
620         s->bitstream_size=0;
621         s->bitstream_index=0;
622         return -1;
623     }
624
625 #define DECORRELATE(left, right)\
626             assert(s->channels == 2);\
627             for (i = 0; i < s->blocksize; i++) {\
628                 int a= s->decoded[0][i];\
629                 int b= s->decoded[1][i];\
630                 if (s->is32) {\
631                     *samples_32++ = (left)  << s->sample_shift;\
632                     *samples_32++ = (right) << s->sample_shift;\
633                 } else {\
634                     *samples_16++ = (left)  << s->sample_shift;\
635                     *samples_16++ = (right) << s->sample_shift;\
636                 }\
637             }\
638             break;
639
640     switch (s->decorrelation) {
641     case INDEPENDENT:
642         for (j = 0; j < s->blocksize; j++) {
643             for (i = 0; i < s->channels; i++) {
644                 if (s->is32)
645                     *samples_32++ = s->decoded[i][j] << s->sample_shift;
646                 else
647                     *samples_16++ = s->decoded[i][j] << s->sample_shift;
648             }
649         }
650         break;
651     case LEFT_SIDE:
652         DECORRELATE(a,a-b)
653     case RIGHT_SIDE:
654         DECORRELATE(a+b,b)
655     case MID_SIDE:
656         DECORRELATE( (a-=b>>1) + b, a)
657     }
658
659     *data_size = s->blocksize * s->channels * (s->is32 ? 4 : 2);
660
661 end:
662     i= (get_bits_count(&s->gb)+7)/8;
663     if (i > buf_size) {
664         av_log(s->avctx, AV_LOG_ERROR, "overread: %d\n", i - buf_size);
665         s->bitstream_size=0;
666         s->bitstream_index=0;
667         return -1;
668     }
669
670     if (s->bitstream_size) {
671         s->bitstream_index += i;
672         s->bitstream_size  -= i;
673         return input_buf_size;
674     } else
675         return i;
676 }
677
678 static av_cold int flac_decode_close(AVCodecContext *avctx)
679 {
680     FLACContext *s = avctx->priv_data;
681     int i;
682
683     for (i = 0; i < s->channels; i++) {
684         av_freep(&s->decoded[i]);
685     }
686     av_freep(&s->bitstream);
687
688     return 0;
689 }
690
691 static void flac_flush(AVCodecContext *avctx)
692 {
693     FLACContext *s = avctx->priv_data;
694
695     s->bitstream_size=
696     s->bitstream_index= 0;
697 }
698
699 AVCodec flac_decoder = {
700     "flac",
701     CODEC_TYPE_AUDIO,
702     CODEC_ID_FLAC,
703     sizeof(FLACContext),
704     flac_decode_init,
705     NULL,
706     flac_decode_close,
707     flac_decode_frame,
708     CODEC_CAP_DELAY,
709     .flush= flac_flush,
710     .long_name= NULL_IF_CONFIG_SMALL("FLAC (Free Lossless Audio Codec)"),
711 };