summaryrefslogtreecommitdiff
path: root/uisimulator/x11/mpeg.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-06-04 21:45:51 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-06-04 21:45:51 +0000
commit4bf52eae14be82230f7aff9010003725e84ce3e3 (patch)
treec5b369366d9e98c94259f96571f565c8300f3022 /uisimulator/x11/mpeg.c
parent7b344f802922be94ce238b4ca84a85208f8ec9b6 (diff)
downloadrockbox-4bf52eae14be82230f7aff9010003725e84ce3e3.tar.gz
rockbox-4bf52eae14be82230f7aff9010003725e84ce3e3.zip
works with playlist code, now stubs mpeg_play() to be able to show some
better debug output git-svn-id: svn://svn.rockbox.org/rockbox/trunk@893 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/x11/mpeg.c')
-rw-r--r--uisimulator/x11/mpeg.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/uisimulator/x11/mpeg.c b/uisimulator/x11/mpeg.c
index 38cdb104e5..0f3680d737 100644
--- a/uisimulator/x11/mpeg.c
+++ b/uisimulator/x11/mpeg.c
@@ -17,6 +17,8 @@
17 * 17 *
18 ****************************************************************************/ 18 ****************************************************************************/
19 19
20#include "debug.h"
21
20/* This file is for emulating some of the mpeg controlling functions of 22/* This file is for emulating some of the mpeg controlling functions of
21 the target */ 23 the target */
22 24
@@ -35,3 +37,12 @@ void mpeg_treble(void)
35void mpeg_stop(void) 37void mpeg_stop(void)
36{ 38{
37} 39}
40
41#ifndef MPEGPLAY
42void mpeg_play(char *tune)
43{
44 DEBUGF("We instruct the MPEG thread to play %s for us\n",
45 tune);
46}
47
48#endif