X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=platform%2Fcommon%2Fmp3_dummy.c;h=0e6a81368229dbaa0347876e93e548e91c8338c3;hb=fa8fb7544593a0ed43f3354cc5f41150464b55bf;hp=a76caf979c936ef40044f063b139a2e2568ea4d9;hpb=636d5f257c3e5bafba99ddbdc385a289e12c9deb;p=picodrive.git diff --git a/platform/common/mp3_dummy.c b/platform/common/mp3_dummy.c index a76caf9..0e6a813 100644 --- a/platform/common/mp3_dummy.c +++ b/platform/common/mp3_dummy.c @@ -6,18 +6,15 @@ * See COPYING file in the top-level directory. */ +#include #include "mp3.h" -#include -int mp3_get_bitrate(void *f_, int len) +int mp3dec_start(FILE *f, int fpos_start) { return -1; } -void mp3_start_play(void *f_, int pos) -{ -} - -void mp3_update(int *buffer, int length, int stereo) +int mp3dec_decode(FILE *f, int *file_pos, int file_len) { + return -1; }