source: trunk/src/winmm/mixerdata.cpp@ 8485

Last change on this file since 8485 was 8485, checked in by sandervl, 23 years ago

more mixer updates

File size: 4.8 KB
Line 
1/* $Id: mixerdata.cpp,v 1.2 2002-05-24 18:02:48 sandervl Exp $ */
2
3/*
4 * Mixer multimedia
5 *
6 * Copyright 2002 Sander van Leeuwen (sandervl@xs4all.nl)
7 *
8 *
9 * Project Odin Software License can be found in LICENSE.TXT
10 *
11 */
12
13#include <os2win.h>
14#include "mixer.h"
15
16
17/******************************************************************************/
18/******************************************************************************/
19char *szCtrlName[MIX_CTRL_MAX][2] = {
20 {
21 "PlayMix",
22 "Playback Mixer for LineOut"
23 },
24 {
25 "MasterVol",
26 "Master Volume Control for LineOut"
27 },
28 {
29 "MasterMute",
30 "Master Mute Control for LineOut"
31 },
32 {
33 "MonoInVol",
34 "Volume Control for Mono In"
35 },
36 {
37 "MonoInMute",
38 "Mute Control for Mono In"
39 },
40 {
41 "PhoneVol",
42 "Volume Control for Telephone"
43 },
44 {
45 "PhoneMute",
46 "Mute Control for Telephone"
47 },
48 {
49 "MicVol",
50 "Volume Control for Microphone"
51 },
52 {
53 "MicMute",
54 "Mute Control for Microphone"
55 },
56 {
57 "MicBoost",
58 "Microphone Boost Control"
59 },
60 {
61 "LineInVol",
62 "Volume Control for Line In"
63 },
64 {
65 "LineInMute",
66 "Mute Control for Line In"
67 },
68 {
69 "CDVol",
70 "Volume Control for CD"
71 },
72 {
73 "CDMute",
74 "Mute Control for CD"
75 },
76 {
77 "SPDIFInVol",
78 "Volume Control for SPDIF In"
79 },
80 {
81 "SPDIFInMute",
82 "Mute Control for SPDIF In"
83 },
84 {
85 "SPDIFOutVol",
86 "Master Volume Control for SPDIF Out"
87 },
88 {
89 "SPDIFOutMute",
90 "Master Mute Control for SPDIF Out"
91 },
92 {
93 "VideoVol",
94 "Volume Control for Video"
95 },
96 {
97 "VideoMute",
98 "Mute Control for Video"
99 },
100 {
101 "AuxVol",
102 "Volume Control for Aux"
103 },
104 {
105 "AuxMute",
106 "Mute Control for Aux"
107 },
108 {
109 "WaveOutVol",
110 "Volume Control for WaveOut"
111 },
112 {
113 "WaveOutMute",
114 "Mute Control for WaveOut"
115 },
116 {
117 "WavetableVol",
118 "Volume Control for Wavetable MIDI"
119 },
120 {
121 "WavetableMute",
122 "Mute Control for Wavetable MIDI"
123 },
124 {
125 "MIDIVol",
126 "Volume Control for MIDI"
127 },
128 {
129 "MIDIMute",
130 "Mute Control for MIDI"
131 },
132 {
133 "3D Center",
134 "3D Center Control for LineOut"
135 },
136 {
137 "3D Depth",
138 "3D Depth Control for LineOut"
139 },
140 {
141 "Treble",
142 "Treble Control"
143 },
144 {
145 "Bass",
146 "Bass Control"
147 },
148 {
149 "WaveInMux",
150 "Mux Control for Recording"
151 },
152 {
153 "MonoRecVol",
154 "Volume Control for Mono Recording"
155 },
156 {
157 "PhoneRecVol",
158 "Volume Control for Telephone Recording"
159 },
160 {
161 "MicRecVol",
162 "Volume Control for Microphone Recording"
163 },
164 {
165 "LineRecVol",
166 "Volume Control for Line Recording"
167 },
168 {
169 "CDRecVol",
170 "Volume Control for CD Recording"
171 },
172 {
173 "SPDIFRecVol",
174 "Volume Control for SPDIF Recording"
175 },
176 {
177 "VideoRecVol",
178 "Volume Control for Video Recording"
179 },
180 {
181 "AuxRecVol",
182 "Volume Control for Aux Recording"
183 },
184 {
185 "WaveRecVol",
186 "Volume Control for WaveOut Recording"
187 },
188 {
189 "WTRecVol",
190 "Volume Control for Wavetable MIDI Recording"
191 },
192 {
193 "MIDIVol",
194 "Volume Control for MIDI Recording"
195 },
196};
197/******************************************************************************/
198/******************************************************************************/
199char *szDestName[MIXER_DEST_MAX][2] = {
200 {
201 "Vol",
202 "Volume Control",
203 },
204 {
205 "Rec",
206 "Recording Control",
207 },
208 {
209 "SPDIF",
210 "SPDIF Control",
211 }
212};
213/******************************************************************************/
214/******************************************************************************/
215char *szSourceName[MIXER_SRC_MAX][2] = {
216 {
217 "MonoIn",
218 "Mono In",
219 },
220 {
221 "Phone",
222 "Telephone",
223 },
224 {
225 "Mic",
226 "Microphone",
227 },
228 {
229 "Line",
230 "Line",
231 },
232 {
233 "CD",
234 "CD-ROM",
235 },
236 {
237 "SPDIF",
238 "SPDIF",
239 },
240 {
241 "Video",
242 "Video",
243 },
244 {
245 "Aux",
246 "Auxiliary",
247 },
248 {
249 "Wave",
250 "Wave Out",
251 },
252 {
253 "Wavetable",
254 "Wavetable Synthesizer",
255 },
256 {
257 "MIDI",
258 "MIDI Synthesizer",
259 }
260};
261/******************************************************************************/
262/******************************************************************************/
263
Note: See TracBrowser for help on using the repository browser.