mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-06 15:48:05 -04:00
support mp3 decoding over libavcodec
This commit is contained in:
parent
90f0dedf83
commit
fc11dd059b
9 changed files with 342 additions and 158 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue