1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2002 Björn Stenberg
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 ****************************************************************************/
27 #include <timefuncs.h>
41 #include "buffering.h"
42 #include "mp3_playback.h"
43 #include "backlight.h"
47 #include "powermgmt.h"
57 #define PREFIX(_x_) sim_ ## _x_
63 #if CONFIG_CODEC == SWCODEC
64 unsigned char codecbuf
[CODEC_SIZE
];
66 void *sim_codec_load_ram(char* codecptr
, int size
, void **pd
);
67 void sim_codec_close(void *pd
);
69 #define sim_codec_close(x)
74 extern void* plugin_get_audio_buffer(size_t *buffer_size
);
76 struct codec_api ci
= {
81 NULL
, /* taginfo_ready */
82 false, /* stop_codec */
85 NULL
, /* struct dsp_config *dsp */
86 NULL
, /* codec_get_buffer */
87 NULL
, /* pcmbuf_insert */
88 NULL
, /* set_elapsed */
89 NULL
, /* read_filebuf */
90 NULL
, /* request_buffer */
91 NULL
, /* advance_buffer */
92 NULL
, /* advance_buffer_loc */
93 NULL
, /* seek_buffer */
94 NULL
, /* seek_complete */
95 NULL
, /* request_next_track */
96 NULL
, /* discard_codec */
97 NULL
, /* set_offset */
121 /* strings and memory */
132 #if defined(DEBUG) || defined(SIMULATOR)
135 #ifdef ROCKBOX_HAS_LOGF
145 __cyg_profile_func_enter
,
146 __cyg_profile_func_exit
,
149 #if defined(HAVE_RECORDING) && !defined(SIMULATOR)
150 false, /* stop_encoder */
151 0, /* enc_codec_loaded */
160 (open_func
)PREFIX(open
),
165 round_value_to_list32
,
169 /* new stuff at the end, sort into place next time
170 the API gets incompatible */
173 void codec_get_full_path(char *path
, const char *codec_root_fn
)
175 snprintf(path
, MAX_PATH
-1, CODECS_DIR
"/%s." CODEC_EXTENSION
,
179 static int codec_load_ram(int size
, struct codec_api
*api
)
181 struct codec_header
*hdr
;
184 hdr
= (struct codec_header
*)codecbuf
;
186 if (size
<= (signed)sizeof(struct codec_header
)
187 || (hdr
->magic
!= CODEC_MAGIC
188 #ifdef HAVE_RECORDING
189 && hdr
->magic
!= CODEC_ENC_MAGIC
192 || hdr
->target_id
!= TARGET_ID
193 || hdr
->load_addr
!= codecbuf
194 || hdr
->end_addr
> codecbuf
+ CODEC_SIZE
)
196 logf("codec header error");
200 codec_size
= hdr
->end_addr
- codecbuf
;
202 #else /* SIMULATOR */
205 hdr
= sim_codec_load_ram(codecbuf
, size
, &pd
);
211 || (hdr
->magic
!= CODEC_MAGIC
212 #ifdef HAVE_RECORDING
213 && hdr
->magic
!= CODEC_ENC_MAGIC
216 || hdr
->target_id
!= TARGET_ID
) {
221 codec_size
= codecbuf
- codecbuf
;
223 #endif /* SIMULATOR */
224 if (hdr
->api_version
> CODEC_API_VERSION
225 || hdr
->api_version
< CODEC_MIN_API_VERSION
) {
231 cpucache_invalidate();
232 status
= hdr
->entry_point();
239 int codec_load_buf(unsigned int hid
, struct codec_api
*api
)
242 rc
= bufread(hid
, CODEC_SIZE
, codecbuf
);
244 logf("error loading codec");
247 api
->discard_codec();
248 return codec_load_ram(rc
, api
);
251 int codec_load_file(const char *plugin
, struct codec_api
*api
)
257 codec_get_full_path(path
, plugin
);
259 fd
= open(path
, O_RDONLY
);
261 logf("Codec load error:%d", fd
);
262 splashf(HZ
*2, "Couldn't load codec: %s", path
);
266 rc
= read(fd
, &codecbuf
[0], CODEC_SIZE
);
269 logf("Codec read error");
273 return codec_load_ram((size_t)rc
, api
);