D2: Enable plugin building (using initial keymaps from FS#8708 by Andreas Mueller...
[kugel-rb.git] / apps / playback.h
blob748a4fe871716ce0431b4df07c446cd9a89f5a80
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2005 Miika Pekkarinen
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.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
20 #ifndef _PLAYBACK_H
21 #define _PLAYBACK_H
23 #include <stdbool.h>
25 #include "id3.h"
26 #include "mp3data.h"
27 #include "events.h"
29 /* Not yet implemented. */
30 #define CODEC_SET_AUDIOBUF_WATERMARK 4
32 #if MEM > 1
33 #define MAX_TRACK 128
34 #else
35 #define MAX_TRACK 32
36 #endif
38 #define MAX_TRACK_MASK (MAX_TRACK-1)
40 /* Functions */
41 const char * get_codec_filename(int cod_spec);
42 void voice_wait(void);
44 #if CONFIG_CODEC == SWCODEC /* This #ifdef is better here than gui/gwps.c */
45 extern void audio_next_dir(void);
46 extern void audio_prev_dir(void);
47 #else
48 # define audio_next_dir()
49 #define audio_prev_dir()
50 #endif
52 #endif