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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
/*
* KMix -- KDE's full featured mini mixer
*
*
* Copyright (C) 1996-2000 Christian Esken
* esken@kde.org
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this program; if not, write to the Free
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/* This code is being #include'd from mixer.cpp */
#ifndef KMIX_PLATFORMS_CPP
#define KMIX_PLATFORMS_CPP
#include <config.h>
#include <tqstring.h>
#include "mixer_backend.h"
#if defined(sun) || defined(__sun__)
#define SUN_MIXER
#endif
#ifdef __linux__
#ifdef HAVE_LIBASOUND2
#define ALSA_MIXER
#endif
#define OSS_MIXER
#endif
#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__bsdi__) || defined(_UNIXWARE) || defined(__DragonFly__)
#define OSS_MIXER
#endif
// PORTING: add #ifdef PLATFORM , commands , #endif, add your new mixer below
#if defined(NAS_MIXER)
#include "mixer_nas.cpp"
#endif
#if defined(SUN_MIXER)
#include "mixer_sun.cpp"
#endif
// Alsa API's
#if defined(ALSA_MIXER)
#include "mixer_alsa9.cpp"
#endif
#if defined(OSS_MIXER)
#include "mixer_oss.cpp"
#if !defined(__NetBSD__) && !defined(__OpenBSD__)
#include <sys/soundcard.h>
#else
#include <soundcard.h>
#endif
#if SOUND_VERSION >= 0x040000 && !defined(__FreeBSD__)
#define OSS4_MIXER
#endif
#endif
#if defined(OSS4_MIXER)
#include "mixer_oss4.cpp"
#endif
/*
#else
// We cannot handle this! I install a dummy mixer instead.
#define NO_MIXER
#include "mixer_none.cpp"
#endif
*/
typedef Mixer_Backend *getMixerFunc( int device );
typedef TQString getDriverNameFunc( );
typedef DevIterator* getDevIteratorFunc( );
struct MixerFactory {
getMixerFunc *getMixer;
getDriverNameFunc *getDriverName;
getDevIteratorFunc *getDevIterator;
};
MixerFactory g_mixerFactories[] = {
#if defined(NAS_MIXER)
{ NAS_getMixer, NULL, NULL },
#endif
#if defined(SUN_MIXER)
{ SUN_getMixer, SUN_getDriverName, NULL },
#endif
#if defined(ALSA_MIXER)
{ ALSA_getMixer, ALSA_getDriverName, ALSA_getDevIterator },
#endif
#if defined(OSS4_MIXER)
{ OSS4_getMixer, OSS4_getDriverName, NULL },
#endif
#if defined(OSS_MIXER)
{ OSS_getMixer, OSS_getDriverName, NULL },
#endif
{ NULL, NULL, NULL }
};
#endif // KMIX_PLATFORMS_CPP
|