notaz.gp2x.de
/
picodrive.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
0e6a81368229dbaa0347876e93e548e91c8338c3
[picodrive.git]
/
platform
/
common
/
mp3_dummy.c
1
/*
2
* dummy/none mp3 code
3
* (C) notaz, 2013
4
*
5
* This work is licensed under the terms of MAME license.
6
* See COPYING file in the top-level directory.
7
*/
8
9
#include <stdio.h>
10
#include "mp3.h"
11
12
int mp3dec_start(FILE *f, int fpos_start)
13
{
14
return -1;
15
}
16
17
int mp3dec_decode(FILE *f, int *file_pos, int file_len)
18
{
19
return -1;
20
}