2 * ALAC (Apple Lossless Audio Codec) decoder
3 * Copyright (c) 2005 David Hammerton
5 * This file is part of FFmpeg.
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.
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.
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
24 * ALAC (Apple Lossless Audio Codec) decoder
25 * @author 2005 David Hammerton
27 * For more information on the ALAC format, visit:
28 * http://crazney.net/programs/itunes/alac.html
30 * Note: This decoder expects a 36- (0x24-)byte QuickTime atom to be
31 * passed through the extradata[_size] fields. This atom is tacked onto
32 * the end of an 'alac' stsd atom and has the following format:
33 * bytes 0-3 atom size (0x24), big-endian
34 * bytes 4-7 atom type ('alac', not the 'alac' tag from start of stsd)
35 * bytes 8-35 data bytes needed by decoder
41 * 32bit max sample per frame
45 * 8bit initial history
49 * 32bit max coded frame size
56 #include "bitstream.h"
57 #include "bytestream.h"
59 #define ALAC_EXTRADATA_SIZE 36
60 #define MAX_CHANNELS 2
64 AVCodecContext
*avctx
;
66 /* init to 0; first frame decode should initialize from extradata and
68 int context_initialized
;
75 int32_t *predicterror_buffer
[MAX_CHANNELS
];
77 int32_t *outputsamples_buffer
[MAX_CHANNELS
];
79 /* stuff from setinfo */
80 uint32_t setinfo_max_samples_per_frame
; /* 0x1000 = 4096 */ /* max samples per frame? */
81 uint8_t setinfo_7a
; /* 0x00 */
82 uint8_t setinfo_sample_size
; /* 0x10 */
83 uint8_t setinfo_rice_historymult
; /* 0x28 */
84 uint8_t setinfo_rice_initialhistory
; /* 0x0a */
85 uint8_t setinfo_rice_kmodifier
; /* 0x0e */
86 uint8_t setinfo_7f
; /* 0x02 */
87 uint16_t setinfo_80
; /* 0x00ff */
88 uint32_t setinfo_82
; /* 0x000020e7 */ /* max sample size?? */
89 uint32_t setinfo_86
; /* 0x00069fe4 */ /* bit rate (average)?? */
90 uint32_t setinfo_8a_rate
; /* 0x0000ac44 */
91 /* end setinfo stuff */
95 static void allocate_buffers(ALACContext
*alac
)
98 for (chan
= 0; chan
< MAX_CHANNELS
; chan
++) {
99 alac
->predicterror_buffer
[chan
] =
100 av_malloc(alac
->setinfo_max_samples_per_frame
* 4);
102 alac
->outputsamples_buffer
[chan
] =
103 av_malloc(alac
->setinfo_max_samples_per_frame
* 4);
107 static int alac_set_info(ALACContext
*alac
)
109 unsigned char *ptr
= alac
->avctx
->extradata
;
115 if(AV_RB32(ptr
) >= UINT_MAX
/4){
116 av_log(alac
->avctx
, AV_LOG_ERROR
, "setinfo_max_samples_per_frame too large\n");
120 /* buffer size / 2 ? */
121 alac
->setinfo_max_samples_per_frame
= bytestream_get_be32(&ptr
);
122 alac
->setinfo_7a
= *ptr
++;
123 alac
->setinfo_sample_size
= *ptr
++;
124 alac
->setinfo_rice_historymult
= *ptr
++;
125 alac
->setinfo_rice_initialhistory
= *ptr
++;
126 alac
->setinfo_rice_kmodifier
= *ptr
++;
128 alac
->setinfo_7f
= *ptr
++;
129 alac
->setinfo_80
= bytestream_get_be16(&ptr
);
130 /* max coded frame size */
131 alac
->setinfo_82
= bytestream_get_be32(&ptr
);
133 alac
->setinfo_86
= bytestream_get_be32(&ptr
);
135 alac
->setinfo_8a_rate
= bytestream_get_be32(&ptr
);
137 allocate_buffers(alac
);
142 static inline int count_leading_zeros(int32_t input
)
144 return 31-av_log2(input
);
147 static void bastardized_rice_decompress(ALACContext
*alac
,
148 int32_t *output_buffer
,
150 int readsamplesize
, /* arg_10 */
151 int rice_initialhistory
, /* arg424->b */
152 int rice_kmodifier
, /* arg424->d */
153 int rice_historymult
, /* arg424->c */
154 int rice_kmodifier_mask
/* arg424->e */
158 unsigned int history
= rice_initialhistory
;
159 int sign_modifier
= 0;
161 for (output_count
= 0; output_count
< output_size
; output_count
++) {
166 /* read x - number of 1s before 0 represent the rice */
167 while (x
<= 8 && get_bits1(&alac
->gb
)) {
172 if (x
> 8) { /* RICE THRESHOLD */
173 /* use alternative encoding */
176 value
= get_bits(&alac
->gb
, readsamplesize
);
178 /* mask value to readsamplesize size */
179 if (readsamplesize
!= 32)
180 value
&= (0xffffffff >> (32 - readsamplesize
));
184 /* standard rice encoding */
186 int k
; /* size of extra bits */
188 /* read k, that is bits as is */
189 k
= 31 - rice_kmodifier
- count_leading_zeros((history
>> 9) + 3);
197 extrabits
= show_bits(&alac
->gb
, k
);
199 /* multiply x by 2^k - 1, as part of their strange algorithm */
204 get_bits(&alac
->gb
, k
);
206 get_bits(&alac
->gb
, k
- 1);
210 x_modified
= sign_modifier
+ x
;
211 final_val
= (x_modified
+ 1) / 2;
212 if (x_modified
& 1) final_val
*= -1;
214 output_buffer
[output_count
] = final_val
;
218 /* now update the history */
219 history
+= x_modified
* rice_historymult
220 - ((history
* rice_historymult
) >> 9);
222 if (x_modified
> 0xffff)
225 /* special case: there may be compressed blocks of 0 */
226 if ((history
< 128) && (output_count
+1 < output_size
)) {
232 while (x
<= 8 && get_bits1(&alac
->gb
)) {
237 block_size
= get_bits(&alac
->gb
, 16);
238 block_size
&= 0xffff;
243 k
= count_leading_zeros(history
) + ((history
+ 16) >> 6 /* / 64 */) - 24;
245 extrabits
= show_bits(&alac
->gb
, k
);
247 block_size
= (((1 << k
) - 1) & rice_kmodifier_mask
) * x
253 get_bits(&alac
->gb
, k
- 1);
255 get_bits(&alac
->gb
, k
);
259 if (block_size
> 0) {
260 memset(&output_buffer
[output_count
+1], 0, block_size
* 4);
261 output_count
+= block_size
;
264 if (block_size
> 0xffff)
272 #define SIGN_EXTENDED32(val, bits) ((val << (32 - bits)) >> (32 - bits))
274 #define SIGN_ONLY(v) \
279 static void predictor_decompress_fir_adapt(int32_t *error_buffer
,
283 int16_t *predictor_coef_table
,
284 int predictor_coef_num
,
285 int predictor_quantitization
)
289 /* first sample always copies */
290 *buffer_out
= *error_buffer
;
292 if (!predictor_coef_num
) {
293 if (output_size
<= 1)
296 memcpy(buffer_out
+1, error_buffer
+1, (output_size
-1) * 4);
300 if (predictor_coef_num
== 0x1f) { /* 11111 - max value of predictor_coef_num */
301 /* second-best case scenario for fir decompression,
302 * error describes a small difference from the previous sample only
304 if (output_size
<= 1)
306 for (i
= 0; i
< output_size
- 1; i
++) {
310 prev_value
= buffer_out
[i
];
311 error_value
= error_buffer
[i
+1];
313 SIGN_EXTENDED32((prev_value
+ error_value
), readsamplesize
);
318 /* read warm-up samples */
319 if (predictor_coef_num
> 0)
320 for (i
= 0; i
< predictor_coef_num
; i
++) {
323 val
= buffer_out
[i
] + error_buffer
[i
+1];
324 val
= SIGN_EXTENDED32(val
, readsamplesize
);
325 buffer_out
[i
+1] = val
;
329 /* 4 and 8 are very common cases (the only ones i've seen). these
330 * should be unrolled and optimised
332 if (predictor_coef_num
== 4) {
333 /* FIXME: optimised general case */
337 if (predictor_coef_table
== 8) {
338 /* FIXME: optimised general case */
344 if (predictor_coef_num
> 0) {
345 for (i
= predictor_coef_num
+ 1; i
< output_size
; i
++) {
349 int error_val
= error_buffer
[i
];
351 for (j
= 0; j
< predictor_coef_num
; j
++) {
352 sum
+= (buffer_out
[predictor_coef_num
-j
] - buffer_out
[0]) *
353 predictor_coef_table
[j
];
356 outval
= (1 << (predictor_quantitization
-1)) + sum
;
357 outval
= outval
>> predictor_quantitization
;
358 outval
= outval
+ buffer_out
[0] + error_val
;
359 outval
= SIGN_EXTENDED32(outval
, readsamplesize
);
361 buffer_out
[predictor_coef_num
+1] = outval
;
364 int predictor_num
= predictor_coef_num
- 1;
366 while (predictor_num
>= 0 && error_val
> 0) {
367 int val
= buffer_out
[0] - buffer_out
[predictor_coef_num
- predictor_num
];
368 int sign
= SIGN_ONLY(val
);
370 predictor_coef_table
[predictor_num
] -= sign
;
372 val
*= sign
; /* absolute value */
374 error_val
-= ((val
>> predictor_quantitization
) *
375 (predictor_coef_num
- predictor_num
));
379 } else if (error_val
< 0) {
380 int predictor_num
= predictor_coef_num
- 1;
382 while (predictor_num
>= 0 && error_val
< 0) {
383 int val
= buffer_out
[0] - buffer_out
[predictor_coef_num
- predictor_num
];
384 int sign
= - SIGN_ONLY(val
);
386 predictor_coef_table
[predictor_num
] -= sign
;
388 val
*= sign
; /* neg value */
390 error_val
-= ((val
>> predictor_quantitization
) *
391 (predictor_coef_num
- predictor_num
));
402 static void reconstruct_stereo_16(int32_t *buffer
[MAX_CHANNELS
],
404 int numchannels
, int numsamples
,
405 uint8_t interlacing_shift
,
406 uint8_t interlacing_leftweight
)
412 /* weighted interlacing */
413 if (interlacing_leftweight
) {
414 for (i
= 0; i
< numsamples
; i
++) {
420 a
-= (b
* interlacing_leftweight
) >> interlacing_shift
;
423 buffer_out
[i
*numchannels
] = b
;
424 buffer_out
[i
*numchannels
+ 1] = a
;
430 /* otherwise basic interlacing took place */
431 for (i
= 0; i
< numsamples
; i
++) {
435 right
= buffer
[1][i
];
437 buffer_out
[i
*numchannels
] = left
;
438 buffer_out
[i
*numchannels
+ 1] = right
;
442 static int alac_decode_frame(AVCodecContext
*avctx
,
443 void *outbuffer
, int *outputsize
,
444 uint8_t *inbuffer
, int input_buffer_size
)
446 ALACContext
*alac
= avctx
->priv_data
;
449 int32_t outputsamples
;
454 uint8_t interlacing_shift
;
455 uint8_t interlacing_leftweight
;
457 /* short-circuit null buffers */
458 if (!inbuffer
|| !input_buffer_size
)
459 return input_buffer_size
;
461 /* initialize from the extradata */
462 if (!alac
->context_initialized
) {
463 if (alac
->avctx
->extradata_size
!= ALAC_EXTRADATA_SIZE
) {
464 av_log(avctx
, AV_LOG_ERROR
, "alac: expected %d extradata bytes\n",
465 ALAC_EXTRADATA_SIZE
);
466 return input_buffer_size
;
468 if (alac_set_info(alac
)) {
469 av_log(avctx
, AV_LOG_ERROR
, "alac: set_info failed\n");
470 return input_buffer_size
;
472 alac
->context_initialized
= 1;
475 init_get_bits(&alac
->gb
, inbuffer
, input_buffer_size
* 8);
477 channels
= get_bits(&alac
->gb
, 3) + 1;
478 if (channels
> MAX_CHANNELS
) {
479 av_log(avctx
, AV_LOG_ERROR
, "channels > %d not supported\n",
481 return input_buffer_size
;
484 /* 2^result = something to do with output waiting.
485 * perhaps matters if we read > 1 frame in a pass?
487 get_bits(&alac
->gb
, 4);
489 get_bits(&alac
->gb
, 12); /* unknown, skip 12 bits */
491 /* the output sample size is stored soon */
492 hassize
= get_bits(&alac
->gb
, 1);
494 wasted_bytes
= get_bits(&alac
->gb
, 2); /* unknown ? */
496 /* whether the frame is compressed */
497 isnotcompressed
= get_bits(&alac
->gb
, 1);
500 /* now read the number of samples as a 32bit integer */
501 outputsamples
= get_bits(&alac
->gb
, 32);
503 outputsamples
= alac
->setinfo_max_samples_per_frame
;
505 *outputsize
= outputsamples
* alac
->bytespersample
;
506 readsamplesize
= alac
->setinfo_sample_size
- (wasted_bytes
* 8) + channels
- 1;
508 if (!isnotcompressed
) {
509 /* so it is compressed */
510 int16_t predictor_coef_table
[channels
][32];
511 int predictor_coef_num
[channels
];
512 int prediction_type
[channels
];
513 int prediction_quantitization
[channels
];
514 int ricemodifier
[channels
];
517 interlacing_shift
= get_bits(&alac
->gb
, 8);
518 interlacing_leftweight
= get_bits(&alac
->gb
, 8);
520 for (chan
= 0; chan
< channels
; chan
++) {
521 prediction_type
[chan
] = get_bits(&alac
->gb
, 4);
522 prediction_quantitization
[chan
] = get_bits(&alac
->gb
, 4);
524 ricemodifier
[chan
] = get_bits(&alac
->gb
, 3);
525 predictor_coef_num
[chan
] = get_bits(&alac
->gb
, 5);
527 /* read the predictor table */
528 for (i
= 0; i
< predictor_coef_num
[chan
]; i
++)
529 predictor_coef_table
[chan
][i
] = (int16_t)get_bits(&alac
->gb
, 16);
533 av_log(avctx
, AV_LOG_ERROR
, "FIXME: unimplemented, unhandling of wasted_bytes\n");
535 for (chan
= 0; chan
< channels
; chan
++) {
536 bastardized_rice_decompress(alac
,
537 alac
->predicterror_buffer
[chan
],
540 alac
->setinfo_rice_initialhistory
,
541 alac
->setinfo_rice_kmodifier
,
542 ricemodifier
[chan
] * alac
->setinfo_rice_historymult
/ 4,
543 (1 << alac
->setinfo_rice_kmodifier
) - 1);
545 if (prediction_type
[chan
] == 0) {
547 predictor_decompress_fir_adapt(alac
->predicterror_buffer
[chan
],
548 alac
->outputsamples_buffer
[chan
],
551 predictor_coef_table
[chan
],
552 predictor_coef_num
[chan
],
553 prediction_quantitization
[chan
]);
555 av_log(avctx
, AV_LOG_ERROR
, "FIXME: unhandled prediction type: %i\n", prediction_type
[chan
]);
556 /* I think the only other prediction type (or perhaps this is
557 * just a boolean?) runs adaptive fir twice.. like:
558 * predictor_decompress_fir_adapt(predictor_error, tempout, ...)
559 * predictor_decompress_fir_adapt(predictor_error, outputsamples ...)
565 /* not compressed, easy case */
566 if (alac
->setinfo_sample_size
<= 16) {
568 for (chan
= 0; chan
< channels
; chan
++)
569 for (i
= 0; i
< outputsamples
; i
++) {
572 audiobits
= get_bits(&alac
->gb
, alac
->setinfo_sample_size
);
573 audiobits
= SIGN_EXTENDED32(audiobits
, readsamplesize
);
575 alac
->outputsamples_buffer
[chan
][i
] = audiobits
;
579 for (chan
= 0; chan
< channels
; chan
++)
580 for (i
= 0; i
< outputsamples
; i
++) {
583 audiobits
= get_bits(&alac
->gb
, 16);
584 /* special case of sign extension..
585 * as we'll be ORing the low 16bits into this */
586 audiobits
= audiobits
<< 16;
587 audiobits
= audiobits
>> (32 - alac
->setinfo_sample_size
);
588 audiobits
|= get_bits(&alac
->gb
, alac
->setinfo_sample_size
- 16);
590 alac
->outputsamples_buffer
[chan
][i
] = audiobits
;
593 /* wasted_bytes = 0; */
594 interlacing_shift
= 0;
595 interlacing_leftweight
= 0;
598 switch(alac
->setinfo_sample_size
) {
601 reconstruct_stereo_16(alac
->outputsamples_buffer
,
606 interlacing_leftweight
);
609 for (i
= 0; i
< outputsamples
; i
++) {
610 int16_t sample
= alac
->outputsamples_buffer
[0][i
];
611 ((int16_t*)outbuffer
)[i
* alac
->numchannels
] = sample
;
618 av_log(avctx
, AV_LOG_ERROR
, "FIXME: unimplemented sample size %i\n", alac
->setinfo_sample_size
);
624 return input_buffer_size
;
627 static int alac_decode_init(AVCodecContext
* avctx
)
629 ALACContext
*alac
= avctx
->priv_data
;
631 alac
->context_initialized
= 0;
633 alac
->samplesize
= alac
->avctx
->bits_per_sample
;
634 alac
->numchannels
= alac
->avctx
->channels
;
635 alac
->bytespersample
= (alac
->samplesize
/ 8) * alac
->numchannels
;
640 static int alac_decode_close(AVCodecContext
*avctx
)
642 ALACContext
*alac
= avctx
->priv_data
;
645 for (chan
= 0; chan
< MAX_CHANNELS
; chan
++) {
646 av_free(alac
->predicterror_buffer
[chan
]);
647 av_free(alac
->outputsamples_buffer
[chan
]);
653 AVCodec alac_decoder
= {