blob: 36fd01d11a9f4ced5471d3847d39b45eab8fa7ee [file] [log] [blame]
Alexandre Julliarda69b88b1998-03-15 20:29:56 +00001
Eric Pouech33937301999-12-08 03:26:58 +00002 This file contains information about the implementation of the
3 multimedia layer of WINE. The libraries consist of MMSYSTEM.DLL
4 (win16), WINMM.DLL (win32) and some (abstracted, not Windows
5 compatible) low level drivers.
6
7 The implementation can be found in the dlls/winmm/ sub directory.
8
90. Overview
10===========
11
12 The multimedia stuff is split into 3 layers. The low level (device
13 drivers), mid level (MCI commands) and high level abstraction layers.
14
15 The low level may depend on current hardware and OS services (like
16 OSS). Mid level (MCI) and high level must be written independently
17 from the hardware and OS services.
18 There are two specific low level drivers call mappers (for wave and
19 +midi) whose role is to :
20 * help choosing one low level driver between many
21 * add the possibility to convert stream (ie ADPCM => PCM)
22 * add the possibility to filter a stream (adding echo, equalizer...)
23
24 All of those components are defined as DLLs (one by one) and are
25 candidate for dllglue migration.
26
271. Low level layers
28===================
29
30 Please note that native low level drivers are not currently supported
31 in WINE, because they either access hardware components or require
32 VxDs to be loaded; WINE does not correctly supports those two so far.
33
34 The following low level layers are implemented:
35
361.1 (Wave form) Audio
37---------------------
Alexandre Julliarda69b88b1998-03-15 20:29:56 +000038
Eric Pouech33937301999-12-08 03:26:58 +000039 MMSYSTEM and WINMM call the real low level audio driver using the
40 wodMessage/widMessage which handles the different requests.
41
42 1.1.1 OSS implementation
43
44 The low level audio driver is currently only implemented for the
45 OpenSoundSystem (OSS) as supplied in the Linux and FreeBSD kernels by
46 [1]4Front Technologies. The presence of this driver is checked by
47 configure (depends on the <sys/soundcard.h> file). Source code resides
48 in dlls/winmm/wineoss/audio.c,
49
Eric Pouecha72a3941999-06-26 10:20:34 +000050 The implementation contains all features commonly used, but has
51 several problems (see TODO list).
Eric Pouech33937301999-12-08 03:26:58 +000052
Alexandre Julliarda69b88b1998-03-15 20:29:56 +000053 TODO:
Eric Pouech33937301999-12-08 03:26:58 +000054 * add asynchronous reads [recording] (must use threads) as done for
55 writes [playing]
56 * verify all functions for correctness
57 * looping of WaveHdr will fail
58 * share access to /dev/dsp with dsound interface (either on a
59 descriptor basis, or using a virtual mixer between different wave
60 inputs. EsounD provides this type of capability).
61
62 1.1.2 Other sub systems
63
64 None are available. Could think of Sun Audio, remote audio systems
65 (using X extensions, ...), ALSA, EsounD
66
Eric Pouecha72a3941999-06-26 10:20:34 +0000671.2 MIDI
68--------
69
Eric Pouech33937301999-12-08 03:26:58 +000070 MMSYSTEM and WINMM call the low level driver functions using the
71 midMessage and the modMessage functions.
72
73 1.2.1 OSS driver
74
75 The low level audio driver is currently only implemented for the
76 OpenSoundSystem (OSS) as supplied in the Linux and FreeBSD kernels by
77 [1]4Front Technologies . The presence of this driver is checked by
78 configure (depends on the <sys/soundcard.h> file, and also some
79 specific defines because MIDI is not supported on all OSes by OSS).
80 Source code resides in dlls/winmm/wineoss/midi.c
81
Eric Pouecha72a3941999-06-26 10:20:34 +000082 Both Midi in and Midi out are provided. The type of MIDI devices
83 supported is external MIDI port (requires an MIDI capable device -
84 keyboard...) and OPL/2 synthesis (the OPL/2 patches for all
Eric Pouech33937301999-12-08 03:26:58 +000085 instruments are in midiPatch.c).
86
Alexandre Julliarda69b88b1998-03-15 20:29:56 +000087 TODO:
Eric Pouech33937301999-12-08 03:26:58 +000088 * use better instrument definition for OPL/2 (midiPatch.c) or use
89 existing instrument definition (from playmidi or kmid) with a
90 .winerc option
91 * have a look at OPL/3 ?
92 * implement asynchronous playback of MidiHdr
93 * implement STREAM'ed MidiHdr (question: how shall we share the code
94 between the midiStream functions in MMSYSTEM/WINMM and the code
95 for the low level driver)
96 * use a more accurate read mechanism than the one of snooping on
97 timers (like select on fd)
98
99 1.2.2 Other sub systems
100
101 Could support other midi implementation for other sub systems (any
102 idea here ?)
103
104 Could also implement a software synthesizer, either inside Wine or
105 using using MIDI loop back devices in an external program (like
106 timidity). The only trouble is that timidity is GPL'ed...
107
Eric Pouecha72a3941999-06-26 10:20:34 +00001081.3 Mixer
109---------
110
Eric Pouech33937301999-12-08 03:26:58 +0000111 MMSYSTEM and WINMM call the low level driver functions using the
112 mixMessage function.
113
114 1.3.1 OSS implementation
115
116 The current implementation uses the OpenSoundSystem mixer, and resides
117 in dlls/winmm/wineoss/mixer.c
Alexandre Julliarda69b88b1998-03-15 20:29:56 +0000118
Alexandre Julliarda69b88b1998-03-15 20:29:56 +0000119 TODO:
Eric Pouech33937301999-12-08 03:26:58 +0000120 * implement notification mechanism when state of mixer's controls
121 change
122
1231.3.2 Other sub systems
Alexandre Julliarda69b88b1998-03-15 20:29:56 +0000124
Eric Pouech33937301999-12-08 03:26:58 +0000125 TODO:
126 * implement mixing low level drivers for other mixers (ALSA...)
127
Eric Pouecha72a3941999-06-26 10:20:34 +00001281.4 AUX
129-------
Eric Pouech33937301999-12-08 03:26:58 +0000130
131 The AUX low level driver is the predecessor of the mixer driver
132 (introduced in Win 95).
Alexandre Julliarda69b88b1998-03-15 20:29:56 +0000133
Eric Pouech33937301999-12-08 03:26:58 +0000134 1.4.1 OSS driver
135
Alexandre Julliarda69b88b1998-03-15 20:29:56 +0000136 The implementation uses the OSS mixer API, and is incomplete.
Eric Pouech33937301999-12-08 03:26:58 +0000137
Alexandre Julliarda69b88b1998-03-15 20:29:56 +0000138 TODO:
Eric Pouech33937301999-12-08 03:26:58 +0000139 * verify the implementation
140 * check with what is done in mixer
141 * open question: shall we implement it on top of the low level mixer
142 functions ?
143
1441.5 Joystick
Eric Pouecha72a3941999-06-26 10:20:34 +0000145------------
Alexandre Julliarda69b88b1998-03-15 20:29:56 +0000146
Eric Pouech33937301999-12-08 03:26:58 +0000147 The API consists of the joy* functions found in dlls/winmm/joystick.c.
148 The implementation currently uses the Linux joystick device driver
149 API. It is lacking support for enhanced joysticks and has not been
150 extensively tested.
151
Alexandre Julliarda69b88b1998-03-15 20:29:56 +0000152 TODO:
Eric Pouech33937301999-12-08 03:26:58 +0000153 * better support of enhanced joysticks
154 * support more joystick drivers (like the XInput extension)
155 * should make joystick a separate DLL (impact also on
156 WINMM/MMSYSTEM), or a real low level driver, as it is on Windows
157
158
1591.6 Wave mapper (msacm.drv)
160---------------------------
Alexandre Julliarda69b88b1998-03-15 20:29:56 +0000161
Eric Pouech33937301999-12-08 03:26:58 +0000162 The Wave mapper device allows to load on-demand codecs in order to
163 perform software conversion for the types the actual low level driver
164 (hardware). Those codecs are provided through the standard ACM
165 drivers.
Alexandre Julliarda69b88b1998-03-15 20:29:56 +0000166
Eric Pouech33937301999-12-08 03:26:58 +0000167
168 1.6.1 Build-in
169
170 A first working implementation for wave out as been provided (wave in
171 exists, but doesn't allow conversion).
172 Wave mapper driver implementation can be found in dlls/winmm/wavemap/
173 directory. This driver heavily relies on MSACM and MSACM32 DLLs which
174 can be found in dlls/msacm and dlls/msacm32. Those DLLs load ACM
175 drivers which provide the conversion to PCM format (which is normally
176 supported by low level drivers). ADPCM, MP3... fit into the category
177 of non PCM formats.
178
179 There is currently no builtin ACM driver in Wine, so you must use
180 native ones if you're looking for non PCM playback.
181
182 In order to use native ACM drivers to play non PCM files, you must use
183 -dll msacm,msacm32,msacm.drv=b. Note that this code is not complete
184 yet, and may cause problems. sndrec32 and mplayer from Win95 appear to
185 work reasonably well though.
186
187 TODO:
188 * do wave in
189 * check for correctness and robustness
190
191 1.6.2 Native
192
193 Seems to work quite ok (using of course native MSACM/MSACM32 DLLs)
194 Some other testings report some issues while reading back the registry
195 settings.
196
1971.7 MIDI mapper
198---------------
Alexandre Julliarda69b88b1998-03-15 20:29:56 +0000199
Eric Pouech33937301999-12-08 03:26:58 +0000200 Midi mapper allows to map each one of 16 MIDI channels to a specific
201 instrument on an installed sound card. This allows for example to
202 support different MIDI instrument definition (XM, GM...). It also
203 permits to output on a per channel basis to different MIDI renderers.
204
205
206 1.7.1 Built-in
207
208 A builtin MIDI mapper can be found in dlls/winmm/midimap. It only
209 provides the pickup of an existing MIDI low level driver for playback.
210
211 TODO:
212 * implement the Midi mapper features (channel / instrument on the
213 fly modification)
214
215 1.7.2 Native
216
217 Currently, the native midimapper i'm using is not working (mainly
218 because it reads low level drivers configuration from registry).
219
220 TODO:
221 * let native midimapper driver load
222
2232. Mid level drivers (MCI)
224==========================
225
226 The mid level drivers are represented by some common API functions,
227 mostly mciSendCommand and mciSendString. See status in chapter 3 for
228 more information. WINE implements several MCI mid level drivers
229 (status is given for both built-in and native implementation):
230
231 TODO: (apply to all built-in MCI drivers)
232 * use mmsystem multitasking caps instead of the home grown
233
Alexandre Julliarda69b88b1998-03-15 20:29:56 +00002342.1 CDAUDIO
Eric Pouecha72a3941999-06-26 10:20:34 +0000235-----------
Eric Pouecha72a3941999-06-26 10:20:34 +0000236
Eric Pouech33937301999-12-08 03:26:58 +0000237 2.1.1 Built-in
238
Alexandre Julliarda69b88b1998-03-15 20:29:56 +0000239 The currently best implementation is the MCI CDAUDIO driver that can
Eric Pouech33937301999-12-08 03:26:58 +0000240 be found in dlls/winmm/mcicda/mcicda.c. The implementation is mostly
241 complete, there have been no reports of errors. It makes use of
242 misc/cdrom.c Wine internal cdrom interface.
243 This interface has been ported on Linux, FreeBSD and NetBSD. (Sun
244 should be similar, but are not implemented.)
245
Alexandre Julliarda69b88b1998-03-15 20:29:56 +0000246 A very small example of a cdplayer consists just of the line
247 mciSendString("play cdaudio",NULL,0,0);
Eric Pouech33937301999-12-08 03:26:58 +0000248
Alexandre Julliarda69b88b1998-03-15 20:29:56 +0000249 TODO:
Eric Pouech33937301999-12-08 03:26:58 +0000250 * add support for other cdaudio drivers (Solaris...)
251 * add support for multiple cdaudio devices
252
253 2.1.2 Native
254
255 Native MCICDA works also correctly... It uses the mscdex traps (on int
256 2f).
257
Alexandre Julliarda69b88b1998-03-15 20:29:56 +00002582.2 MCIWAVE
Eric Pouecha72a3941999-06-26 10:20:34 +0000259-----------
Eric Pouech33937301999-12-08 03:26:58 +0000260
261 2.2.1 Built-in
262
263 The implementation is rather complete and can be found in
264 dlls/winmm/mciwave/audio.c. It uses the low level audio API (although
265 not abstracted correctly).
Alexandre Julliarda69b88b1998-03-15 20:29:56 +0000266
Eric Pouech33937301999-12-08 03:26:58 +0000267 FIXME:
268 * The MCI_STATUS command is broken.
269
270 TODO:
271 * check for correctness
272 * better use of asynchronous playback from low level
273 * record has to be checked
274 * MCI_CUE command is broken
275 * better implement non waiting command (without the MCI_WAIT flag).
276
277 2.2.2 Native
278
Eric Pouecha72a3941999-06-26 10:20:34 +0000279 Native MCIWAVE works also correctly.
Eric Pouech33937301999-12-08 03:26:58 +0000280
Eric Pouecha72a3941999-06-26 10:20:34 +00002812.3 MCISEQ (MIDI sequencer)
282---------------------------
Eric Pouecha72a3941999-06-26 10:20:34 +0000283
Eric Pouech33937301999-12-08 03:26:58 +0000284 2.3.1 Built-in
285
286 The implementation can be found in dlls/winmm/mciseq/mcimidi.c. Except
287 from the Record command, should be close to completion (except for non
Eric Pouecha72a3941999-06-26 10:20:34 +0000288 blocking commands).
Eric Pouech33937301999-12-08 03:26:58 +0000289
290 TODO:
291 * implement it correctly
292 * finish asynchronous commands (especially for reading/record)
293 * better implement non waiting command (without the MCI_WAIT flag).
294
295 2.3.2 Native
296
297 Native MCIMIDI has been working but is currently blocked by scheduling
298 issues (mmTaskXXX no longer work).
299
300 FIXME:
301 * midiStreamPlay get from time to time an incorrect MidiHdr when
302 using the native MCI sequencer
303
Alexandre Julliarda69b88b1998-03-15 20:29:56 +00003042.4 MCIANIM
Eric Pouecha72a3941999-06-26 10:20:34 +0000305-----------
Alexandre Julliarda69b88b1998-03-15 20:29:56 +0000306
Eric Pouech33937301999-12-08 03:26:58 +0000307 2.4.1 Built-in
308
309 The implementation consists of stubs and is in dlls/winmm/mcianim.c.
310
311 TODO:
312 * implement it, probably using xanim or something similar.
313
314 2.4.2 Native
315
316 Native MCIANIM is reported to work (but requires native video DLLs
Eric Pouecha72a3941999-06-26 10:20:34 +0000317 also).
Eric Pouech33937301999-12-08 03:26:58 +0000318
Eric Pouech281c9271999-05-02 10:21:49 +00003192.5 MCIAVI
Eric Pouecha72a3941999-06-26 10:20:34 +0000320----------
321
Eric Pouech33937301999-12-08 03:26:58 +0000322 2.5.1 Built-in
323
324 The implementation consists of stubs and is in
325 dlls/winmm/mciavi/mciavi.c.
326
327 TODO:
328 * implement it, probably using xanim or something similar.
329
Eric Pouecha72a3941999-06-26 10:20:34 +00003302.5.2 Native
331
332 Native MCIAVI is reported to work (but requires native video DLLs
333 also). Some files exhibit some deadlock issues anyway.
Eric Pouech33937301999-12-08 03:26:58 +0000334
3353 High level layers
Eric Pouecha72a3941999-06-26 10:20:34 +0000336===================
Eric Pouech33937301999-12-08 03:26:58 +0000337
338 The rest (basically the MMSYSTEM and WINMM DLLs entry points). It also
339 provides the skeleton for the core functionality for multimedia
340 rendering. Note that native MMSYSTEM and WINMM do not currently work
341 under WINE and there is no plan to support them (it would require to
342 also fully support VxD, which is not done yet).
343 MCI and low level drivers can either be 16 or 32 bit.
344
Eric Pouecha72a3941999-06-26 10:20:34 +0000345 TODO:
Eric Pouech33937301999-12-08 03:26:58 +0000346 * it seems that some program check what's installed in registry
347 against value returned by drivers. Wine is currently broken
348 regarding this point.
349 * add clean-up mechanisms when process detaches from MM DLLs
350 * prepare for the 16/32 big split
351 * check thread-safeness for MMSYSTEM and WINMM entry points
352 * unicode entry points are badly supported
353
3543.1 MCI skeleton
355----------------
Eric Pouecha72a3941999-06-26 10:20:34 +0000356
Eric Pouech33937301999-12-08 03:26:58 +0000357 Implementation of what is needed to load/unload MCI drivers, and to
358 pass correct information to them. This is implemented in
359 dlls/winmm/mci.c. The mciSendString function uses command strings,
360 which are translated into normal MCI commands as used by
361 mciSendCommand with the help of command tables. The API can be found
362 in dlls/winmm/mmsystem.c and dlls/winmm/mci.c. The functions there
363 (mciOpen,mciSysInfo) handle mid level driver allocation and calls. The
364 implementation is not complete.
365 MCI drivers are seen as regular WINE modules, and can be loaded (with
366 a correct load order between built-in, native, elfdll, so), as any
367 other DLL. Please note, that MCI drivers module names must bear the
368 .drv extension to be correctly understood.
Eric Pouecha72a3941999-06-26 10:20:34 +0000369 The list of available MCI drivers is obtained as follows:
Eric Pouech33937301999-12-08 03:26:58 +0000370 1. key 'mci' in [option] section from .winerc (or wineconf)
371 mci=CDAUDIO:SEQUENCER gives the list of MCI drivers (names, in
372 uppercase only) to be used in WINE.
373 2. This list, when defined, supersedes the mci key in
374 c:\windows\system.ini
375
376 Note that native VIDEODISC crashes when the module is loaded, which
377 occurs when the MCI procedures are initialised. Make sure that this is
378 not in the list from above. Try adding:
379 mci=CDAUDIO:SEQUENCER:WAVEAUDIO:AVIVIDEO:MPEGVIDEO
380 to the [options] section of wine.conf.
381
Eric Pouecha72a3941999-06-26 10:20:34 +0000382 TODO:
Eric Pouech33937301999-12-08 03:26:58 +0000383 * correctly handle the MCI_ALL_DEVICE_ID in functions.
384 * finish mapping 16 <=> 32 of MCI structures and commands
385 * MCI_SOUND is not handled correctly (should not be sent to MCI
386 driver => same behavior as MCI_BREAK)
387 * do not display module warning when failed to 32-bit load a 16 bit
388 module when 16 bit load can succeed (and the other way around)
389 * implement auto-open feature (ie, when a string command is issued
390 for a not yet opened device, MCI automatically opens it)
391
Eric Pouecha72a3941999-06-26 10:20:34 +00003923.2 MCI multi-tasking
393---------------------
Eric Pouecha72a3941999-06-26 10:20:34 +0000394
Eric Pouech33937301999-12-08 03:26:58 +0000395 Multi-tasking capabilities used for the MCI drivers are provided in
396 dlls/winmm/mmsystem.c.
397
398 TODO:
399
400 mmTaskXXX functions are currently broken because the 16 loader does
401 not support binary command lines => provide Wine's own mmtask.tsk not
402 using binary command line.
403
404 the Wine native MCI drivers should use the mmThreadXXX API and no
405 longer use the MCI_AsyncCommand hack.
406
Eric Pouecha72a3941999-06-26 10:20:34 +00004073.3 Timers
408----------
409
410 It currently uses a service thread, run in the context of the calling
Eric Pouech33937301999-12-08 03:26:58 +0000411 process, which should correctly mimic Windows behavior.
412
Eric Pouecha72a3941999-06-26 10:20:34 +0000413 TODO:
Eric Pouech33937301999-12-08 03:26:58 +0000414 * Check if minimal time is satisfactory for most programs.
415 * current implementation may let a timer tick (once) after it has
416 been destroyed
417
Eric Pouecha72a3941999-06-26 10:20:34 +00004183.4 MMIO
419--------
Eric Pouech33937301999-12-08 03:26:58 +0000420
421 The API consists of the mmio* functions found in mdlls/winmm/mmio.c.
422 Seems to work ok in most of the cases. There's some linear/segmented
423 issues with 16 bit code.
Eric Pouecha72a3941999-06-26 10:20:34 +0000424
Eric Pouech33937301999-12-08 03:26:58 +00004253.5 sndPlayXXX functions
426------------------------
Eric Pouecha72a3941999-06-26 10:20:34 +0000427
Eric Pouech33937301999-12-08 03:26:58 +0000428 Seem to work correctly.
429
4304 Multimedia configuration
431==========================
432
433 Currently, multimedia configuration heavily relies on Win 3.x
434 configuration model.
435
4364.1 Drivers
437-----------
Eric Pouecha72a3941999-06-26 10:20:34 +0000438
Eric Pouech33937301999-12-08 03:26:58 +0000439 Since all multimedia drivers (MCI, low level ones, ACM drivers,
440 mappers) are, at first, drivers they need to appear in the [mci] or
441 [mci32] section of the system.ini file.
442 Since all drivers are, at first, DLLs, you can choose to load their
443 Wine's (builtin) or Windows (native) version.
444
4454.2 MCI
446-------
447
448 A default [mci] section (in system.ini) looks like (see the note above
449 on videodisc):
450
451 [mci]
452 cdaudio=mcicda.drv
453 sequencer=mciseq.drv
454 waveaudio=mciwave.drv
455 avivideo=mciavi.drv
456 videodisc=mcipionr.drv
457 vcr=mcivisca.drv
458 MPEGVideo=mciqtz.drv
459
460 By default, the list of loadable MCI drivers will be made of those
461 drivers (in the [mci] section).
462
463 The list of loadable (recognized) MCI drivers can be altered in the
464 [option] section of wine.conf, like:
465 mci=CDAUDIO:SEQUENCER:WAVEAUDIO:AVIVIDEO:MPEGVIDEO
466
Eric Pouecha72a3941999-06-26 10:20:34 +0000467 TODO:
Eric Pouech33937301999-12-08 03:26:58 +0000468
469 use a default registry setting to bypass this (ugly) configuration
470 model
471
4724.3 Low level drivers
473---------------------
Eric Pouecha72a3941999-06-26 10:20:34 +0000474
Eric Pouech33937301999-12-08 03:26:58 +0000475 They are currently hardcoded in dlls/winmm/lolvldrv.c.
476
477 TODO:
478
479 use a default registry setting to provide a decent configuration
480 model. this shall also help some programs to work (some of them test
481 the names returned by low level drivers with the ones defined and
482 installed in the registry)
483
4844.4 ACM
485-------
486
487 To be done (use the same mechanism as MCI drivers configuration).
488
4895 Multimedia architecture
490=========================
491
4925.1 Windows 9x multimedia architecture
493--------------------------------------
494
495 |
496Kernel space | Client applications
497 |
498 | | | ^ ^ | | | |
499 | 16>| |<32 16>| |<32 16>| |<32 16>| |<32
500 | | v | | | v | v
501 | +----|-----------|---------|------------|-------+
502 | | | | | | | WinMM.dll
503 | | | | | | | 32 bit
504 | +----|-----------|---------|------------|-------+
505 | | | | ^ | | |
506 | +------+ | |<16 | | | |<16 |
507 | | 16>| | | | | | | |
508 | | v v v | | v v v
509 | | +---------------+---+-------------+-------------+
510 | | | waveInXXX | | mciXXX | *playSound* |
511 | | | waveOutXXX | | | mmioXXX |
512 | | | midiInXXX | | | timeXXX |
513 | | | midiOutXXX | | | driverXXX |
514 | | | midiStreamXXX | | | | MMSystem.dll
515 | | | mixerXXX | | | | 16 bit
516 +--------+ | | | auxXXX +---+ +---+ mmThread| |
517 |MMDEVLDR|<------->| joyXXX | Call back | mmTask | |
518 +--------+ | | +-----------+-----------+---------+-------------+
519 ^ | | | ^ ^ | ^
520 | | | 16>| |<16>| 16>| |<16
521 v | | v | | v |
522 +--------+ | | +-------------+ +----------+
523 | VxD |<------->| .drv | | mci*.drv |
524 +--------+ | | +--------------+ +-----------+
525 | | | msacmm.drv | | mciwave |
526 | | +--------------+ +-----------+
527 | | | midimap.drv | | mcimidi |
528 | | +-------------+ +-----------+
529 | | Low-level drivers | ... | MCI drivers
530 | | +----------+
531 | | |
532 | | |<16
533 | +-------------------------------+
534 |
535
536 The important points to notice are:
537 * all drivers (and most of the core code) is 16 bit
538 * all hardware (or most of it) dependant code reside in the kernel
539 space (which is not surprising)
540
5415.2 Wine multimedia architecture
542--------------------------------
543
544 |
545Kernel space | Client applications
546 |
547 | | | ^ ^ | | | |
548 | 16>| |<32 16>| |<32 16>| |<32 16>| |<32
549 | | | | | | | | |
550 | +------+ | | | | | | | |
551 | |32/16>| | | | | | | | |
552 | | v v v | | v v v v
553 | | +---------------+---+-------------+-------------+
554 | | | waveInXXX | | mciXXX | *playSound* |
555 | | | waveOutXXX | | | mmioXXX | WinMM.dll
556 | | | midiInXXX | | | timeXXX | 32 bit
557 | | | midiOutXXX | | | driverXXX |
558 | | | midiStreamXXX | | | | MSystem.dll
559 | | | mixerXXX | | | | 16 bit
560 | | | auxXXX +---+ +---+ mmThread| |
561 | | | joyXXX | Call back | mmTask | |
562 | | +-----------+-----------+---------+-------------+
563 | | | | ^ ^ || ^^
564 | | 16>| |<32 |<16>| 16>||<32>||<16
565 | | v v |<32>| vv ||
566+---------+ | | +-------------+ +----------+
567|HW driver|<------->| .drv | | mci*.drv |
568+---------+ | | +--------------+ +-----------+
569 | | | msacmm.drv | | mciwave |
570 | | +--------------+ +-----------+
571 | | | midimap.drv | | mcimidi |
572 | | +-------------+ +-----------+
573 | | Low-level drivers | ... | MCI drivers
574 | | +----------+
575 | | |
576 | | |<32/16
577 | +-------------------------------+
578 |
579
580 From the previous drawings, the most noticeable difference are:
581 * low-level drivers can either be 16 or 32 bit
582 * MCI drivers can either be 16 or 32 bit
583 * MMSystem and WinMM will be hosted in a single elfglue library
584 * no link between the MMSystem/WinMM pair on kernel space shall
585 exist. For example, there will be a low level driver to talk to a
586 UNIX OSS (Open Sound System) driver
587 * all built-in drivers (low-level and MCI) will be written as 32 bit
588 drivers
589 all native drivers will be 16 bits drivers
590
591 ______________________________________________________
592
593 Last updated: 6, December 1999
594 By: Eric Pouech (eric.pouech@wanadoo.fr)
595
596References
597
598 1. http://www.4front-tech.com/