From 08bedf83051064c7dc9a7bb903ab9a34afe8d725 Mon Sep 17 00:00:00 2001 From: Michael Sevakis Date: Wed, 27 Apr 2011 12:52:11 +0000 Subject: 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 --- apps/codecs/cook.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'apps/codecs/cook.c') diff --git a/apps/codecs/cook.c b/apps/codecs/cook.c index a6b4a1153e..82739694d8 100644 --- a/apps/codecs/cook.c +++ b/apps/codecs/cook.c @@ -38,6 +38,14 @@ static void init_rm(RMContext *rmctx) memcpy(rmctx, (void*)(( (intptr_t)ci->id3->id3v2buf + 3 ) &~ 3), sizeof(RMContext)); } +/* 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) { -- cgit v1.2.3