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