blob: f8e69055be91f5ba86383a8f52dd74afde71a7e2 [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 Goode04b01e12009-11-05 21:59:36 +000024/* playback */
Michael Sevakise1dd10d2007-03-19 22:04:17 +000025size_t pcmbuf_init(unsigned char *bufend);
Miika Pekkarinen159c52d2005-08-20 11:13:19 +000026void pcmbuf_play_start(void);
Jeffrey Goode04b01e12009-11-05 21:59:36 +000027void pcmbuf_play_stop(void);
28void pcmbuf_pause(bool pause);
29void pcmbuf_start_track_change(bool manual_skip);
30void *pcmbuf_request_buffer(int *count);
Michael Sevakisaba6ca02007-02-07 00:51:50 +000031void pcmbuf_write_complete(int count);
Brandon Low413da2a2006-02-07 20:38:55 +000032
Jeffrey Goode04b01e12009-11-05 21:59:36 +000033/* crossfade */
34bool pcmbuf_is_crossfade_active(void);
35void pcmbuf_request_crossfade_enable(bool on_off);
36bool pcmbuf_is_same_size(void);
37
38/* voice */
39void *pcmbuf_request_voice_buffer(int *count);
40void pcmbuf_write_voice_complete(int count);
41
42/* debug menu, other metrics */
43size_t pcmbuf_free(void);
44size_t pcmbuf_get_bufsize(void);
Brandon Low413da2a2006-02-07 20:38:55 +000045int pcmbuf_descs(void);
Jeffrey Goode04b01e12009-11-05 21:59:36 +000046int pcmbuf_used_descs(void);
47#ifdef ROCKBOX_HAS_LOGF
48unsigned char *pcmbuf_get_meminfo(size_t *length);
49#endif
50
51/* misc */
52void pcmbuf_beep(unsigned int frequency, size_t duration, int amplitude);
53bool pcmbuf_is_lowdata(void);
54void pcmbuf_set_low_latency(bool state);
55unsigned long pcmbuf_get_latency(void);
Miika Pekkarinen159c52d2005-08-20 11:13:19 +000056
Miika Pekkarinen20b38972005-07-13 12:48:22 +000057#endif