1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2002 Björn Stenberg
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
25 #include <timefuncs.h>
41 #include "buffering.h"
42 #include "mp3_playback.h"
44 #include "backlight.h"
48 #include "powermgmt.h"
58 #if CONFIG_CODEC == SWCODEC
59 unsigned char codecbuf
[CODEC_SIZE
];
61 void *sim_codec_load_ram(char* codecptr
, int size
, void **pd
);
62 void sim_codec_close(void *pd
);
64 #define sim_codec_close(x)
65 extern unsigned char codecbuf
[];
68 extern void* plugin_get_audio_buffer(size_t *buffer_size
);
70 struct codec_api ci
= {
75 NULL
, /* taginfo_ready */
76 false, /* stop_codec */
79 NULL
, /* get_codec_memory */
80 NULL
, /* pcmbuf_insert */
81 NULL
, /* set_elapsed */
82 NULL
, /* read_filebuf */
83 NULL
, /* request_buffer */
84 NULL
, /* advance_buffer */
85 NULL
, /* advance_buffer_loc */
86 NULL
, /* seek_buffer */
87 NULL
, /* seek_complete */
88 NULL
, /* mp3_get_filepos */
89 NULL
, /* request_next_track */
90 NULL
, /* discard_codec */
91 NULL
, /* set_offset */
98 /* strings and memory */
110 #if defined(DEBUG) || defined(SIMULATOR)
113 #ifdef ROCKBOX_HAS_LOGF
127 #if defined(HAVE_RECORDING) && !defined(SIMULATOR)
128 false, /* stop_encoder */
129 0, /* enc_codec_loaded */
138 (open_func
)PREFIX(open
),
143 round_value_to_list32
,
147 /* new stuff at the end, sort into place next time
148 the API gets incompatible */
150 #ifdef CACHE_FUNCTIONS_AS_CALL
155 NULL
, /* struct dsp_config *dsp */
170 void codec_get_full_path(char *path
, const char *codec_root_fn
)
172 snprintf(path
, MAX_PATH
-1, CODECS_DIR
"/%s." CODEC_EXTENSION
,
176 static int codec_load_ram(int size
, struct codec_api
*api
)
178 struct codec_header
*hdr
;
181 hdr
= (struct codec_header
*)codecbuf
;
183 if (size
<= (signed)sizeof(struct codec_header
)
184 || (hdr
->magic
!= CODEC_MAGIC
185 #ifdef HAVE_RECORDING
186 && hdr
->magic
!= CODEC_ENC_MAGIC
189 || hdr
->target_id
!= TARGET_ID
190 || hdr
->load_addr
!= codecbuf
191 || hdr
->end_addr
> codecbuf
+ CODEC_SIZE
)
193 logf("codec header error");
196 #else /* SIMULATOR */
199 hdr
= sim_codec_load_ram(codecbuf
, size
, &pd
);
205 || (hdr
->magic
!= CODEC_MAGIC
206 #ifdef HAVE_RECORDING
207 && hdr
->magic
!= CODEC_ENC_MAGIC
210 || hdr
->target_id
!= TARGET_ID
) {
214 #endif /* SIMULATOR */
215 if (hdr
->api_version
> CODEC_API_VERSION
216 || hdr
->api_version
< CODEC_MIN_API_VERSION
) {
222 status
= hdr
->entry_point(api
);
229 int codec_load_buf(unsigned int hid
, struct codec_api
*api
) {
231 rc
= bufread(hid
, CODEC_SIZE
, codecbuf
);
233 logf("error loading codec");
236 api
->discard_codec();
237 return codec_load_ram(rc
, api
);
240 int codec_load_file(const char *plugin
, struct codec_api
*api
)
247 codec_get_full_path(path
, plugin
);
249 fd
= open(path
, O_RDONLY
);
251 snprintf(msgbuf
, sizeof(msgbuf
)-1, "Couldn't load codec: %s", path
);
252 logf("Codec load error:%d", fd
);
253 gui_syncsplash(HZ
*2, msgbuf
);
257 rc
= read(fd
, &codecbuf
[0], CODEC_SIZE
);
260 logf("Codec read error");
264 return codec_load_ram((size_t)rc
, api
);