]> git.sesse.net Git - ffmpeg/blob - libavcodec/alac.c
5ff8cad8b416c7a2dee2ad6956bea2a815b24dd7
[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
370     /* short-circuit null buffers */
371     if (!inbuffer || !input_buffer_size)
372         return -1;
373
374     init_get_bits(&alac->gb, inbuffer, input_buffer_size * 8);
375
376     channels = get_bits(&alac->gb, 3) + 1;
377     if (channels != avctx->channels) {
378         av_log(avctx, AV_LOG_ERROR, "frame header channel count mismatch\n");
379         return AVERROR_INVALIDDATA;
380     }
381
382     /* 2^result = something to do with output waiting.
383      * perhaps matters if we read > 1 frame in a pass?
384      */
385     skip_bits(&alac->gb, 4);
386
387     skip_bits(&alac->gb, 12); /* unknown, skip 12 bits */
388
389     /* the output sample size is stored soon */
390     hassize = get_bits1(&alac->gb);
391
392     alac->extra_bits = get_bits(&alac->gb, 2) << 3;
393
394     /* whether the frame is compressed */
395     isnotcompressed = get_bits1(&alac->gb);
396
397     if (hassize) {
398         /* now read the number of samples as a 32bit integer */
399         outputsamples = get_bits_long(&alac->gb, 32);
400         if(outputsamples > alac->setinfo_max_samples_per_frame){
401             av_log(avctx, AV_LOG_ERROR, "outputsamples %d > %d\n", outputsamples, alac->setinfo_max_samples_per_frame);
402             return -1;
403         }
404     } else
405         outputsamples = alac->setinfo_max_samples_per_frame;
406
407     alac->bytespersample = channels * av_get_bytes_per_sample(avctx->sample_fmt);
408
409     if(outputsamples > *outputsize / alac->bytespersample){
410         av_log(avctx, AV_LOG_ERROR, "sample buffer too small\n");
411         return -1;
412     }
413
414     *outputsize = outputsamples * alac->bytespersample;
415     readsamplesize = alac->setinfo_sample_size - alac->extra_bits + channels - 1;
416     if (readsamplesize > MIN_CACHE_BITS) {
417         av_log(avctx, AV_LOG_ERROR, "readsamplesize too big (%d)\n", readsamplesize);
418         return -1;
419     }
420
421     if (!isnotcompressed) {
422         /* so it is compressed */
423         int16_t predictor_coef_table[MAX_CHANNELS][32];
424         int predictor_coef_num[MAX_CHANNELS];
425         int prediction_type[MAX_CHANNELS];
426         int prediction_quantitization[MAX_CHANNELS];
427         int ricemodifier[MAX_CHANNELS];
428         int i, chan;
429
430         interlacing_shift = get_bits(&alac->gb, 8);
431         interlacing_leftweight = get_bits(&alac->gb, 8);
432
433         for (chan = 0; chan < channels; chan++) {
434             prediction_type[chan] = get_bits(&alac->gb, 4);
435             prediction_quantitization[chan] = get_bits(&alac->gb, 4);
436
437             ricemodifier[chan] = get_bits(&alac->gb, 3);
438             predictor_coef_num[chan] = get_bits(&alac->gb, 5);
439
440             /* read the predictor table */
441             for (i = 0; i < predictor_coef_num[chan]; i++)
442                 predictor_coef_table[chan][i] = (int16_t)get_bits(&alac->gb, 16);
443         }
444
445         if (alac->extra_bits) {
446             int i, ch;
447             for (i = 0; i < outputsamples; i++) {
448                 for (ch = 0; ch < channels; ch++)
449                     alac->extra_bits_buffer[ch][i] = get_bits(&alac->gb, alac->extra_bits);
450             }
451         }
452         for (chan = 0; chan < channels; chan++) {
453             bastardized_rice_decompress(alac,
454                                         alac->predicterror_buffer[chan],
455                                         outputsamples,
456                                         readsamplesize,
457                                         alac->setinfo_rice_initialhistory,
458                                         alac->setinfo_rice_kmodifier,
459                                         ricemodifier[chan] * alac->setinfo_rice_historymult / 4,
460                                         (1 << alac->setinfo_rice_kmodifier) - 1);
461
462             if (prediction_type[chan] == 0) {
463                 /* adaptive fir */
464                 predictor_decompress_fir_adapt(alac->predicterror_buffer[chan],
465                                                alac->outputsamples_buffer[chan],
466                                                outputsamples,
467                                                readsamplesize,
468                                                predictor_coef_table[chan],
469                                                predictor_coef_num[chan],
470                                                prediction_quantitization[chan]);
471             } else {
472                 av_log(avctx, AV_LOG_ERROR, "FIXME: unhandled prediction type: %i\n", prediction_type[chan]);
473                 /* I think the only other prediction type (or perhaps this is
474                  * just a boolean?) runs adaptive fir twice.. like:
475                  * predictor_decompress_fir_adapt(predictor_error, tempout, ...)
476                  * predictor_decompress_fir_adapt(predictor_error, outputsamples ...)
477                  * little strange..
478                  */
479             }
480         }
481     } else {
482         /* not compressed, easy case */
483         int i, chan;
484         if (alac->setinfo_sample_size <= 16) {
485         for (i = 0; i < outputsamples; i++)
486             for (chan = 0; chan < channels; chan++) {
487                 alac->outputsamples_buffer[chan][i] = get_sbits_long(&alac->gb,
488                                                                      alac->setinfo_sample_size);
489             }
490         } else {
491             for (i = 0; i < outputsamples; i++) {
492                 for (chan = 0; chan < channels; chan++) {
493                     alac->outputsamples_buffer[chan][i] = get_bits(&alac->gb,
494                                                           alac->setinfo_sample_size);
495                     alac->outputsamples_buffer[chan][i] = sign_extend(alac->outputsamples_buffer[chan][i],
496                                                                       alac->setinfo_sample_size);
497                 }
498             }
499         }
500         alac->extra_bits = 0;
501         interlacing_shift = 0;
502         interlacing_leftweight = 0;
503     }
504     if (get_bits(&alac->gb, 3) != 7)
505         av_log(avctx, AV_LOG_ERROR, "Error : Wrong End Of Frame\n");
506
507     if (channels == 2 && interlacing_leftweight) {
508         decorrelate_stereo(alac->outputsamples_buffer, outputsamples,
509                            interlacing_shift, interlacing_leftweight);
510     }
511
512     if (alac->extra_bits) {
513         append_extra_bits(alac->outputsamples_buffer, alac->extra_bits_buffer,
514                           alac->extra_bits, alac->numchannels, outputsamples);
515     }
516
517     switch(alac->setinfo_sample_size) {
518     case 16:
519         if (channels == 2) {
520             interleave_stereo_16(alac->outputsamples_buffer, outbuffer,
521                                  outputsamples);
522         } else {
523             int i;
524             for (i = 0; i < outputsamples; i++) {
525                 ((int16_t*)outbuffer)[i] = alac->outputsamples_buffer[0][i];
526             }
527         }
528         break;
529     case 24:
530         if (channels == 2) {
531             interleave_stereo_24(alac->outputsamples_buffer, outbuffer,
532                                  outputsamples);
533         } else {
534             int i;
535             for (i = 0; i < outputsamples; i++)
536                 ((int32_t *)outbuffer)[i] = alac->outputsamples_buffer[0][i] << 8;
537         }
538         break;
539     }
540
541     if (input_buffer_size * 8 - get_bits_count(&alac->gb) > 8)
542         av_log(avctx, AV_LOG_ERROR, "Error : %d bits left\n", input_buffer_size * 8 - get_bits_count(&alac->gb));
543
544     return input_buffer_size;
545 }
546
547 static av_cold int alac_decode_close(AVCodecContext *avctx)
548 {
549     ALACContext *alac = avctx->priv_data;
550
551     int chan;
552     for (chan = 0; chan < alac->numchannels; chan++) {
553         av_freep(&alac->predicterror_buffer[chan]);
554         av_freep(&alac->outputsamples_buffer[chan]);
555         av_freep(&alac->extra_bits_buffer[chan]);
556     }
557
558     return 0;
559 }
560
561 static int allocate_buffers(ALACContext *alac)
562 {
563     int chan;
564     for (chan = 0; chan < alac->numchannels; chan++) {
565         alac->predicterror_buffer[chan] =
566             av_malloc(alac->setinfo_max_samples_per_frame * 4);
567
568         alac->outputsamples_buffer[chan] =
569             av_malloc(alac->setinfo_max_samples_per_frame * 4);
570
571         alac->extra_bits_buffer[chan] = av_malloc(alac->setinfo_max_samples_per_frame * 4);
572
573         if (!alac->predicterror_buffer[chan]  ||
574             !alac->outputsamples_buffer[chan] ||
575             !alac->extra_bits_buffer[chan]) {
576             alac_decode_close(alac->avctx);
577             return AVERROR(ENOMEM);
578         }
579     }
580     return 0;
581 }
582
583 static int alac_set_info(ALACContext *alac)
584 {
585     const unsigned char *ptr = alac->avctx->extradata;
586
587     ptr += 4; /* size */
588     ptr += 4; /* alac */
589     ptr += 4; /* 0 ? */
590
591     if(AV_RB32(ptr) >= UINT_MAX/4){
592         av_log(alac->avctx, AV_LOG_ERROR, "setinfo_max_samples_per_frame too large\n");
593         return -1;
594     }
595
596     /* buffer size / 2 ? */
597     alac->setinfo_max_samples_per_frame = bytestream_get_be32(&ptr);
598     ptr++;                          /* ??? */
599     alac->setinfo_sample_size           = *ptr++;
600     alac->setinfo_rice_historymult      = *ptr++;
601     alac->setinfo_rice_initialhistory   = *ptr++;
602     alac->setinfo_rice_kmodifier        = *ptr++;
603     alac->numchannels                   = *ptr++;
604     bytestream_get_be16(&ptr);      /* ??? */
605     bytestream_get_be32(&ptr);      /* max coded frame size */
606     bytestream_get_be32(&ptr);      /* bitrate ? */
607     bytestream_get_be32(&ptr);      /* samplerate */
608
609     return 0;
610 }
611
612 static av_cold int alac_decode_init(AVCodecContext * avctx)
613 {
614     int ret;
615     ALACContext *alac = avctx->priv_data;
616     alac->avctx = avctx;
617
618     /* initialize from the extradata */
619     if (alac->avctx->extradata_size != ALAC_EXTRADATA_SIZE) {
620         av_log(avctx, AV_LOG_ERROR, "alac: expected %d extradata bytes\n",
621             ALAC_EXTRADATA_SIZE);
622         return -1;
623     }
624     if (alac_set_info(alac)) {
625         av_log(avctx, AV_LOG_ERROR, "alac: set_info failed\n");
626         return -1;
627     }
628
629     switch (alac->setinfo_sample_size) {
630     case 16: avctx->sample_fmt    = AV_SAMPLE_FMT_S16;
631              break;
632     case 24: avctx->sample_fmt    = AV_SAMPLE_FMT_S32;
633              break;
634     default: av_log(avctx, AV_LOG_ERROR, "Sample depth %d is not supported.\n",
635                     alac->setinfo_sample_size);
636              return -1;
637     }
638
639     if (alac->numchannels < 1) {
640         av_log(avctx, AV_LOG_WARNING, "Invalid channel count\n");
641         alac->numchannels = avctx->channels;
642     } else {
643         if (alac->numchannels > MAX_CHANNELS)
644             alac->numchannels = avctx->channels;
645         else
646             avctx->channels = alac->numchannels;
647     }
648     if (avctx->channels > MAX_CHANNELS) {
649         av_log(avctx, AV_LOG_ERROR, "Unsupported channel count: %d\n",
650                avctx->channels);
651         return AVERROR_PATCHWELCOME;
652     }
653
654     if ((ret = allocate_buffers(alac)) < 0) {
655         av_log(avctx, AV_LOG_ERROR, "Error allocating buffers\n");
656         return ret;
657     }
658
659     return 0;
660 }
661
662 AVCodec ff_alac_decoder = {
663     .name           = "alac",
664     .type           = AVMEDIA_TYPE_AUDIO,
665     .id             = CODEC_ID_ALAC,
666     .priv_data_size = sizeof(ALACContext),
667     .init           = alac_decode_init,
668     .close          = alac_decode_close,
669     .decode         = alac_decode_frame,
670     .long_name = NULL_IF_CONFIG_SMALL("ALAC (Apple Lossless Audio Codec)"),
671 };