starting SDL port, refactoring
[picodrive.git] / platform / common / mp3_dummy.c
CommitLineData
636d5f25 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 "mp3.h"
10#include <pico/pico.h>
11
12int mp3_get_bitrate(void *f_, int len)
13{
14 return -1;
15}
16
17void mp3_start_play(void *f_, int pos)
18{
19}
20
21void mp3_update(int *buffer, int length, int stereo)
22{
23}