support mp3 decoding over libavcodec
[picodrive.git] / platform / common / mp3_dummy.c
index a76caf9..7d0ef9e 100644 (file)
@@ -6,18 +6,15 @@
  * See COPYING file in the top-level directory.
  */
 
+#include <stdio.h>
 #include "mp3.h"
-#include <pico/pico.h>
 
-int mp3_get_bitrate(void *f_, int len)
+int mp3dec_start(void)
 {
        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;
 }