1
0
Fork 0
forked from len0rd/rockbox

Having a default weak codec_main symbol doesn't seem to be working out for compiling the sim under cygwin in at least some cases. Just implement it explicitly in all cases.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29789 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Michael Sevakis 2011-04-27 12:52:11 +00:00
parent 1a68986bc5
commit 08bedf8305
6 changed files with 40 additions and 10 deletions

View file

@ -367,6 +367,14 @@ static void *process_header(spx_ogg_packet *op,
return st;
}
/* this is the codec entry point */
enum codec_status codec_main(enum codec_entry_call_reason reason)
{
/* Nothing to do */
return CODEC_OK;
(void)reason;
}
/* this is called for each file to process */
enum codec_status codec_run(void)
{