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