blob: 3261b20b351bf6b13c28e1b9f19b6eea0e737817 [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
Michael Sevakis7ad2cad2011-08-28 07:45:35 +000024#include <sys/types.h>
25
Jeffrey Goode37adbee2009-11-06 04:13:36 +000026/* Commit PCM data */
27void *pcmbuf_request_buffer(int *count);
Michael Sevakis7ad2cad2011-08-28 07:45:35 +000028void pcmbuf_write_complete(int count, unsigned long elapsed, off_t offset);
Jeffrey Goode37adbee2009-11-06 04:13:36 +000029
30/* Init */
Michael Sevakise1dd10d2007-03-19 22:04:17 +000031size_t pcmbuf_init(unsigned char *bufend);
Jeffrey Goode37adbee2009-11-06 04:13:36 +000032
33/* Playback */
Miika Pekkarinen159c52d2005-08-20 11:13:19 +000034void pcmbuf_play_start(void);
Jeffrey Goode04b01e12009-11-05 21:59:36 +000035void pcmbuf_play_stop(void);
36void pcmbuf_pause(bool pause);
Michael Sevakis65109732011-02-23 14:31:13 +000037void pcmbuf_monitor_track_change(bool monitor);
Michael Sevakis7ad2cad2011-08-28 07:45:35 +000038void pcmbuf_sync_position_update(void);
39
40/* Track change origin type */
41enum pcm_track_change_type
42{
43 TRACK_CHANGE_NONE = 0, /* No track change pending */
44 TRACK_CHANGE_MANUAL, /* Manual change (from user) */
45 TRACK_CHANGE_AUTO, /* Automatic change (from codec) */
46 TRACK_CHANGE_END_OF_DATA, /* Expect no more data (from codec) */
47};
48void pcmbuf_start_track_change(enum pcm_track_change_type type);
Brandon Low413da2a2006-02-07 20:38:55 +000049
Jeffrey Goode37adbee2009-11-06 04:13:36 +000050/* Crossfade */
Jeffrey Goode9e095342009-11-10 03:46:08 +000051#ifdef HAVE_CROSSFADE
Jeffrey Goode04b01e12009-11-05 21:59:36 +000052bool pcmbuf_is_crossfade_active(void);
Michael Sevakis7ad2cad2011-08-28 07:45:35 +000053void pcmbuf_request_crossfade_enable(int setting);
Jeffrey Goode04b01e12009-11-05 21:59:36 +000054bool pcmbuf_is_same_size(void);
Michael Sevakisc537d592011-04-27 03:08:23 +000055#else
56/* Dummy functions with sensible returns */
Michael Sevakis7ad2cad2011-08-28 07:45:35 +000057static FORCE_INLINE bool pcmbuf_is_crossfade_active(void)
Michael Sevakisc537d592011-04-27 03:08:23 +000058 { return false; }
Michael Sevakis7ad2cad2011-08-28 07:45:35 +000059static FORCE_INLINE void pcmbuf_request_crossfade_enable(bool on_off)
Michael Sevakisc537d592011-04-27 03:08:23 +000060 { return; (void)on_off; }
Michael Sevakis7ad2cad2011-08-28 07:45:35 +000061static FORCE_INLINE bool pcmbuf_is_same_size(void)
Michael Sevakisc537d592011-04-27 03:08:23 +000062 { return true; }
Jeffrey Goode9e095342009-11-10 03:46:08 +000063#endif
Jeffrey Goode04b01e12009-11-05 21:59:36 +000064
Jeffrey Goode37adbee2009-11-06 04:13:36 +000065/* Voice */
Jeffrey Goode04b01e12009-11-05 21:59:36 +000066void *pcmbuf_request_voice_buffer(int *count);
67void pcmbuf_write_voice_complete(int count);
68
Jeffrey Goode37adbee2009-11-06 04:13:36 +000069/* Debug menu, other metrics */
Jeffrey Goode04b01e12009-11-05 21:59:36 +000070size_t pcmbuf_free(void);
71size_t pcmbuf_get_bufsize(void);
Brandon Low413da2a2006-02-07 20:38:55 +000072int pcmbuf_descs(void);
Jeffrey Goode04b01e12009-11-05 21:59:36 +000073int pcmbuf_used_descs(void);
Michael Sevakis7ad2cad2011-08-28 07:45:35 +000074unsigned int pcmbuf_get_position_key(void);
Jeffrey Goode04b01e12009-11-05 21:59:36 +000075
Jeffrey Goodeb6f15f22009-11-08 04:27:27 +000076/* Misc */
Michael Sevakisa2b67032011-06-29 06:37:04 +000077void pcmbuf_fade(bool fade, bool in);
Michael Sevakis5078d462011-08-23 01:37:59 +000078bool pcmbuf_fading(void);
Michael Sevakisa2b67032011-06-29 06:37:04 +000079void pcmbuf_soft_mode(bool shhh);
Jeffrey Goode04b01e12009-11-05 21:59:36 +000080bool pcmbuf_is_lowdata(void);
81void pcmbuf_set_low_latency(bool state);
Miika Pekkarinen159c52d2005-08-20 11:13:19 +000082
Miika Pekkarinen20b38972005-07-13 12:48:22 +000083#endif