1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2005 Dave Chapman
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
23 #include "libm4a/m4a.h"
24 #include "libalac/decomp.h"
28 int32_t outputbuffer
[ALAC_MAX_CHANNELS
][ALAC_BLOCKSIZE
] IBSS_ATTR
;
30 /* this is the codec entry point */
31 enum codec_status
codec_main(void)
34 demux_res_t demux_res
;
35 stream_t input_stream
;
38 uint32_t sample_duration
;
39 uint32_t sample_byte_size
;
42 unsigned char* buffer
;
46 /* Generic codec initialisation */
47 ci
->configure(DSP_SET_STEREO_MODE
, STEREO_NONINTERLEAVED
);
48 ci
->configure(DSP_SET_SAMPLE_DEPTH
, ALAC_OUTPUT_DEPTH
-1);
53 LOGF("ALAC: Error initialising codec\n");
58 while (!*ci
->taginfo_ready
&& !ci
->stop_codec
)
61 ci
->configure(DSP_SWITCH_FREQUENCY
, ci
->id3
->frequency
);
62 codec_set_replaygain(ci
->id3
);
64 stream_create(&input_stream
,ci
);
66 /* if qtmovie_read returns successfully, the stream is up to
67 * the movie data, which can be used directly by the decoder */
68 if (!qtmovie_read(&input_stream
, &demux_res
)) {
69 LOGF("ALAC: Error initialising file\n");
74 /* initialise the sound converter */
75 create_alac(demux_res
.sound_sample_size
, demux_res
.num_channels
,&alac
);
76 alac_set_info(&alac
, demux_res
.codecdata
);
80 /* The main decoding loop */
81 while (i
< demux_res
.num_sample_byte_sizes
) {
83 if (ci
->stop_codec
|| ci
->new_track
) {
87 /* Deal with any pending seek requests */
89 if (alac_seek(&demux_res
, &input_stream
,
90 ((ci
->seek_time
-1)/10) * (ci
->id3
->frequency
/100),
91 &samplesdone
, (int *)&i
)) {
92 elapsedtime
=(samplesdone
*10)/(ci
->id3
->frequency
/100);
93 ci
->set_elapsed(elapsedtime
);
98 /* Lookup the length (in samples and bytes) of block i */
99 if (!get_sample_info(&demux_res
, i
, &sample_duration
,
100 &sample_byte_size
)) {
101 LOGF("ALAC: Error in get_sample_info\n");
102 retval
= CODEC_ERROR
;
106 /* Request the required number of bytes from the input buffer */
108 buffer
=ci
->request_buffer(&n
,sample_byte_size
);
109 if (n
!=sample_byte_size
) {
110 retval
= CODEC_ERROR
;
114 /* Decode one block - returned samples will be host-endian */
116 samplesdecoded
=alac_decode_frame(&alac
, buffer
, outputbuffer
, ci
->yield
);
118 /* Advance codec buffer n bytes */
119 ci
->advance_buffer(n
);
121 /* Output the audio */
123 ci
->pcmbuf_insert(outputbuffer
[0], outputbuffer
[1], samplesdecoded
);
125 /* Update the elapsed-time indicator */
126 samplesdone
+=sample_duration
;
127 elapsedtime
=(samplesdone
*10)/(ci
->id3
->frequency
/100);
128 ci
->set_elapsed(elapsedtime
);
130 /* Keep track of current position - for resuming */
131 ci
->set_offset(elapsedtime
);
138 LOGF("ALAC: Decoded %ld samples\n",samplesdone
);
140 if (ci
->request_next_track())