mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-06 15:48:05 -04:00
starting SDL port, refactoring
This commit is contained in:
parent
1889fe877c
commit
636d5f257c
12 changed files with 393 additions and 80 deletions
23
platform/common/mp3_dummy.c
Normal file
23
platform/common/mp3_dummy.c
Normal file
|
@ -0,0 +1,23 @@
|
|||
/*
|
||||
* dummy/none mp3 code
|
||||
* (C) notaz, 2013
|
||||
*
|
||||
* This work is licensed under the terms of MAME license.
|
||||
* See COPYING file in the top-level directory.
|
||||
*/
|
||||
|
||||
#include "mp3.h"
|
||||
#include <pico/pico.h>
|
||||
|
||||
int mp3_get_bitrate(void *f_, int len)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
|
||||
void mp3_start_play(void *f_, int pos)
|
||||
{
|
||||
}
|
||||
|
||||
void mp3_update(int *buffer, int length, int stereo)
|
||||
{
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue