mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
20 lines
327 B
C
20 lines
327 B
C
/*
|
|
* 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 <stdio.h>
|
|
#include "mp3.h"
|
|
|
|
int mp3dec_start(FILE *f, int fpos_start)
|
|
{
|
|
return -1;
|
|
}
|
|
|
|
int mp3dec_decode(FILE *f, int *file_pos, int file_len)
|
|
{
|
|
return -1;
|
|
}
|