blob: 5088eadeb1c5f5efdb391060fbff397bb4d2ef1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
/***************************************************************************
* __________ __ ___.
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
* \/ \/ \/ \/ \/
* $Id$
*
* Copyright (C) 2013 by Michael Sevakis
*
* 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.
*
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
* KIND, either express or implied.
*
****************************************************************************/
#ifndef PCM_SW_VOLUME_H
#define PCM_SW_VOLUME_H
/***
** Note: Only PCM drivers that are themselves buffered should use the
** PCM_SW_VOLUME_UNBUFFERED configuration. This may be part of the platform,
** the library or a hardware necessity. Normally, it shouldn't be used and
** only the port developer can properly decide.
**/
#ifdef HAVE_SW_VOLUME_CONTROL
#include <audiohw.h>
#include <limits.h>
#define PCM_MUTE_LEVEL INT_MIN
#ifdef AUDIOHW_HAVE_PRESCALER
/* Set the prescaler value for all PCM playback */
void pcm_set_prescaler(int prescale);
#endif /* AUDIOHW_HAVE_PRESCALER */
/* Set the per-channel volume cut/gain for all PCM playback */
void pcm_set_master_volume(int vol_l, int vol_r);
#endif /* HAVE_SW_VOLUME_CONTROL */
#endif /* PCM_SW_VOLUME_H */
|