blob: 747ab315373435d7d8a65530b8f5ec7989836619 [file] [log] [blame]
Miika Pekkarinen20b38972005-07-13 12:48:22 +00001/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2005 by Miika Pekkarinen
11 *
Daniel Stenberg2acc0ac2008-06-28 18:10:04 +000012 * 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.
Miika Pekkarinen20b38972005-07-13 12:48:22 +000016 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ****************************************************************************/
21#ifndef PCMBUF_H
22#define PCMBUF_H
23
Jeffrey Goode37adbee2009-11-06 04:13:36 +000024/* Commit PCM data */
25void *pcmbuf_request_buffer(int *count);
26void pcmbuf_write_complete(int count);
27
28/* Init */
Michael Sevakise1dd10d2007-03-19 22:04:17 +000029size_t pcmbuf_init(unsigned char *bufend);
Jeffrey Goode37adbee2009-11-06 04:13:36 +000030
31/* Playback */
Miika Pekkarinen159c52d2005-08-20 11:13:19 +000032void pcmbuf_play_start(void);
Jeffrey Goode04b01e12009-11-05 21:59:36 +000033void pcmbuf_play_stop(void);
34void pcmbuf_pause(bool pause);
35void pcmbuf_start_track_change(bool manual_skip);
Brandon Low413da2a2006-02-07 20:38:55 +000036
Jeffrey Goode37adbee2009-11-06 04:13:36 +000037/* Crossfade */
Jeffrey Goode04b01e12009-11-05 21:59:36 +000038bool pcmbuf_is_crossfade_active(void);
39void pcmbuf_request_crossfade_enable(bool on_off);
40bool pcmbuf_is_same_size(void);
41
Jeffrey Goode37adbee2009-11-06 04:13:36 +000042/* Voice */
Jeffrey Goode04b01e12009-11-05 21:59:36 +000043void *pcmbuf_request_voice_buffer(int *count);
44void pcmbuf_write_voice_complete(int count);
45
Jeffrey Goode37adbee2009-11-06 04:13:36 +000046/* Debug menu, other metrics */
Jeffrey Goode04b01e12009-11-05 21:59:36 +000047size_t pcmbuf_free(void);
48size_t pcmbuf_get_bufsize(void);
Brandon Low413da2a2006-02-07 20:38:55 +000049int pcmbuf_descs(void);
Jeffrey Goode04b01e12009-11-05 21:59:36 +000050int pcmbuf_used_descs(void);
51#ifdef ROCKBOX_HAS_LOGF
52unsigned char *pcmbuf_get_meminfo(size_t *length);
53#endif
54
Jeffrey Goodeb6f15f22009-11-08 04:27:27 +000055/* Misc */
Jeffrey Goode04b01e12009-11-05 21:59:36 +000056bool pcmbuf_is_lowdata(void);
57void pcmbuf_set_low_latency(bool state);
58unsigned long pcmbuf_get_latency(void);
Jeffrey Goode37adbee2009-11-06 04:13:36 +000059void pcmbuf_beep(unsigned int frequency, size_t duration, int amplitude);
Miika Pekkarinen159c52d2005-08-20 11:13:19 +000060
Miika Pekkarinen20b38972005-07-13 12:48:22 +000061#endif