2005-06-05 23:05:10 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005 Miika Pekkarinen
|
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2005-06-05 23:05:10 +00:00
|
|
|
*
|
|
|
|
* 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>
|
2008-04-28 14:13:13 +00:00
|
|
|
#include "config.h"
|
2006-07-29 17:25:31 +00:00
|
|
|
|
2005-06-29 21:36:30 +00:00
|
|
|
/* Functions */
|
2008-03-28 12:51:33 +00:00
|
|
|
const char *get_codec_filename(int cod_spec);
|
2007-08-06 13:08:36 +00:00
|
|
|
void voice_wait(void);
|
2008-07-15 14:06:11 +00:00
|
|
|
bool audio_is_thread_ready(void);
|
2008-03-28 11:24:24 +00:00
|
|
|
int audio_track_count(void);
|
|
|
|
long audio_filebufused(void);
|
|
|
|
void audio_pre_ff_rewind(void);
|
2008-03-28 12:51:33 +00:00
|
|
|
void audio_set_crossfade(int type);
|
2008-03-28 11:24:24 +00:00
|
|
|
|
|
|
|
void audio_hard_stop(void); /* Stops audio from serving playback */
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
AUDIO_WANT_PLAYBACK = 0,
|
|
|
|
AUDIO_WANT_VOICE,
|
|
|
|
};
|
2008-03-28 12:51:33 +00:00
|
|
|
bool audio_restore_playback(int type); /* Restores the audio buffer to handle the requested playback */
|
2008-03-28 11:24:24 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_ALBUMART
|
|
|
|
int audio_current_aa_hid(void);
|
|
|
|
#endif
|
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-05-04 13:47:58 +00:00
|
|
|
#define audio_next_dir() ({ })
|
|
|
|
#define audio_prev_dir() ({ })
|
2006-08-15 12:27:07 +00:00
|
|
|
#endif
|
2006-01-27 11:39:46 +00:00
|
|
|
|
2005-06-05 23:05:10 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|