summaryrefslogtreecommitdiff
path: root/uisimulator/x11/mpeg.c
diff options
context:
space:
mode:
Diffstat (limited to 'uisimulator/x11/mpeg.c')
-rw-r--r--uisimulator/x11/mpeg.c72
1 files changed, 0 insertions, 72 deletions
diff --git a/uisimulator/x11/mpeg.c b/uisimulator/x11/mpeg.c
deleted file mode 100644
index 247a0d2efb..0000000000
--- a/uisimulator/x11/mpeg.c
+++ /dev/null
@@ -1,72 +0,0 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2002 Daniel Stenberg
11 *
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
14 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
17 *
18 ****************************************************************************/
19#include <stdbool.h>
20#include "debug.h"
21#include "id3.h"
22
23/* This file is for emulating some of the mpeg controlling functions of
24 the target */
25static struct mp3entry dummy;
26
27void mpeg_volume(void)
28{
29}
30
31void mpeg_bass(void)
32{
33}
34
35void mpeg_treble(void)
36{
37}
38
39void mpeg_stop(void)
40{
41}
42
43void mpeg_prev(void)
44{
45}
46
47void mpeg_next(void)
48{
49}
50
51#ifndef MPEGPLAY
52void mpeg_play(char *tune)
53{
54 DEBUGF("We instruct the MPEG thread to play %s for us\n",
55 tune);
56 mp3info(&dummy, tune);
57}
58
59void mpeg_pause(void)
60{
61}
62
63void mpeg_resume(void)
64{
65}
66
67#endif
68
69struct mp3entry* mpeg_current_track(void)
70{
71 return &dummy;
72}