2002-05-27 06:54:54 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 Daniel Stenberg
|
|
|
|
*
|
|
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2002-06-04 21:45:51 +00:00
|
|
|
#include "debug.h"
|
|
|
|
|
2002-05-27 06:54:54 +00:00
|
|
|
/* This file is for emulating some of the mpeg controlling functions of
|
|
|
|
the target */
|
|
|
|
|
|
|
|
void mpeg_volume(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void mpeg_bass(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void mpeg_treble(void)
|
|
|
|
{
|
|
|
|
}
|
2002-05-28 15:04:51 +00:00
|
|
|
|
|
|
|
void mpeg_stop(void)
|
|
|
|
{
|
|
|
|
}
|
2002-06-04 21:45:51 +00:00
|
|
|
|
|
|
|
#ifndef MPEGPLAY
|
|
|
|
void mpeg_play(char *tune)
|
|
|
|
{
|
|
|
|
DEBUGF("We instruct the MPEG thread to play %s for us\n",
|
|
|
|
tune);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|