Add undefine macro.
[plumiferos.git] / extern / ffmpeg / libavcodec / flac.c
blob8710e21d3d96b3b44bf66487752934ba5bd16b7d
1 /*
2 * FLAC (Free Lossless Audio Codec) decoder
3 * Copyright (c) 2003 Alex Beregszaszi
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 /**
21 * @file flac.c
22 * FLAC (Free Lossless Audio Codec) decoder
23 * @author Alex Beregszaszi
25 * For more information on the FLAC format, visit:
26 * http://flac.sourceforge.net/
28 * This decoder can be used in 1 of 2 ways: Either raw FLAC data can be fed
29 * through, starting from the initial 'fLaC' signature; or by passing the
30 * 34-byte streaminfo structure through avctx->extradata[_size] followed
31 * by data starting with the 0xFFF8 marker.
34 #include <limits.h>
36 #include "avcodec.h"
37 #include "bitstream.h"
38 #include "golomb.h"
39 #include "crc.h"
41 #undef NDEBUG
42 #include <assert.h>
44 #define MAX_CHANNELS 8
45 #define MAX_BLOCKSIZE 65535
46 #define FLAC_STREAMINFO_SIZE 34
48 enum decorrelation_type {
49 INDEPENDENT,
50 LEFT_SIDE,
51 RIGHT_SIDE,
52 MID_SIDE,
55 typedef struct FLACContext {
56 AVCodecContext *avctx;
57 GetBitContext gb;
59 int min_blocksize, max_blocksize;
60 int min_framesize, max_framesize;
61 int samplerate, channels;
62 int blocksize/*, last_blocksize*/;
63 int bps, curr_bps;
64 enum decorrelation_type decorrelation;
66 int32_t *decoded[MAX_CHANNELS];
67 uint8_t *bitstream;
68 int bitstream_size;
69 int bitstream_index;
70 unsigned int allocated_bitstream_size;
71 } FLACContext;
73 #define METADATA_TYPE_STREAMINFO 0
75 static int sample_rate_table[] =
76 { 0, 0, 0, 0,
77 8000, 16000, 22050, 24000, 32000, 44100, 48000, 96000,
78 0, 0, 0, 0 };
80 static int sample_size_table[] =
81 { 0, 8, 12, 0, 16, 20, 24, 0 };
83 static int blocksize_table[] = {
84 0, 192, 576<<0, 576<<1, 576<<2, 576<<3, 0, 0,
85 256<<0, 256<<1, 256<<2, 256<<3, 256<<4, 256<<5, 256<<6, 256<<7
88 static int64_t get_utf8(GetBitContext *gb)
90 uint64_t val;
91 int ones=0, bytes;
93 while(get_bits1(gb))
94 ones++;
96 if (ones==0) bytes=0;
97 else if(ones==1) return -1;
98 else bytes= ones - 1;
100 val= get_bits(gb, 7-ones);
101 while(bytes--){
102 const int tmp = get_bits(gb, 8);
104 if((tmp>>6) != 2)
105 return -1;
106 val<<=6;
107 val|= tmp&0x3F;
109 return val;
112 #if 0
113 static int skip_utf8(GetBitContext *gb)
115 int ones=0, bytes;
117 while(get_bits1(gb))
118 ones++;
120 if (ones==0) bytes=0;
121 else if(ones==1) return -1;
122 else bytes= ones - 1;
124 skip_bits(gb, 7-ones);
125 while(bytes--){
126 const int tmp = get_bits(gb, 8);
128 if((tmp>>6) != 2)
129 return -1;
131 return 0;
133 #endif
135 static void metadata_streaminfo(FLACContext *s);
136 static void dump_headers(FLACContext *s);
138 static int flac_decode_init(AVCodecContext * avctx)
140 FLACContext *s = avctx->priv_data;
141 s->avctx = avctx;
143 /* initialize based on the demuxer-supplied streamdata header */
144 if (avctx->extradata_size == FLAC_STREAMINFO_SIZE) {
145 init_get_bits(&s->gb, avctx->extradata, avctx->extradata_size*8);
146 metadata_streaminfo(s);
147 dump_headers(s);
150 return 0;
153 static void dump_headers(FLACContext *s)
155 av_log(s->avctx, AV_LOG_DEBUG, " Blocksize: %d .. %d (%d)\n", s->min_blocksize, s->max_blocksize, s->blocksize);
156 av_log(s->avctx, AV_LOG_DEBUG, " Framesize: %d .. %d\n", s->min_framesize, s->max_framesize);
157 av_log(s->avctx, AV_LOG_DEBUG, " Samplerate: %d\n", s->samplerate);
158 av_log(s->avctx, AV_LOG_DEBUG, " Channels: %d\n", s->channels);
159 av_log(s->avctx, AV_LOG_DEBUG, " Bits: %d\n", s->bps);
162 static void allocate_buffers(FLACContext *s){
163 int i;
165 assert(s->max_blocksize);
167 if(s->max_framesize == 0 && s->max_blocksize){
168 s->max_framesize= (s->channels * s->bps * s->max_blocksize + 7)/ 8; //FIXME header overhead
171 for (i = 0; i < s->channels; i++)
173 s->decoded[i] = av_realloc(s->decoded[i], sizeof(int32_t)*s->max_blocksize);
176 s->bitstream= av_fast_realloc(s->bitstream, &s->allocated_bitstream_size, s->max_framesize);
179 static void metadata_streaminfo(FLACContext *s)
181 /* mandatory streaminfo */
182 s->min_blocksize = get_bits(&s->gb, 16);
183 s->max_blocksize = get_bits(&s->gb, 16);
185 s->min_framesize = get_bits_long(&s->gb, 24);
186 s->max_framesize = get_bits_long(&s->gb, 24);
188 s->samplerate = get_bits_long(&s->gb, 20);
189 s->channels = get_bits(&s->gb, 3) + 1;
190 s->bps = get_bits(&s->gb, 5) + 1;
192 s->avctx->channels = s->channels;
193 s->avctx->sample_rate = s->samplerate;
195 skip_bits(&s->gb, 36); /* total num of samples */
197 skip_bits(&s->gb, 64); /* md5 sum */
198 skip_bits(&s->gb, 64); /* md5 sum */
200 allocate_buffers(s);
203 static int decode_residuals(FLACContext *s, int channel, int pred_order)
205 int i, tmp, partition, method_type, rice_order;
206 int sample = 0, samples;
208 method_type = get_bits(&s->gb, 2);
209 if (method_type != 0){
210 av_log(s->avctx, AV_LOG_DEBUG, "illegal residual coding method %d\n", method_type);
211 return -1;
214 rice_order = get_bits(&s->gb, 4);
216 samples= s->blocksize >> rice_order;
218 sample=
219 i= pred_order;
220 for (partition = 0; partition < (1 << rice_order); partition++)
222 tmp = get_bits(&s->gb, 4);
223 if (tmp == 15)
225 av_log(s->avctx, AV_LOG_DEBUG, "fixed len partition\n");
226 tmp = get_bits(&s->gb, 5);
227 for (; i < samples; i++, sample++)
228 s->decoded[channel][sample] = get_sbits(&s->gb, tmp);
230 else
232 // av_log(s->avctx, AV_LOG_DEBUG, "rice coded partition k=%d\n", tmp);
233 for (; i < samples; i++, sample++){
234 s->decoded[channel][sample] = get_sr_golomb_flac(&s->gb, tmp, INT_MAX, 0);
237 i= 0;
240 // av_log(s->avctx, AV_LOG_DEBUG, "partitions: %d, samples: %d\n", 1 << rice_order, sample);
242 return 0;
245 static int decode_subframe_fixed(FLACContext *s, int channel, int pred_order)
247 int i;
249 // av_log(s->avctx, AV_LOG_DEBUG, " SUBFRAME FIXED\n");
251 /* warm up samples */
252 // av_log(s->avctx, AV_LOG_DEBUG, " warm up samples: %d\n", pred_order);
254 for (i = 0; i < pred_order; i++)
256 s->decoded[channel][i] = get_sbits(&s->gb, s->curr_bps);
257 // av_log(s->avctx, AV_LOG_DEBUG, " %d: %d\n", i, s->decoded[channel][i]);
260 if (decode_residuals(s, channel, pred_order) < 0)
261 return -1;
263 switch(pred_order)
265 case 0:
266 break;
267 case 1:
268 for (i = pred_order; i < s->blocksize; i++)
269 s->decoded[channel][i] += s->decoded[channel][i-1];
270 break;
271 case 2:
272 for (i = pred_order; i < s->blocksize; i++)
273 s->decoded[channel][i] += 2*s->decoded[channel][i-1]
274 - s->decoded[channel][i-2];
275 break;
276 case 3:
277 for (i = pred_order; i < s->blocksize; i++)
278 s->decoded[channel][i] += 3*s->decoded[channel][i-1]
279 - 3*s->decoded[channel][i-2]
280 + s->decoded[channel][i-3];
281 break;
282 case 4:
283 for (i = pred_order; i < s->blocksize; i++)
284 s->decoded[channel][i] += 4*s->decoded[channel][i-1]
285 - 6*s->decoded[channel][i-2]
286 + 4*s->decoded[channel][i-3]
287 - s->decoded[channel][i-4];
288 break;
289 default:
290 av_log(s->avctx, AV_LOG_ERROR, "illegal pred order %d\n", pred_order);
291 return -1;
294 return 0;
297 static int decode_subframe_lpc(FLACContext *s, int channel, int pred_order)
299 int sum, i, j;
300 int coeff_prec, qlevel;
301 int coeffs[pred_order];
303 // av_log(s->avctx, AV_LOG_DEBUG, " SUBFRAME LPC\n");
305 /* warm up samples */
306 // av_log(s->avctx, AV_LOG_DEBUG, " warm up samples: %d\n", pred_order);
308 for (i = 0; i < pred_order; i++)
310 s->decoded[channel][i] = get_sbits(&s->gb, s->curr_bps);
311 // av_log(s->avctx, AV_LOG_DEBUG, " %d: %d\n", i, s->decoded[channel][i]);
314 coeff_prec = get_bits(&s->gb, 4) + 1;
315 if (coeff_prec == 16)
317 av_log(s->avctx, AV_LOG_DEBUG, "invalid coeff precision\n");
318 return -1;
320 // av_log(s->avctx, AV_LOG_DEBUG, " qlp coeff prec: %d\n", coeff_prec);
321 qlevel = get_sbits(&s->gb, 5);
322 // av_log(s->avctx, AV_LOG_DEBUG, " quant level: %d\n", qlevel);
323 if(qlevel < 0){
324 av_log(s->avctx, AV_LOG_DEBUG, "qlevel %d not supported, maybe buggy stream\n", qlevel);
325 return -1;
328 for (i = 0; i < pred_order; i++)
330 coeffs[i] = get_sbits(&s->gb, coeff_prec);
331 // av_log(s->avctx, AV_LOG_DEBUG, " %d: %d\n", i, coeffs[i]);
334 if (decode_residuals(s, channel, pred_order) < 0)
335 return -1;
337 for (i = pred_order; i < s->blocksize; i++)
339 sum = 0;
340 for (j = 0; j < pred_order; j++)
341 sum += coeffs[j] * s->decoded[channel][i-j-1];
342 s->decoded[channel][i] += sum >> qlevel;
345 return 0;
348 static inline int decode_subframe(FLACContext *s, int channel)
350 int type, wasted = 0;
351 int i, tmp;
353 s->curr_bps = s->bps;
354 if(channel == 0){
355 if(s->decorrelation == RIGHT_SIDE)
356 s->curr_bps++;
357 }else{
358 if(s->decorrelation == LEFT_SIDE || s->decorrelation == MID_SIDE)
359 s->curr_bps++;
362 if (get_bits1(&s->gb))
364 av_log(s->avctx, AV_LOG_ERROR, "invalid subframe padding\n");
365 return -1;
367 type = get_bits(&s->gb, 6);
368 // wasted = get_bits1(&s->gb);
370 // if (wasted)
371 // {
372 // while (!get_bits1(&s->gb))
373 // wasted++;
374 // if (wasted)
375 // wasted++;
376 // s->curr_bps -= wasted;
377 // }
378 #if 0
379 wasted= 16 - av_log2(show_bits(&s->gb, 17));
380 skip_bits(&s->gb, wasted+1);
381 s->curr_bps -= wasted;
382 #else
383 if (get_bits1(&s->gb))
385 wasted = 1;
386 while (!get_bits1(&s->gb))
387 wasted++;
388 s->curr_bps -= wasted;
389 av_log(s->avctx, AV_LOG_DEBUG, "%d wasted bits\n", wasted);
391 #endif
392 //FIXME use av_log2 for types
393 if (type == 0)
395 av_log(s->avctx, AV_LOG_DEBUG, "coding type: constant\n");
396 tmp = get_sbits(&s->gb, s->curr_bps);
397 for (i = 0; i < s->blocksize; i++)
398 s->decoded[channel][i] = tmp;
400 else if (type == 1)
402 av_log(s->avctx, AV_LOG_DEBUG, "coding type: verbatim\n");
403 for (i = 0; i < s->blocksize; i++)
404 s->decoded[channel][i] = get_sbits(&s->gb, s->curr_bps);
406 else if ((type >= 8) && (type <= 12))
408 // av_log(s->avctx, AV_LOG_DEBUG, "coding type: fixed\n");
409 if (decode_subframe_fixed(s, channel, type & ~0x8) < 0)
410 return -1;
412 else if (type >= 32)
414 // av_log(s->avctx, AV_LOG_DEBUG, "coding type: lpc\n");
415 if (decode_subframe_lpc(s, channel, (type & ~0x20)+1) < 0)
416 return -1;
418 else
420 av_log(s->avctx, AV_LOG_ERROR, "invalid coding type\n");
421 return -1;
424 if (wasted)
426 int i;
427 for (i = 0; i < s->blocksize; i++)
428 s->decoded[channel][i] <<= wasted;
431 return 0;
434 static int decode_frame(FLACContext *s)
436 int blocksize_code, sample_rate_code, sample_size_code, assignment, i, crc8;
437 int decorrelation, bps, blocksize, samplerate;
439 blocksize_code = get_bits(&s->gb, 4);
441 sample_rate_code = get_bits(&s->gb, 4);
443 assignment = get_bits(&s->gb, 4); /* channel assignment */
444 if (assignment < 8 && s->channels == assignment+1)
445 decorrelation = INDEPENDENT;
446 else if (assignment >=8 && assignment < 11 && s->channels == 2)
447 decorrelation = LEFT_SIDE + assignment - 8;
448 else
450 av_log(s->avctx, AV_LOG_ERROR, "unsupported channel assignment %d (channels=%d)\n", assignment, s->channels);
451 return -1;
454 sample_size_code = get_bits(&s->gb, 3);
455 if(sample_size_code == 0)
456 bps= s->bps;
457 else if((sample_size_code != 3) && (sample_size_code != 7))
458 bps = sample_size_table[sample_size_code];
459 else
461 av_log(s->avctx, AV_LOG_ERROR, "invalid sample size code (%d)\n", sample_size_code);
462 return -1;
465 if (get_bits1(&s->gb))
467 av_log(s->avctx, AV_LOG_ERROR, "broken stream, invalid padding\n");
468 return -1;
471 if(get_utf8(&s->gb) < 0){
472 av_log(s->avctx, AV_LOG_ERROR, "utf8 fscked\n");
473 return -1;
475 #if 0
476 if (/*((blocksize_code == 6) || (blocksize_code == 7)) &&*/
477 (s->min_blocksize != s->max_blocksize)){
478 }else{
480 #endif
482 if (blocksize_code == 0)
483 blocksize = s->min_blocksize;
484 else if (blocksize_code == 6)
485 blocksize = get_bits(&s->gb, 8)+1;
486 else if (blocksize_code == 7)
487 blocksize = get_bits(&s->gb, 16)+1;
488 else
489 blocksize = blocksize_table[blocksize_code];
491 if(blocksize > s->max_blocksize){
492 av_log(s->avctx, AV_LOG_ERROR, "blocksize %d > %d\n", blocksize, s->max_blocksize);
493 return -1;
496 if (sample_rate_code == 0){
497 samplerate= s->samplerate;
498 }else if ((sample_rate_code > 3) && (sample_rate_code < 12))
499 samplerate = sample_rate_table[sample_rate_code];
500 else if (sample_rate_code == 12)
501 samplerate = get_bits(&s->gb, 8) * 1000;
502 else if (sample_rate_code == 13)
503 samplerate = get_bits(&s->gb, 16);
504 else if (sample_rate_code == 14)
505 samplerate = get_bits(&s->gb, 16) * 10;
506 else{
507 av_log(s->avctx, AV_LOG_ERROR, "illegal sample rate code %d\n", sample_rate_code);
508 return -1;
511 skip_bits(&s->gb, 8);
512 crc8= av_crc(av_crc07, 0, s->gb.buffer, get_bits_count(&s->gb)/8);
513 if(crc8){
514 av_log(s->avctx, AV_LOG_ERROR, "header crc mismatch crc=%2X\n", crc8);
515 return -1;
518 s->blocksize = blocksize;
519 s->samplerate = samplerate;
520 s->bps = bps;
521 s->decorrelation= decorrelation;
523 // dump_headers(s);
525 /* subframes */
526 for (i = 0; i < s->channels; i++)
528 // av_log(s->avctx, AV_LOG_DEBUG, "decoded: %x residual: %x\n", s->decoded[i], s->residual[i]);
529 if (decode_subframe(s, i) < 0)
530 return -1;
533 align_get_bits(&s->gb);
535 /* frame footer */
536 skip_bits(&s->gb, 16); /* data crc */
538 return 0;
541 static int flac_decode_frame(AVCodecContext *avctx,
542 void *data, int *data_size,
543 uint8_t *buf, int buf_size)
545 FLACContext *s = avctx->priv_data;
546 int metadata_last, metadata_type, metadata_size;
547 int tmp = 0, i, j = 0, input_buf_size = 0;
548 int16_t *samples = data;
550 if(s->max_framesize == 0){
551 s->max_framesize= 65536; // should hopefully be enough for the first header
552 s->bitstream= av_fast_realloc(s->bitstream, &s->allocated_bitstream_size, s->max_framesize);
555 if(1 && s->max_framesize){//FIXME truncated
556 buf_size= FFMAX(FFMIN(buf_size, s->max_framesize - s->bitstream_size), 0);
557 input_buf_size= buf_size;
559 if(s->bitstream_index + s->bitstream_size + buf_size > s->allocated_bitstream_size){
560 // printf("memmove\n");
561 memmove(s->bitstream, &s->bitstream[s->bitstream_index], s->bitstream_size);
562 s->bitstream_index=0;
564 memcpy(&s->bitstream[s->bitstream_index + s->bitstream_size], buf, buf_size);
565 buf= &s->bitstream[s->bitstream_index];
566 buf_size += s->bitstream_size;
567 s->bitstream_size= buf_size;
569 if(buf_size < s->max_framesize){
570 // printf("wanna more data ...\n");
571 return input_buf_size;
575 init_get_bits(&s->gb, buf, buf_size*8);
577 /* fLaC signature (be) */
578 if (show_bits_long(&s->gb, 32) == bswap_32(ff_get_fourcc("fLaC")))
580 skip_bits(&s->gb, 32);
582 av_log(s->avctx, AV_LOG_DEBUG, "STREAM HEADER\n");
583 do {
584 metadata_last = get_bits(&s->gb, 1);
585 metadata_type = get_bits(&s->gb, 7);
586 metadata_size = get_bits_long(&s->gb, 24);
588 av_log(s->avctx, AV_LOG_DEBUG, " metadata block: flag = %d, type = %d, size = %d\n",
589 metadata_last, metadata_type,
590 metadata_size);
591 if(metadata_size){
592 switch(metadata_type)
594 case METADATA_TYPE_STREAMINFO:{
595 metadata_streaminfo(s);
597 /* Buffer might have been reallocated, reinit bitreader */
598 if(buf != &s->bitstream[s->bitstream_index])
600 int bits_count = get_bits_count(&s->gb);
601 buf= &s->bitstream[s->bitstream_index];
602 init_get_bits(&s->gb, buf, buf_size*8);
603 skip_bits(&s->gb, bits_count);
606 dump_headers(s);
607 break;}
608 default:
609 for(i=0; i<metadata_size; i++)
610 skip_bits(&s->gb, 8);
613 } while(!metadata_last);
615 else
618 tmp = show_bits(&s->gb, 16);
619 if(tmp != 0xFFF8){
620 av_log(s->avctx, AV_LOG_ERROR, "FRAME HEADER not here\n");
621 while(get_bits_count(&s->gb)/8+2 < buf_size && show_bits(&s->gb, 16) != 0xFFF8)
622 skip_bits(&s->gb, 8);
623 goto end; // we may not have enough bits left to decode a frame, so try next time
625 skip_bits(&s->gb, 16);
626 if (decode_frame(s) < 0){
627 av_log(s->avctx, AV_LOG_ERROR, "decode_frame() failed\n");
628 s->bitstream_size=0;
629 s->bitstream_index=0;
630 return -1;
635 #if 0
636 /* fix the channel order here */
637 if (s->order == MID_SIDE)
639 short *left = samples;
640 short *right = samples + s->blocksize;
641 for (i = 0; i < s->blocksize; i += 2)
643 uint32_t x = s->decoded[0][i];
644 uint32_t y = s->decoded[0][i+1];
646 right[i] = x - (y / 2);
647 left[i] = right[i] + y;
649 *data_size = 2 * s->blocksize;
651 else
653 for (i = 0; i < s->channels; i++)
655 switch(s->order)
657 case INDEPENDENT:
658 for (j = 0; j < s->blocksize; j++)
659 samples[(s->blocksize*i)+j] = s->decoded[i][j];
660 break;
661 case LEFT_SIDE:
662 case RIGHT_SIDE:
663 if (i == 0)
664 for (j = 0; j < s->blocksize; j++)
665 samples[(s->blocksize*i)+j] = s->decoded[0][j];
666 else
667 for (j = 0; j < s->blocksize; j++)
668 samples[(s->blocksize*i)+j] = s->decoded[0][j] - s->decoded[i][j];
669 break;
670 // case MID_SIDE:
671 // av_log(s->avctx, AV_LOG_DEBUG, "mid-side unsupported\n");
673 *data_size += s->blocksize;
676 #else
677 switch(s->decorrelation)
679 case INDEPENDENT:
680 for (j = 0; j < s->blocksize; j++)
682 for (i = 0; i < s->channels; i++)
683 *(samples++) = s->decoded[i][j];
685 break;
686 case LEFT_SIDE:
687 assert(s->channels == 2);
688 for (i = 0; i < s->blocksize; i++)
690 *(samples++) = s->decoded[0][i];
691 *(samples++) = s->decoded[0][i] - s->decoded[1][i];
693 break;
694 case RIGHT_SIDE:
695 assert(s->channels == 2);
696 for (i = 0; i < s->blocksize; i++)
698 *(samples++) = s->decoded[0][i] + s->decoded[1][i];
699 *(samples++) = s->decoded[1][i];
701 break;
702 case MID_SIDE:
703 assert(s->channels == 2);
704 for (i = 0; i < s->blocksize; i++)
706 int mid, side;
707 mid = s->decoded[0][i];
708 side = s->decoded[1][i];
710 #if 1 //needs to be checked but IMHO it should be binary identical
711 mid -= side>>1;
712 *(samples++) = mid + side;
713 *(samples++) = mid;
714 #else
716 mid <<= 1;
717 if (side & 1)
718 mid++;
719 *(samples++) = (mid + side) >> 1;
720 *(samples++) = (mid - side) >> 1;
721 #endif
723 break;
725 #endif
727 *data_size = (int8_t *)samples - (int8_t *)data;
728 // av_log(s->avctx, AV_LOG_DEBUG, "data size: %d\n", *data_size);
730 // s->last_blocksize = s->blocksize;
731 end:
732 i= (get_bits_count(&s->gb)+7)/8;;
733 if(i > buf_size){
734 av_log(s->avctx, AV_LOG_ERROR, "overread: %d\n", i - buf_size);
735 s->bitstream_size=0;
736 s->bitstream_index=0;
737 return -1;
740 if(s->bitstream_size){
741 s->bitstream_index += i;
742 s->bitstream_size -= i;
743 return input_buf_size;
744 }else
745 return i;
748 static int flac_decode_close(AVCodecContext *avctx)
750 FLACContext *s = avctx->priv_data;
751 int i;
753 for (i = 0; i < s->channels; i++)
755 av_freep(&s->decoded[i]);
757 av_freep(&s->bitstream);
759 return 0;
762 static void flac_flush(AVCodecContext *avctx){
763 FLACContext *s = avctx->priv_data;
765 s->bitstream_size=
766 s->bitstream_index= 0;
769 AVCodec flac_decoder = {
770 "flac",
771 CODEC_TYPE_AUDIO,
772 CODEC_ID_FLAC,
773 sizeof(FLACContext),
774 flac_decode_init,
775 NULL,
776 flac_decode_close,
777 flac_decode_frame,
778 .flush= flac_flush,