support mp3 decoding over libavcodec

This commit is contained in:
notaz 2013-07-01 03:40:31 +03:00
parent 90f0dedf83
commit fc11dd059b
9 changed files with 342 additions and 158 deletions

View 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;
}