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