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>
|
2009-10-31 19:17:36 +00:00
|
|
|
#include <stdlib.h>
|
2008-04-28 14:13:13 +00:00
|
|
|
#include "config.h"
|
2006-07-29 17:25:31 +00:00
|
|
|
|
2011-04-27 03:08:23 +00:00
|
|
|
#if CONFIG_CODEC == SWCODEC
|
|
|
|
/* Including the code for fast previews is entirely optional since it
|
|
|
|
does add two more mp3entry's - for certain targets it may be less
|
|
|
|
beneficial such as flash-only storage */
|
|
|
|
#if MEMORYSIZE > 2
|
|
|
|
#define AUDIO_FAST_SKIP_PREVIEW
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* CONFIG_CODEC == SWCODEC */
|
|
|
|
|
2009-10-16 19:14:41 +00:00
|
|
|
#ifdef HAVE_ALBUMART
|
|
|
|
|
|
|
|
#include "bmp.h"
|
2011-02-09 20:13:13 +00:00
|
|
|
#include "metadata.h"
|
2009-10-16 19:14:41 +00:00
|
|
|
/*
|
|
|
|
* Returns the handle id of the buffered albumart for the given slot id
|
|
|
|
**/
|
|
|
|
int playback_current_aa_hid(int slot);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Hands out an albumart slot for buffering albumart using the size
|
|
|
|
* int the passed dim struct, it copies the data of dim in order to
|
|
|
|
* be safe to be reused for other code
|
|
|
|
*
|
|
|
|
* The slot may be reused if other code calls this with the same dimensions
|
|
|
|
* in dim, so if you change dim release and claim a new slot
|
|
|
|
*
|
|
|
|
* Save to call from other threads */
|
|
|
|
int playback_claim_aa_slot(struct dim *dim);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Releases the albumart slot with given id
|
|
|
|
*
|
|
|
|
* Save to call from other threads */
|
|
|
|
void playback_release_aa_slot(int slot);
|
2011-02-09 20:13:13 +00:00
|
|
|
|
|
|
|
struct bufopen_bitmap_data {
|
|
|
|
struct dim *dim;
|
|
|
|
struct mp3_albumart *embedded_albumart;
|
|
|
|
};
|
|
|
|
|
2009-10-16 19:14:41 +00:00
|
|
|
#endif
|
|
|
|
|
2005-06-29 21:36:30 +00:00
|
|
|
/* Functions */
|
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-12-25 01:46:16 +00:00
|
|
|
void audio_skip(int direction);
|
2008-03-28 11:24:24 +00:00
|
|
|
void audio_hard_stop(void); /* Stops audio from serving playback */
|
2011-04-27 03:08:23 +00:00
|
|
|
|
|
|
|
void audio_set_cuesheet(int enable);
|
2009-11-10 03:46:08 +00:00
|
|
|
#ifdef HAVE_CROSSFADE
|
|
|
|
void audio_set_crossfade(int enable);
|
|
|
|
#endif
|
2008-03-28 11:24:24 +00:00
|
|
|
|
|
|
|
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 */
|
2009-10-31 19:17:36 +00:00
|
|
|
size_t audio_get_filebuflen(void);
|
2009-11-16 20:09:46 +00:00
|
|
|
bool audio_buffer_state_trashed(void);
|
2011-04-27 03:08:23 +00:00
|
|
|
|
|
|
|
/* Automatic transition? Only valid to call during the track change events,
|
|
|
|
otherwise the result is undefined. */
|
2011-02-23 14:31:13 +00:00
|
|
|
bool audio_automatic_skip(void);
|
2008-03-28 11:24:24 +00:00
|
|
|
|
2009-10-31 19:17:36 +00:00
|
|
|
/* Define one constant that includes recording related functionality */
|
|
|
|
#if defined(HAVE_RECORDING) && !defined(SIMULATOR)
|
|
|
|
#define AUDIO_HAVE_RECORDING
|
|
|
|
#endif
|
|
|
|
|
|
|
|
enum {
|
2011-04-27 03:08:23 +00:00
|
|
|
Q_NULL = 0, /* reserved */
|
|
|
|
|
|
|
|
/* -> audio */
|
2009-10-31 19:17:36 +00:00
|
|
|
Q_AUDIO_PLAY = 1,
|
|
|
|
Q_AUDIO_STOP,
|
|
|
|
Q_AUDIO_PAUSE,
|
|
|
|
Q_AUDIO_SKIP,
|
|
|
|
Q_AUDIO_PRE_FF_REWIND,
|
|
|
|
Q_AUDIO_FF_REWIND,
|
|
|
|
Q_AUDIO_FLUSH,
|
|
|
|
Q_AUDIO_DIR_SKIP,
|
|
|
|
|
2011-04-27 03:08:23 +00:00
|
|
|
/* pcmbuf -> audio */
|
|
|
|
Q_AUDIO_TRACK_CHANGED,
|
|
|
|
|
|
|
|
/* audio -> audio */
|
|
|
|
Q_AUDIO_FILL_BUFFER, /* continue buffering next track */
|
|
|
|
|
|
|
|
/* buffering -> audio */
|
|
|
|
Q_AUDIO_BUFFERING, /* some buffer event */
|
|
|
|
Q_AUDIO_FINISH_LOAD_TRACK, /* metadata is buffered */
|
|
|
|
Q_AUDIO_HANDLE_FINISHED, /* some other type is buffered */
|
|
|
|
|
|
|
|
/* codec -> audio (*) */
|
|
|
|
Q_AUDIO_CODEC_SEEK_COMPLETE,
|
|
|
|
Q_AUDIO_CODEC_COMPLETE,
|
|
|
|
|
|
|
|
/* audio -> codec */
|
2009-10-31 19:17:36 +00:00
|
|
|
Q_CODEC_LOAD,
|
2011-04-27 03:08:23 +00:00
|
|
|
Q_CODEC_RUN,
|
|
|
|
Q_CODEC_PAUSE,
|
|
|
|
Q_CODEC_SEEK,
|
|
|
|
Q_CODEC_STOP,
|
|
|
|
Q_CODEC_UNLOAD,
|
|
|
|
|
2009-10-31 19:17:36 +00:00
|
|
|
|
2011-04-27 03:08:23 +00:00
|
|
|
/*- miscellanous -*/
|
2009-10-31 19:17:36 +00:00
|
|
|
#ifdef AUDIO_HAVE_RECORDING
|
2011-04-27 03:08:23 +00:00
|
|
|
/* -> codec */
|
|
|
|
Q_AUDIO_LOAD_ENCODER, /* load an encoder for recording */
|
2009-10-31 19:17:36 +00:00
|
|
|
#endif
|
2011-04-27 03:08:23 +00:00
|
|
|
/* -> codec */
|
2009-10-31 19:17:36 +00:00
|
|
|
Q_CODEC_DO_CALLBACK,
|
|
|
|
|
2011-04-27 03:08:23 +00:00
|
|
|
|
|
|
|
/*- settings -*/
|
|
|
|
|
|
|
|
#ifdef HAVE_DISK_STORAGE
|
|
|
|
/* -> audio */
|
|
|
|
Q_AUDIO_UPDATE_WATERMARK, /* buffering watermark needs updating */
|
2005-06-05 23:05:10 +00:00
|
|
|
#endif
|
2011-04-27 03:08:23 +00:00
|
|
|
/* -> audio */
|
|
|
|
Q_AUDIO_REMAKE_AUDIO_BUFFER, /* buffer needs to be reinitialized */
|
|
|
|
};
|
|
|
|
|
|
|
|
/* (*) If you change these, you must check audio_clear_track_notifications
|
|
|
|
in playback.c for correctness */
|
|
|
|
|
|
|
|
#endif /* _PLAYBACK_H */
|