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 "mp3_playback.h"
43 #include "backlight.h"
47 #include "powermgmt.h"
57 #if CONFIG_CODEC == SWCODEC
58 unsigned char codecbuf
[CODEC_SIZE
];
60 void *sim_codec_load_ram(char* codecptr
, int size
,
61 void* ptr2
, int bufwrap
, 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_voice
;
72 struct codec_api ci
= {
77 NULL
, /* taginfo_ready */
78 false, /* stop_codec */
81 NULL
, /* get_codec_memory */
82 NULL
, /* pcmbuf_insert */
83 NULL
, /* set_elapsed */
84 NULL
, /* read_filebuf */
85 NULL
, /* request_buffer */
86 NULL
, /* advance_buffer */
87 NULL
, /* advance_buffer_loc */
88 NULL
, /* seek_buffer */
89 NULL
, /* seek_complete */
90 NULL
, /* mp3_get_filepos */
91 NULL
, /* request_next_track */
92 NULL
, /* discard_codec */
93 NULL
, /* set_offset */
100 /* strings and memory */
112 #if defined(DEBUG) || defined(SIMULATOR)
115 #ifdef ROCKBOX_HAS_LOGF
129 #if defined(HAVE_RECORDING) && !defined(SIMULATOR)
130 false, /* stop_encoder */
131 0, /* enc_codec_loaded */
136 enc_pcm_buf_near_empty
,
141 (open_func
)PREFIX(open
),
147 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
148 #ifdef CPU_BOOST_LOGGING
155 round_value_to_list32
,
159 /* new stuff at the end, sort into place next time
160 the API gets incompatible */
162 #ifdef CACHE_FUNCTIONS_AS_CALL
168 void codec_get_full_path(char *path
, const char *codec_root_fn
)
170 snprintf(path
, MAX_PATH
-1, CODECS_DIR
"/%s." CODEC_EXTENSION
,
174 int codec_load_ram(char* codecptr
, int size
, void* ptr2
, int bufwrap
,
175 struct codec_api
*api
)
177 struct codec_header
*hdr
;
182 if ((char *)&codecbuf
[0] != codecptr
) {
183 size
= MIN(size
, CODEC_SIZE
);
184 copy_n
= MIN(size
, bufwrap
);
185 memcpy(codecbuf
, codecptr
, copy_n
);
186 if (size
- copy_n
> 0) {
187 memcpy(&codecbuf
[copy_n
], ptr2
, size
- copy_n
);
189 api
->discard_codec();
191 hdr
= (struct codec_header
*)codecbuf
;
193 if (size
<= (signed)sizeof(struct codec_header
)
194 || (hdr
->magic
!= CODEC_MAGIC
195 #ifdef HAVE_RECORDING
196 && hdr
->magic
!= CODEC_ENC_MAGIC
199 || hdr
->target_id
!= TARGET_ID
200 || hdr
->load_addr
!= codecbuf
201 || hdr
->end_addr
> codecbuf
+ CODEC_SIZE
)
203 logf("codec header error");
206 #else /* SIMULATOR */
209 hdr
= sim_codec_load_ram(codecptr
, size
, ptr2
, bufwrap
, &pd
);
210 api
->discard_codec();
216 || hdr
->magic
!= CODEC_MAGIC
217 || hdr
->target_id
!= TARGET_ID
) {
221 #endif /* SIMULATOR */
222 if (hdr
->api_version
> CODEC_API_VERSION
223 || hdr
->api_version
< CODEC_MIN_API_VERSION
) {
229 status
= hdr
->entry_point(api
);
236 int codec_load_file(const char *plugin
, struct codec_api
*api
)
243 codec_get_full_path(path
, plugin
);
245 fd
= open(path
, O_RDONLY
);
247 snprintf(msgbuf
, sizeof(msgbuf
)-1, "Couldn't load codec: %s", path
);
248 logf("Codec load error:%d", fd
);
249 gui_syncsplash(HZ
*2, msgbuf
);
253 rc
= read(fd
, &codecbuf
[0], CODEC_SIZE
);
256 logf("Codec read error");
260 return codec_load_ram(codecbuf
, (size_t)rc
, NULL
, 0, api
);