2 * This file is part of DisOrder
3 * Copyright (C) 2004, 2007 Richard Kettlewell
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
21 * @brief Mixer support
27 /** @brief Definition of a mixer */
29 /** @brief API used by this mixer */
32 /** @brief Get the volume
33 * @param left Where to store left-channel volume
34 * @param right Where to store right-channel volume
35 * @return 0 on success, non-0 on error
37 int (*get)(int *left, int *right);
39 /** @brief Set the volume
40 * @param left Pointer to target left-channel volume
41 * @param right Pointer to target right-channel volume
42 * @return 0 on success, non-0 on error
44 * @p left and @p right are updated with the actual volume set.
46 int (*set)(int *left, int *right);
48 /** @brief Default device */
51 /** @brief Default channel */
55 int mixer_control(int api, int *left, int *right, int set);
56 const char *mixer_default_device(int api);
57 const char *mixer_default_channel(int api);
58 int mixer_supported(int api);
60 extern const struct mixer mixer_oss;
61 extern const struct mixer mixer_alsa;