1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2005 Miika Pekkarinen
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
29 #if CONFIG_CODEC == SWCODEC
30 /* Including the code for fast previews is entirely optional since it
31 does add two more mp3entry's - for certain targets it may be less
32 beneficial such as flash-only storage */
34 #define AUDIO_FAST_SKIP_PREVIEW
37 #endif /* CONFIG_CODEC == SWCODEC */
44 * Returns the handle id of the buffered albumart for the given slot id
46 int playback_current_aa_hid(int slot
);
49 * Hands out an albumart slot for buffering albumart using the size
50 * int the passed dim struct, it copies the data of dim in order to
51 * be safe to be reused for other code
53 * The slot may be reused if other code calls this with the same dimensions
54 * in dim, so if you change dim release and claim a new slot
56 * Save to call from other threads */
57 int playback_claim_aa_slot(struct dim
*dim
);
60 * Releases the albumart slot with given id
62 * Save to call from other threads */
63 void playback_release_aa_slot(int slot
);
65 struct bufopen_bitmap_data
{
67 struct mp3_albumart
*embedded_albumart
;
73 int audio_track_count(void);
74 long audio_filebufused(void);
75 void audio_pre_ff_rewind(void);
76 void audio_skip(int direction
);
78 void audio_set_cuesheet(int enable
);
80 void audio_set_crossfade(int enable
);
85 AUDIO_WANT_PLAYBACK
= 0,
88 bool audio_restore_playback(int type
); /* Restores the audio buffer to handle the requested playback */
89 size_t audio_get_filebuflen(void);
91 /* Automatic transition? Only valid to call during the track change events,
92 otherwise the result is undefined. */
93 bool audio_automatic_skip(void);
95 /* Define one constant that includes recording related functionality */
96 #if defined(HAVE_RECORDING) && !defined(SIMULATOR)
97 #define AUDIO_HAVE_RECORDING
101 Q_NULL
= 0, /* reserved */
108 Q_AUDIO_PRE_FF_REWIND
,
113 /* pcmbuf -> audio */
114 Q_AUDIO_TRACK_CHANGED
,
117 Q_AUDIO_FILL_BUFFER
, /* continue buffering next track */
119 /* buffering -> audio */
120 Q_AUDIO_BUFFERING
, /* some buffer event */
121 Q_AUDIO_FINISH_LOAD_TRACK
, /* metadata is buffered */
122 Q_AUDIO_HANDLE_FINISHED
, /* some other type is buffered */
124 /* codec -> audio (*) */
125 Q_AUDIO_CODEC_SEEK_COMPLETE
,
126 Q_AUDIO_CODEC_COMPLETE
,
138 #ifdef AUDIO_HAVE_RECORDING
140 Q_AUDIO_LOAD_ENCODER
, /* load an encoder for recording */
148 #ifdef HAVE_DISK_STORAGE
150 Q_AUDIO_UPDATE_WATERMARK
, /* buffering watermark needs updating */
153 Q_AUDIO_REMAKE_AUDIO_BUFFER
, /* buffer needs to be reinitialized */
156 /* (*) If you change these, you must check audio_clear_track_notifications
157 in playback.c for correctness */
159 #endif /* _PLAYBACK_H */