2005-06-05 23:05:10 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005 Miika Pekkarinen
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2005-06-14 22:27:57 +00:00
|
|
|
#ifndef _PLAYBACK_H
|
|
|
|
#define _PLAYBACK_H
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
#include "id3.h"
|
|
|
|
#include "mp3data.h"
|
2008-03-16 13:55:16 +00:00
|
|
|
#include "events.h"
|
2005-06-05 23:05:10 +00:00
|
|
|
|
2005-06-10 15:02:10 +00:00
|
|
|
/* Not yet implemented. */
|
|
|
|
#define CODEC_SET_AUDIOBUF_WATERMARK 4
|
|
|
|
|
2006-08-13 09:19:24 +00:00
|
|
|
#if MEM > 1
|
2007-10-25 21:27:45 +00:00
|
|
|
#define MAX_TRACK 128
|
2006-08-12 23:01:52 +00:00
|
|
|
#else
|
2007-10-25 21:27:45 +00:00
|
|
|
#define MAX_TRACK 32
|
2006-08-12 23:01:52 +00:00
|
|
|
#endif
|
|
|
|
|
2006-07-29 17:25:31 +00:00
|
|
|
#define MAX_TRACK_MASK (MAX_TRACK-1)
|
|
|
|
|
2005-06-29 21:36:30 +00:00
|
|
|
/* Functions */
|
2007-05-07 17:23:31 +00:00
|
|
|
const char * get_codec_filename(int cod_spec);
|
2007-08-06 13:08:36 +00:00
|
|
|
void voice_wait(void);
|
2005-06-29 21:36:30 +00:00
|
|
|
|
2006-08-15 12:27:07 +00:00
|
|
|
#if CONFIG_CODEC == SWCODEC /* This #ifdef is better here than gui/gwps.c */
|
2005-11-10 22:31:47 +00:00
|
|
|
extern void audio_next_dir(void);
|
|
|
|
extern void audio_prev_dir(void);
|
2006-08-15 12:27:07 +00:00
|
|
|
#else
|
2008-03-08 07:36:56 +00:00
|
|
|
# define audio_next_dir()
|
2006-08-15 12:27:07 +00:00
|
|
|
#define audio_prev_dir()
|
|
|
|
#endif
|
2006-01-27 11:39:46 +00:00
|
|
|
|
2005-06-05 23:05:10 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|