mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-08 20:55:17 -05:00
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
This commit is contained in:
parent
7b344f8029
commit
4bf52eae14
2 changed files with 16 additions and 1 deletions
|
|
@ -17,6 +17,8 @@
|
|||
*
|
||||
****************************************************************************/
|
||||
|
||||
#include "debug.h"
|
||||
|
||||
/* This file is for emulating some of the mpeg controlling functions of
|
||||
the target */
|
||||
|
||||
|
|
@ -35,3 +37,12 @@ void mpeg_treble(void)
|
|||
void mpeg_stop(void)
|
||||
{
|
||||
}
|
||||
|
||||
#ifndef MPEGPLAY
|
||||
void mpeg_play(char *tune)
|
||||
{
|
||||
DEBUGF("We instruct the MPEG thread to play %s for us\n",
|
||||
tune);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue