1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
8 * Copyright (C) 2009 Mohamed Tarek
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version 2
13 * of the License, or (at your option) any later version.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
25 #include "libcook/cook.h"
31 COOKContext q IBSS_ATTR
;
33 static void init_rm(RMContext
*rmctx
)
35 memcpy(rmctx
, (void*)(( (intptr_t)ci
->id3
->id3v2buf
+ 3 ) &~ 3), sizeof(RMContext
));
38 /* this is the codec entry point */
39 enum codec_status
codec_main(void)
41 static size_t buff_size
;
42 int datasize
, res
, consumed
, i
, time_offset
;
44 int16_t outbuf
[2048] __attribute__((aligned(32)));
46 uint32_t packet_count
;
47 int scrambling_unit_size
, num_units
;
51 DEBUGF("codec init failed\n");
54 while (!*ci
->taginfo_ready
&& !ci
->stop_codec
)
57 codec_set_replaygain(ci
->id3
);
58 ci
->memset(&rmctx
,0,sizeof(RMContext
));
59 ci
->memset(&pkt
,0,sizeof(RMPacket
));
60 ci
->memset(&q
,0,sizeof(COOKContext
));
64 ci
->configure(DSP_SET_FREQUENCY
, ci
->id3
->frequency
);
65 ci
->configure(DSP_SET_SAMPLE_DEPTH
, 16);
66 ci
->configure(DSP_SET_STEREO_MODE
, rmctx
.nb_channels
== 1 ?
67 STEREO_MONO
: STEREO_INTERLEAVED
);
69 packet_count
= rmctx
.nb_packets
;
70 rmctx
.audio_framesize
= rmctx
.block_align
;
71 rmctx
.block_align
= rmctx
.sub_packet_size
;
72 fs
= rmctx
.audio_framesize
;
73 sps
= rmctx
.block_align
;
74 h
= rmctx
.sub_packet_h
;
75 scrambling_unit_size
= h
*fs
;
77 res
=cook_decode_init(&rmctx
, &q
);
79 DEBUGF("failed to initialize cook decoder\n");
84 ci
->advance_buffer(rmctx
.data_offset
+ DATA_HEADER_SIZE
);
86 /* The main decoder loop */
90 bit_buffer
= (uint8_t *) ci
->request_buffer(&buff_size
, scrambling_unit_size
);
91 consumed
= rm_get_packet(&bit_buffer
, &rmctx
, &pkt
);
93 DEBUGF("rm_get_packet failed\n");
97 for(i
= 0; i
< rmctx
.audio_pkt_cnt
*(fs
/sps
) ; i
++)
100 if (ci
->stop_codec
|| ci
->new_track
)
104 ci
->set_elapsed(ci
->seek_time
);
106 /* Do not allow seeking beyond the file's length */
107 if ((unsigned) ci
->seek_time
> ci
->id3
->length
) {
112 ci
->seek_buffer(rmctx
.data_offset
+ DATA_HEADER_SIZE
);
113 packet_count
= rmctx
.nb_packets
;
114 rmctx
.audio_pkt_cnt
= 0;
115 rmctx
.frame_number
= 0;
117 /* Seek to the start of the track */
118 if (ci
->seek_time
== 1) {
123 num_units
= ((ci
->seek_time
)/(sps
*1000*8/rmctx
.bit_rate
))/(h
*(fs
/sps
));
124 ci
->seek_buffer(rmctx
.data_offset
+ DATA_HEADER_SIZE
+ consumed
* num_units
);
125 bit_buffer
= (uint8_t *) ci
->request_buffer(&buff_size
, scrambling_unit_size
);
126 consumed
= rm_get_packet(&bit_buffer
, &rmctx
, &pkt
);
128 DEBUGF("rm_get_packet failed\n");
131 packet_count
= rmctx
.nb_packets
- rmctx
.audio_pkt_cnt
* num_units
;
132 rmctx
.frame_number
= ((ci
->seek_time
)/(sps
*1000*8/rmctx
.bit_rate
));
133 while(rmctx
.audiotimestamp
> (unsigned) ci
->seek_time
) {
134 rmctx
.audio_pkt_cnt
= 0;
135 ci
->seek_buffer(rmctx
.data_offset
+ DATA_HEADER_SIZE
+ consumed
* (num_units
-1));
136 bit_buffer
= (uint8_t *) ci
->request_buffer(&buff_size
, scrambling_unit_size
);
137 consumed
= rm_get_packet(&bit_buffer
, &rmctx
, &pkt
);
138 packet_count
+= rmctx
.audio_pkt_cnt
;
141 time_offset
= ci
->seek_time
- rmctx
.audiotimestamp
;
142 i
= (time_offset
/((sps
* 8 * 1000)/rmctx
.bit_rate
));
143 ci
->set_elapsed(rmctx
.audiotimestamp
+(1000*8*sps
/rmctx
.bit_rate
)*i
);
146 res
= cook_decode_frame(&rmctx
,&q
, outbuf
, &datasize
, pkt
.frames
[i
], rmctx
.block_align
);
147 rmctx
.frame_number
++;
149 /* skip the first two frames; no valid audio */
150 if(rmctx
.frame_number
< 3) continue;
152 if(res
!= rmctx
.block_align
) {
153 DEBUGF("codec error\n");
157 ci
->pcmbuf_insert(outbuf
, NULL
, q
.samples_per_frame
/ rmctx
.nb_channels
);
158 ci
->set_elapsed(rmctx
.audiotimestamp
+(1000*8*sps
/rmctx
.bit_rate
)*i
);
160 packet_count
-= rmctx
.audio_pkt_cnt
;
161 rmctx
.audio_pkt_cnt
= 0;
162 ci
->advance_buffer(consumed
);
166 if (ci
->request_next_track())