Chapter 14. Wine and Multimedia

Table of Contents
14.1. Overview
14.2. Low level layers
14.3. Mid level drivers (MCI)
14.4. High level layers
14.5. Multimedia configuration
14.6. Multimedia architecture
14.7. MS ACM Dlls

This file contains information about the implementation of the multimedia layer of Wine.

The implementation can be found in the dlls/winmm/ directory (and in many of its subdirectories), but also in dlls/msacm/ (for the audio compression/decompression manager) and dlls/msvideo/ (for the video compression/decompression manager).

Written by Eric Pouech (Last updated: 02/16/2001)

14.1. Overview

The multimedia stuff is split into 3 layers. The low level (device drivers), mid level (MCI commands) and high level abstraction layers. The low level layer has also some helper DLLs (like the MSACM/MSACM32 and MSVIDEO/MSVFW32 pairs).

The low level layer may depend on current hardware and OS services (like OSS on Unix). Mid level (MCI) and high level layers must be written independently from the hardware and OS services.

There are two specific low level drivers (one for wave input/output, another one for MIDI output only), whose role is:

All of those components are defined as DLLs (one by one).