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