]> git.sesse.net Git - ffmpeg/blob - libavcodec/alac.c
alacdec: move some declarations to the top of the function
[ffmpeg] / libavcodec / alac.c
1 /*
2  * ALAC (Apple Lossless Audio Codec) decoder
3  * Copyright (c) 2005 David Hammerton
4  *
5  * This file is part of Libav.
6  *
7  * Libav 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  * Libav 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 Libav; 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
24  * ALAC (Apple Lossless Audio Codec) decoder
25  * @author 2005 David Hammerton
26  * @see http://crazney.net/programs/itunes/alac.html
27  *
28  * Note: This decoder expects a 36- (0x24-)byte QuickTime atom to be
29  * passed through the extradata[_size] fields. This atom is tacked onto
30  * the end of an 'alac' stsd atom and has the following format:
31  *  bytes 0-3   atom size (0x24), big-endian
32  *  bytes 4-7   atom type ('alac', not the 'alac' tag from start of stsd)
33  *  bytes 8-35  data bytes needed by decoder
34  *
35  * Extradata:
36  * 32bit  size
37  * 32bit  tag (=alac)
38  * 32bit  zero?
39  * 32bit  max sample per frame
40  *  8bit  ?? (zero?)
41  *  8bit  sample size
42  *  8bit  history mult
43  *  8bit  initial history
44  *  8bit  kmodifier
45  *  8bit  channels?
46  * 16bit  ??
47  * 32bit  max coded frame size
48  * 32bit  bitrate?
49  * 32bit  samplerate
50  */
51
52
53 #include "avcodec.h"
54 #include "get_bits.h"
55 #include "bytestream.h"
56 #include "unary.h"
57 #include "mathops.h"
58
59 #define ALAC_EXTRADATA_SIZE 36
60 #define MAX_CHANNELS 2
61
62 typedef struct {
63
64     AVCodecContext *avctx;
65     GetBitContext gb;
66
67     int numchannels;
68     int bytespersample;
69
70     /* buffers */
71     int32_t *predicterror_buffer[MAX_CHANNELS];
72
73     int32_t *outputsamples_buffer[MAX_CHANNELS];
74
75     int32_t *extra_bits_buffer[MAX_CHANNELS];
76
77     /* stuff from setinfo */
78     uint32_t setinfo_max_samples_per_frame; /* 0x1000 = 4096 */    /* max samples per frame? */
79     uint8_t setinfo_sample_size; /* 0x10 */
80     uint8_t setinfo_rice_historymult; /* 0x28 */
81     uint8_t setinfo_rice_initialhistory; /* 0x0a */
82     uint8_t setinfo_rice_kmodifier; /* 0x0e */
83     /* end setinfo stuff */
84
85     int extra_bits;                         /**< number of extra bits beyond 16-bit */
86 } ALACContext;
87
88 static inline int decode_scalar(GetBitContext *gb, int k, int limit, int readsamplesize){
89     /* read x - number of 1s before 0 represent the rice */
90     int x = get_unary_0_9(gb);
91
92     if (x > 8) { /* RICE THRESHOLD */
93         /* use alternative encoding */
94         x = get_bits(gb, readsamplesize);
95     } else {
96         if (k >= limit)
97             k = limit;
98
99         if (k != 1) {
100             int extrabits = show_bits(gb, k);
101
102             /* multiply x by 2^k - 1, as part of their strange algorithm */
103             x = (x << k) - x;
104
105             if (extrabits > 1) {
106                 x += extrabits - 1;
107                 skip_bits(gb, k);
108             } else
109                 skip_bits(gb, k - 1);
110         }
111     }
112     return x;
113 }
114
115 static void bastardized_rice_decompress(ALACContext *alac,
116                                  int32_t *output_buffer,
117                                  int output_size,
118                                  int readsamplesize, /* arg_10 */
119                                  int rice_initialhistory, /* arg424->b */
120                                  int rice_kmodifier, /* arg424->d */
121                                  int rice_historymult, /* arg424->c */
122                                  int rice_kmodifier_mask /* arg424->e */
123         )
124 {
125     int output_count;
126     unsigned int history = rice_initialhistory;
127     int sign_modifier = 0;
128
129     for (output_count = 0; output_count < output_size; output_count++) {
130         int32_t x;
131         int32_t x_modified;
132         int32_t final_val;
133
134         /* standard rice encoding */
135         int k; /* size of extra bits */
136
137         /* read k, that is bits as is */
138         k = av_log2((history >> 9) + 3);
139         x= decode_scalar(&alac->gb, k, rice_kmodifier, readsamplesize);
140
141         x_modified = sign_modifier + x;
142         final_val = (x_modified + 1) / 2;
143         if (x_modified & 1) final_val *= -1;
144
145         output_buffer[output_count] = final_val;
146
147         sign_modifier = 0;
148
149         /* now update the history */
150         history += x_modified * rice_historymult
151                    - ((history * rice_historymult) >> 9);
152
153         if (x_modified > 0xffff)
154             history = 0xffff;
155
156         /* special case: there may be compressed blocks of 0 */
157         if ((history < 128) && (output_count+1 < output_size)) {
158             int k;
159             unsigned int block_size;
160
161             sign_modifier = 1;
162
163             k = 7 - av_log2(history) + ((history + 16) >> 6 /* / 64 */);
164
165             block_size= decode_scalar(&alac->gb, k, rice_kmodifier, 16);
166
167             if (block_size > 0) {
168                 if(block_size >= output_size - output_count){
169                     av_log(alac->avctx, AV_LOG_ERROR, "invalid zero block size of %d %d %d\n", block_size, output_size, output_count);
170                     block_size= output_size - output_count - 1;
171                 }
172                 memset(&output_buffer[output_count+1], 0, block_size * 4);
173                 output_count += block_size;
174             }
175
176             if (block_size > 0xffff)
177                 sign_modifier = 0;
178
179             history = 0;
180         }
181     }
182 }
183
184 static inline int sign_only(int v)
185 {
186     return v ? FFSIGN(v) : 0;
187 }
188
189 static void predictor_decompress_fir_adapt(int32_t *error_buffer,
190                                            int32_t *buffer_out,
191                                            int output_size,
192                                            int readsamplesize,
193                                            int16_t *predictor_coef_table,
194                                            int predictor_coef_num,
195                                            int predictor_quantitization)
196 {
197     int i;
198
199     /* first sample always copies */
200     *buffer_out = *error_buffer;
201
202     if (!predictor_coef_num) {
203         if (output_size <= 1)
204             return;
205
206         memcpy(buffer_out+1, error_buffer+1, (output_size-1) * 4);
207         return;
208     }
209
210     if (predictor_coef_num == 0x1f) { /* 11111 - max value of predictor_coef_num */
211       /* second-best case scenario for fir decompression,
212        * error describes a small difference from the previous sample only
213        */
214         if (output_size <= 1)
215             return;
216         for (i = 0; i < output_size - 1; i++) {
217             int32_t prev_value;
218             int32_t error_value;
219
220             prev_value = buffer_out[i];
221             error_value = error_buffer[i+1];
222             buffer_out[i+1] =
223                 sign_extend((prev_value + error_value), readsamplesize);
224         }
225         return;
226     }
227
228     /* read warm-up samples */
229     if (predictor_coef_num > 0)
230         for (i = 0; i < predictor_coef_num; i++) {
231             int32_t val;
232
233             val = buffer_out[i] + error_buffer[i+1];
234             val = sign_extend(val, readsamplesize);
235             buffer_out[i+1] = val;
236         }
237
238     /* 4 and 8 are very common cases (the only ones i've seen). these
239      * should be unrolled and optimized
240      */
241
242     /* general case */
243     if (predictor_coef_num > 0) {
244         for (i = predictor_coef_num + 1; i < output_size; i++) {
245             int j;
246             int sum = 0;
247             int outval;
248             int error_val = error_buffer[i];
249
250             for (j = 0; j < predictor_coef_num; j++) {
251                 sum += (buffer_out[predictor_coef_num-j] - buffer_out[0]) *
252                        predictor_coef_table[j];
253             }
254
255             outval = (1 << (predictor_quantitization-1)) + sum;
256             outval = outval >> predictor_quantitization;
257             outval = outval + buffer_out[0] + error_val;
258             outval = sign_extend(outval, readsamplesize);
259
260             buffer_out[predictor_coef_num+1] = outval;
261
262             if (error_val > 0) {
263                 int predictor_num = predictor_coef_num - 1;
264
265                 while (predictor_num >= 0 && error_val > 0) {
266                     int val = buffer_out[0] - buffer_out[predictor_coef_num - predictor_num];
267                     int sign = sign_only(val);
268
269                     predictor_coef_table[predictor_num] -= sign;
270
271                     val *= sign; /* absolute value */
272
273                     error_val -= ((val >> predictor_quantitization) *
274                                   (predictor_coef_num - predictor_num));
275
276                     predictor_num--;
277                 }
278             } else if (error_val < 0) {
279                 int predictor_num = predictor_coef_num - 1;
280
281                 while (predictor_num >= 0 && error_val < 0) {
282                     int val = buffer_out[0] - buffer_out[predictor_coef_num - predictor_num];
283                     int sign = - sign_only(val);
284
285                     predictor_coef_table[predictor_num] -= sign;
286
287                     val *= sign; /* neg value */
288
289                     error_val -= ((val >> predictor_quantitization) *
290                                   (predictor_coef_num - predictor_num));
291
292                     predictor_num--;
293                 }
294             }
295
296             buffer_out++;
297         }
298     }
299 }
300
301 static void decorrelate_stereo(int32_t *buffer[MAX_CHANNELS],
302                                int numsamples, uint8_t interlacing_shift,
303                                uint8_t interlacing_leftweight)
304 {
305     int i;
306
307     for (i = 0; i < numsamples; i++) {
308         int32_t a, b;
309
310         a = buffer[0][i];
311         b = buffer[1][i];
312
313         a -= (b * interlacing_leftweight) >> interlacing_shift;
314         b += a;
315
316         buffer[0][i] = b;
317         buffer[1][i] = a;
318     }
319 }
320
321 static void append_extra_bits(int32_t *buffer[MAX_CHANNELS],
322                               int32_t *extra_bits_buffer[MAX_CHANNELS],
323                               int extra_bits, int numchannels, int numsamples)
324 {
325     int i, ch;
326
327     for (ch = 0; ch < numchannels; ch++)
328         for (i = 0; i < numsamples; i++)
329             buffer[ch][i] = (buffer[ch][i] << extra_bits) | extra_bits_buffer[ch][i];
330 }
331
332 static void interleave_stereo_16(int32_t *buffer[MAX_CHANNELS],
333                                  int16_t *buffer_out, int numsamples)
334 {
335     int i;
336
337     for (i = 0; i < numsamples; i++) {
338         *buffer_out++ = buffer[0][i];
339         *buffer_out++ = buffer[1][i];
340     }
341 }
342
343 static void interleave_stereo_24(int32_t *buffer[MAX_CHANNELS],
344                                  int32_t *buffer_out, int numsamples)
345 {
346     int i;
347
348     for (i = 0; i < numsamples; i++) {
349         *buffer_out++ = buffer[0][i] << 8;
350         *buffer_out++ = buffer[1][i] << 8;
351     }
352 }
353
354 static int alac_decode_frame(AVCodecContext *avctx,
355                              void *outbuffer, int *outputsize,
356                              AVPacket *avpkt)
357 {
358     const uint8_t *inbuffer = avpkt->data;
359     int input_buffer_size = avpkt->size;
360     ALACContext *alac = avctx->priv_data;
361
362     int channels;
363     unsigned int outputsamples;
364     int hassize;
365     unsigned int readsamplesize;
366     int isnotcompressed;
367     uint8_t interlacing_shift;
368     uint8_t interlacing_leftweight;
369     int i, ch;
370
371     /* short-circuit null buffers */
372     if (!inbuffer || !input_buffer_size)
373         return -1;
374
375     init_get_bits(&alac->gb, inbuffer, input_buffer_size * 8);
376
377     channels = get_bits(&alac->gb, 3) + 1;
378     if (channels != avctx->channels) {
379         av_log(avctx, AV_LOG_ERROR, "frame header channel count mismatch\n");
380         return AVERROR_INVALIDDATA;
381     }
382
383     /* 2^result = something to do with output waiting.
384      * perhaps matters if we read > 1 frame in a pass?
385      */
386     skip_bits(&alac->gb, 4);
387
388     skip_bits(&alac->gb, 12); /* unknown, skip 12 bits */
389
390     /* the output sample size is stored soon */
391     hassize = get_bits1(&alac->gb);
392
393     alac->extra_bits = get_bits(&alac->gb, 2) << 3;
394
395     /* whether the frame is compressed */
396     isnotcompressed = get_bits1(&alac->gb);
397
398     if (hassize) {
399         /* now read the number of samples as a 32bit integer */
400         outputsamples = get_bits_long(&alac->gb, 32);
401         if(outputsamples > alac->setinfo_max_samples_per_frame){
402             av_log(avctx, AV_LOG_ERROR, "outputsamples %d > %d\n", outputsamples, alac->setinfo_max_samples_per_frame);
403             return -1;
404         }
405     } else
406         outputsamples = alac->setinfo_max_samples_per_frame;
407
408     alac->bytespersample = channels * av_get_bytes_per_sample(avctx->sample_fmt);
409
410     if(outputsamples > *outputsize / alac->bytespersample){
411         av_log(avctx, AV_LOG_ERROR, "sample buffer too small\n");
412         return -1;
413     }
414
415     *outputsize = outputsamples * alac->bytespersample;
416     readsamplesize = alac->setinfo_sample_size - alac->extra_bits + channels - 1;
417     if (readsamplesize > MIN_CACHE_BITS) {
418         av_log(avctx, AV_LOG_ERROR, "readsamplesize too big (%d)\n", readsamplesize);
419         return -1;
420     }
421
422     if (!isnotcompressed) {
423         /* so it is compressed */
424         int16_t predictor_coef_table[MAX_CHANNELS][32];
425         int predictor_coef_num[MAX_CHANNELS];
426         int prediction_type[MAX_CHANNELS];
427         int prediction_quantitization[MAX_CHANNELS];
428         int ricemodifier[MAX_CHANNELS];
429
430         interlacing_shift = get_bits(&alac->gb, 8);
431         interlacing_leftweight = get_bits(&alac->gb, 8);
432
433         for (ch = 0; ch < channels; ch++) {
434             prediction_type[ch] = get_bits(&alac->gb, 4);
435             prediction_quantitization[ch] = get_bits(&alac->gb, 4);
436
437             ricemodifier[ch] = get_bits(&alac->gb, 3);
438             predictor_coef_num[ch] = get_bits(&alac->gb, 5);
439
440             /* read the predictor table */
441             for (i = 0; i < predictor_coef_num[ch]; i++)
442                 predictor_coef_table[ch][i] = (int16_t)get_bits(&alac->gb, 16);
443         }
444
445         if (alac->extra_bits) {
446             for (i = 0; i < outputsamples; i++) {
447                 for (ch = 0; ch < channels; ch++)
448                     alac->extra_bits_buffer[ch][i] = get_bits(&alac->gb, alac->extra_bits);
449             }
450         }
451         for (ch = 0; ch < channels; ch++) {
452             bastardized_rice_decompress(alac,
453                                         alac->predicterror_buffer[ch],
454                                         outputsamples,
455                                         readsamplesize,
456                                         alac->setinfo_rice_initialhistory,
457                                         alac->setinfo_rice_kmodifier,
458                                         ricemodifier[ch] * alac->setinfo_rice_historymult / 4,
459                                         (1 << alac->setinfo_rice_kmodifier) - 1);
460
461             if (prediction_type[ch] == 0) {
462                 /* adaptive fir */
463                 predictor_decompress_fir_adapt(alac->predicterror_buffer[ch],
464                                                alac->outputsamples_buffer[ch],
465                                                outputsamples,
466                                                readsamplesize,
467                                                predictor_coef_table[ch],
468                                                predictor_coef_num[ch],
469                                                prediction_quantitization[ch]);
470             } else {
471                 av_log(avctx, AV_LOG_ERROR, "FIXME: unhandled prediction type: %i\n", prediction_type[ch]);
472                 /* I think the only other prediction type (or perhaps this is
473                  * just a boolean?) runs adaptive fir twice.. like:
474                  * predictor_decompress_fir_adapt(predictor_error, tempout, ...)
475                  * predictor_decompress_fir_adapt(predictor_error, outputsamples ...)
476                  * little strange..
477                  */
478             }
479         }
480     } else {
481         /* not compressed, easy case */
482         for (i = 0; i < outputsamples; i++) {
483             for (ch = 0; ch < channels; ch++) {
484                 alac->outputsamples_buffer[ch][i] = get_sbits_long(&alac->gb,
485                                                                    alac->setinfo_sample_size);
486             }
487         }
488         alac->extra_bits = 0;
489         interlacing_shift = 0;
490         interlacing_leftweight = 0;
491     }
492     if (get_bits(&alac->gb, 3) != 7)
493         av_log(avctx, AV_LOG_ERROR, "Error : Wrong End Of Frame\n");
494
495     if (channels == 2 && interlacing_leftweight) {
496         decorrelate_stereo(alac->outputsamples_buffer, outputsamples,
497                            interlacing_shift, interlacing_leftweight);
498     }
499
500     if (alac->extra_bits) {
501         append_extra_bits(alac->outputsamples_buffer, alac->extra_bits_buffer,
502                           alac->extra_bits, alac->numchannels, outputsamples);
503     }
504
505     switch(alac->setinfo_sample_size) {
506     case 16:
507         if (channels == 2) {
508             interleave_stereo_16(alac->outputsamples_buffer, outbuffer,
509                                  outputsamples);
510         } else {
511             for (i = 0; i < outputsamples; i++) {
512                 ((int16_t*)outbuffer)[i] = alac->outputsamples_buffer[0][i];
513             }
514         }
515         break;
516     case 24:
517         if (channels == 2) {
518             interleave_stereo_24(alac->outputsamples_buffer, outbuffer,
519                                  outputsamples);
520         } else {
521             for (i = 0; i < outputsamples; i++)
522                 ((int32_t *)outbuffer)[i] = alac->outputsamples_buffer[0][i] << 8;
523         }
524         break;
525     }
526
527     if (input_buffer_size * 8 - get_bits_count(&alac->gb) > 8)
528         av_log(avctx, AV_LOG_ERROR, "Error : %d bits left\n", input_buffer_size * 8 - get_bits_count(&alac->gb));
529
530     return input_buffer_size;
531 }
532
533 static av_cold int alac_decode_close(AVCodecContext *avctx)
534 {
535     ALACContext *alac = avctx->priv_data;
536
537     int chan;
538     for (chan = 0; chan < alac->numchannels; chan++) {
539         av_freep(&alac->predicterror_buffer[chan]);
540         av_freep(&alac->outputsamples_buffer[chan]);
541         av_freep(&alac->extra_bits_buffer[chan]);
542     }
543
544     return 0;
545 }
546
547 static int allocate_buffers(ALACContext *alac)
548 {
549     int chan;
550     for (chan = 0; chan < alac->numchannels; chan++) {
551         alac->predicterror_buffer[chan] =
552             av_malloc(alac->setinfo_max_samples_per_frame * 4);
553
554         alac->outputsamples_buffer[chan] =
555             av_malloc(alac->setinfo_max_samples_per_frame * 4);
556
557         alac->extra_bits_buffer[chan] = av_malloc(alac->setinfo_max_samples_per_frame * 4);
558
559         if (!alac->predicterror_buffer[chan]  ||
560             !alac->outputsamples_buffer[chan] ||
561             !alac->extra_bits_buffer[chan]) {
562             alac_decode_close(alac->avctx);
563             return AVERROR(ENOMEM);
564         }
565     }
566     return 0;
567 }
568
569 static int alac_set_info(ALACContext *alac)
570 {
571     const unsigned char *ptr = alac->avctx->extradata;
572
573     ptr += 4; /* size */
574     ptr += 4; /* alac */
575     ptr += 4; /* 0 ? */
576
577     if(AV_RB32(ptr) >= UINT_MAX/4){
578         av_log(alac->avctx, AV_LOG_ERROR, "setinfo_max_samples_per_frame too large\n");
579         return -1;
580     }
581
582     /* buffer size / 2 ? */
583     alac->setinfo_max_samples_per_frame = bytestream_get_be32(&ptr);
584     ptr++;                          /* ??? */
585     alac->setinfo_sample_size           = *ptr++;
586     alac->setinfo_rice_historymult      = *ptr++;
587     alac->setinfo_rice_initialhistory   = *ptr++;
588     alac->setinfo_rice_kmodifier        = *ptr++;
589     alac->numchannels                   = *ptr++;
590     bytestream_get_be16(&ptr);      /* ??? */
591     bytestream_get_be32(&ptr);      /* max coded frame size */
592     bytestream_get_be32(&ptr);      /* bitrate ? */
593     bytestream_get_be32(&ptr);      /* samplerate */
594
595     return 0;
596 }
597
598 static av_cold int alac_decode_init(AVCodecContext * avctx)
599 {
600     int ret;
601     ALACContext *alac = avctx->priv_data;
602     alac->avctx = avctx;
603
604     /* initialize from the extradata */
605     if (alac->avctx->extradata_size != ALAC_EXTRADATA_SIZE) {
606         av_log(avctx, AV_LOG_ERROR, "alac: expected %d extradata bytes\n",
607             ALAC_EXTRADATA_SIZE);
608         return -1;
609     }
610     if (alac_set_info(alac)) {
611         av_log(avctx, AV_LOG_ERROR, "alac: set_info failed\n");
612         return -1;
613     }
614
615     switch (alac->setinfo_sample_size) {
616     case 16: avctx->sample_fmt    = AV_SAMPLE_FMT_S16;
617              break;
618     case 24: avctx->sample_fmt    = AV_SAMPLE_FMT_S32;
619              break;
620     default: av_log(avctx, AV_LOG_ERROR, "Sample depth %d is not supported.\n",
621                     alac->setinfo_sample_size);
622              return -1;
623     }
624
625     if (alac->numchannels < 1) {
626         av_log(avctx, AV_LOG_WARNING, "Invalid channel count\n");
627         alac->numchannels = avctx->channels;
628     } else {
629         if (alac->numchannels > MAX_CHANNELS)
630             alac->numchannels = avctx->channels;
631         else
632             avctx->channels = alac->numchannels;
633     }
634     if (avctx->channels > MAX_CHANNELS) {
635         av_log(avctx, AV_LOG_ERROR, "Unsupported channel count: %d\n",
636                avctx->channels);
637         return AVERROR_PATCHWELCOME;
638     }
639
640     if ((ret = allocate_buffers(alac)) < 0) {
641         av_log(avctx, AV_LOG_ERROR, "Error allocating buffers\n");
642         return ret;
643     }
644
645     return 0;
646 }
647
648 AVCodec ff_alac_decoder = {
649     .name           = "alac",
650     .type           = AVMEDIA_TYPE_AUDIO,
651     .id             = CODEC_ID_ALAC,
652     .priv_data_size = sizeof(ALACContext),
653     .init           = alac_decode_init,
654     .close          = alac_decode_close,
655     .decode         = alac_decode_frame,
656     .long_name = NULL_IF_CONFIG_SMALL("ALAC (Apple Lossless Audio Codec)"),
657 };