DirectShow

From Wikipedia, the free encyclopedia

Logo of the DirectX Media SDK - the first time DirectShow was distributed under its current name.
Logo of the DirectX Media SDK - the first time DirectShow was distributed under its current name.

DirectShow (sometimes abbreviated as DS or DShow), codename Quartz, is a multimedia framework and API produced by Microsoft for software developers to perform various operations with media files. It is a replacement for Microsoft's earlier Video for Windows technology. Based on the Microsoft Windows Component Object Model (COM) framework, DirectShow provides a common interface for media across many of Microsoft's programming languages, and is an extensible, filter-based framework that can render or record media files on demand at the behest of the user or developer. The DirectShow development tools and documentation are distributed as part of the Microsoft Platform SDK.

Most video-related applications on Windows, such as Microsoft's Windows Media Player, as well as most third-party applications use DirectShow or a variation thereof to manage multimedia content.[citation needed] DirectShow's most notable competition is Apple Computer's QuickTime framework. Microsoft plans to replace DirectShow with Media Foundation.

Contents

[edit] History

DirectShow has its roots in a Microsoft project codenamed Clockwork that was begun in Redmond in early 1992 to redesign and componentize the Windows multimedia subsystem. Clockwork was primarily a reponse to the success of Apple QuickTime and was used in the Microsoft Interactive Television system (codenamed Tiger). The direct predecessor of DirectShow, ActiveMovie (codenamed Quartz), was an offshoot of the Clockwork effort picked up and turned into a product by Geraint Davies et al. of Microsoft UK. After being announced in March 1996,[1] ActiveMovie was released in May 1996 bundled with the beta version of Internet Explorer 3.0.[2] Its main purpose at the time was to serve as a plugin for Internet Explorer, much like QuickTime offered for Netscape and Internet Explorer, and as a future replacement for Video for Windows, particularly for MPEG files whose frame-reordering was problematic.

In March 1997, Microsoft announced that ActiveMovie would become part of the DirectX 5 suite of technologies,[3] and around July started referring to it as DirectShow,[4] reflecting Microsoft's efforts at the time to consolidate technologies that worked "directly" with hardware under a common naming scheme. DirectShow became a standard component of all Windows operatings systems starting with Windows 98. In version 7 of DirectX, DirectShow became part of the mainline distribution of the DirectX SDK and was placed alongside other DirectX APIs such as DirectInput.

In October of 2004, DirectShow was removed from the main DirectX distribution and relocated to the DirectX Extras download. In April of 2005, DirectShow was removed entirely from DirectX and moved to the Microsoft Platform SDK. The DirectX SDK was, however, still required to build DirectShow samples.[5]

[edit] Architecture

DirectShow divides the processing of multimedia tasks such as video playback into a set of steps known as filters. Each filter represents a stage in the processing of the data. Filters have a number of input and output pins which connect them together. The generic design of the connection mechanism means that filters can be connected in many different ways for different tasks to build a filter graph, and developers can add custom effects or other filters at any stage in the graph, then render the file, URL or camera. During the rendering process, the filter graph searches the Windows Registry for registered filters and builds its graph of filters based on the location provided. After this, it connects the filters together, and, at the developer's request, plays/pauses etc. the created graph. DirectShow filter graphs are widely used in video playback (in which the filters will provide steps such as file parsing, video and audio de-multiplexing, decompressing and rendering) as well as being used for video and audio recording and editing. Interactive tasks such as DVD navigation are also successfully based on DirectShow.

Filter graph of an mp3 file, as rendered by the DirectShow sample GraphEdit. In this picture the big boxes represent filters and the tiny boxes on the horizontal ends of the filters represent pins.
Filter graph of an mp3 file, as rendered by the DirectShow sample GraphEdit. In this picture the big boxes represent filters and the tiny boxes on the horizontal ends of the filters represent pins.

In the above example for instance, from left to right, the graph contains a source filter to read an MP3 file, stream splitter and decoder filters to parse and decode the audio, and a rendering filter to play the raw audio samples. Each filter has a number of pins that represent connection points on the filter that can be attached to other filters. Pins can be either output or input. Depending on the filter, data is either "pulled" from an output pin or "pushed" to an input pin in order to transfer data between filters.

Most filters are built using a set of C++ classes provided in the DirectShow SDK, called the DirectShow Base Classes. These handle much of the creation, registration and connection logic for the filter. For the filter graph to use filters automatically, they need to be registered in a separate DirectShow registry entry as well as being registered with COM. This registration can be managed by the DirectShow Base Classes. However, if the application adds the filters manually, they do not need to be registered at all.

Unfortunately, it is difficult to modify a graph that is already running. It is usually easier to stop the graph and create a new graph from scratch. Starting with DirectShow 8.0 dynamic graph building, dynamic reconnection, and filter chains were introduced to help alter the graph while it was running. However, many filter vendors ignore this feature, making graph modification problematic after after a graph has begun processing.

[edit] Features

There are several levels of abstraction available in rendering sources in DirectShow, and doing any of these is fairly simple to do as long as a custom filter is not needed. At the most basic level, the procedure is for the developer to build a filter graph from scratch by manually adding and connecting each desired filter in the graph. The procedure for the next level of complexity is for the developer to create his or her own filter graph, for example from a source filter that contains information about a file or website address (URL) and possibly some custom filter that the user would desire, and then to let DirectShow complete the filter graph for the user and connect the filters together. Finally, the developer could just let DirectShow create a filter graph for him or her automatically from a source such as a file or URL.

By default, DirectShow supports several common media file formats, such as MPEG1 (no encoding support out of the box), MP3,[6] and Windows Media Video as well as several more mundane formats, such as plain static images.[7] Since the technology is licensed in Windows, no payout to Fraunhofer is required for, say, an MP3 license. DirectShow, however is completely extensible, and extensions allow DirectShow to be extended to support any container format available including any audio or video codec; for example, there have been filters made for Ogg Vorbis files[8] and AC3, and quite a lot of other formats.

Unlike the main C API of QuickTime where it is necessary to call MoviesTask in a loop to load a media file, DirectShow handles all of this in a transparent way. It creates several background threads that smoothly play the requested file or URL without much work required from the programmer. Also in contrast to QuickTime, nothing special is required for loading a URL instead of a local file on disk - DirectShow's filter graph abstracts these details from the programmer. Recent developments in QuickTime (including an ActiveX Control) have lessened this, however.

[edit] DirectShow Editing Services

DirectShow Editing Services (DES), introduced in DirectX 8.0 / Windows XP is an API targeted at video editing tasks and built on top of the core DirectShow architecture. 'DirectShow Editing Services' was introduced for Microsoft's Windows Movie Maker. It includes APIs for timeline and switching services, resizing, cropping, video and audio effects, as well as transitions, keying, automatic frame rate and sampling rate conversion and such other features which are used in non-linear video editing allowing creation of composite media out of a number of source audio and video streams. DirectShow Editing Services allow higher-level run-time compositing, seeking support, and graph management, while still allowing applications to access lower-level DirectShow functions.

[edit] Criticism

Commanding DirectShow to play a file is a relatively simple task. However, while programming more advanced customizations, such as commanding DirectShow to display certain windows messages from the video window or creating custom filters, many developers complain of difficulties. It is often regarded as one of Microsoft's most complex development libraries/APIs.

Developers rarely create DirectShow filters "from scratch", rather, they employ a set of MFC-like (although not requiring MFC) classes called the "DirectShow Base Classes." The Base Classes can often simplify development, allowing the programmer to bypass certain tasks. However, the process may remain relatively complex; the code found in the Base Classes is nearly half the size of the entire MFC library. As a result, even with the Base Classes, the number of COM objects that DirectShow contains overwhelms many developers. In some cases, DirectShow's API deviates from traditional COM rules, particularly in regards to the parameters used for methods. To overcome their difficulties with DirectShow's unique COM rules, developers often turn to a higher level API that uses DirectShow, notably, Windows Media Player SDK. This API provides the developer with an ActiveX Control that has fewer COM interfaces to deal with.

DirectShow has also been criticized for its support of digital rights management (DRM). However, this criticism appears misplaced, as DirectShow itself has minimal support for DRM in its API. The Windows Media Player SDK more significantly reflects Microsoft's adherence to DRM.

DirectShow has also been scrutinized for compatibility problems with third-party media players (media displaying software not belonging to Microsoft). After a settlement with the European Union, Microsoft started shipping a version of Windows that excluded Windows Media Player. While all of DirectShow's default formats[7] appeared to be supported, Microsoft suggested that the stripped-down versions of the operating system may not have supported all of those formats.[9]

[edit] Video Renderer vs. VMR7 vs. VMR9

Case in point to the complexity argument – originally the way to play video was to use the Video Renderer filter. This drew the images using DirectDraw, but could also fall back to GDI drawing in some circumstances. One problem with it was limited access to the window: Video for Windows had been plagued with deadlocks caused by applications' incorrect handling of the video window, so in early DirectShow releases, the handle to the playback window was hidden from applications. This of course made it very difficult for sophisticated applications to handle Windows messages, such as WM_SETCURSOR.[10] There was also no reliable way to draw caption text or graphics on top of the video.

DirectShow 6.0 has introduced Overlay Mixer renderer designed for DVD playback and broadcast video streams with closed captioning and subtitles. The Overlay Mixer uses DirectDraw for rendering, downstream connection with Video Renderer is required for window management. Overlay Mixer also supports Video Port Extensions (VPE), enabling to work with analog TV tuners with overlay capability (sending video directly to a video card via analog link rather than via PCI bus). Overlay Mixer also supports DXVA connections.

Windows XP introduced a new filter called VMR-7[11] (Abbreviation for Video Mixing Renderer 7, sometimes just referred to as plain VMR). The number 7 was because VMR-7 only used DirectDraw version 7 to render the video and did not have the option to use GDI drawing. The main new feature of VMR-7 was the ability to mix multiple streams and graphics, so allowing applications to draw text and graphics over the video. VMR7 also featured a "windowless mode"[12] which fixed the problems with access to the window handle; however it required a bit of extra initialization code. For non-technical reasons, it was released only on Windows XP.[13]

DirectX 9 included yet another renderer, dubbed VMR-9.[14] This version depends on DirectX9-style graphics (also known as Direct3D). Unlike the VMR-7, it also would work on any system that supported DirectX9, provided that the graphics adapter could support the required Direct3D modes. However, this caused even further splintering on an already extremely involved API.

Windows Vista ships with yet another renderer, available as both a Media Foundation component and a DirectShow filter, called EVR, or the Enhanced Video Renderer.[15] EVR supports DXVA 2.0. DXVA 2.0 is also exclusive to Windows Vista, however the .NET Framework 3.0 redistributable installs EVR on Windows XP.[16]

[edit] Codec hell

Codec hell (a term derived from DLL hell) is when multiple DirectShow filters exist on a given PC for encoding or decoding the same media type. Many companies now develop codecs in the form of DirectShow filters, resulting in the presence of several filters that can decode the same media type. This issue is further exacerbated by DirectShow's merit system, where filter implementations end up competing with one another by registering themselves with increasingly elevated priority.

Microsoft's Ted Youmans explained that "(DirectShow) was based on the merit system (pun intended) with the idea being that using a combination of the filter’s merit and how specific the media type/sub type is one could reasonably pick the right codec every time. It wasn't really designed for a competing merit nuclear arms race."[17]

DirectShow is capable of dynamically building a graph to render a given media type, but it becomes difficult for developers to rely on this functionality when the resulting filter graph is variable.[citation needed] Furthermore, it is possible for filter graphs to change over time as new filters are introduced to the computer, which can result in a support nightmare for developers and businesses. Developers often resort to manually building filter graphs to be certain of their contents, which cripples one of DirectShow's more appealing features.

[edit] Lack of tools and codecs

DirectShow is also criticised for its lack of built-in authoring tools, GUI and standard codecs. Although DirectShow is extensible and supports third-party formats through "filters", it focusses more on playback and less on authoring/encoding. Unlike its predecessor Video for Windows (which also includes Audio Compression Manager) or its competitor QuickTime, DirectShow provides no direct means for end-users to encode/create/export files but requires developers to build end to end filter graphs for encoding content. So while DirectShow is equally flexible for authoring/encoding, using filters for muxing/file writers, only developers can use these features. End users, non-technical users who require GUI tools for encoding content cannot use DirectShow, without the use of third-party tools. Microsoft's free offering, Windows Media Encoder, although using DirectShow, only encodes to ASF/WMV and consequently proprietary Microsoft codecs. Windows Movie Maker, although based upon DirectShow and DirectShow Editing Services, limits the export of files to WMV and does not even allow import of all commonly found third-party codecs. Thus, third-party container formats and codecs are supported on Windows only if third-party software tools as well as the necessary codecs are installed on the computer. Video for Windows-based tools or QuickTime, on the contrary, have a common GUI which populates all installed codecs, allows end users to use third-party codecs, QuickTime even allowing third-party container formats. This is also probably why AVI (which was the format used by Video for Windows) continues to be used on the Windows platform inspite of obsolescence.

[edit] References

[edit] Notes

  1. ^ Microsoft (March 5, 1996). Microsoft Announces ActiveMovie. Microsoft PressPass. Retrieved on 2006-12-31.
  2. ^ Microsoft (May 29, 1996). Microsoft Internet Explorer 3.0 Beta Now Available. Microsoft PressPass. Retrieved on 2006-12-31.
  3. ^ Microsoft (March 31, 1997). Microsoft Unveils First Unified Multimedia API Strategy. Microsoft PressPass. Retrieved on 2006-12-31.
  4. ^ Microsoft (July 21, 1997). Microsoft and Progressive Networks Collaborate on Streaming Media. Microsoft PressPass. Retrieved on 2006-12-31.
  5. ^ DirectX FAQ. Retrieved on September 11, 2005.
  6. ^ While older versions of the DirectShow MPEG Layer 3 decoder can play VBR MP3s, they cannot seek accurately or perform many other functions correctly in them due to incorrect parsing of the file (possibly due to incorrect parsing of the XING header). The Windows Media Player 10 SDK and later versions of Windows Media Player do this correctly, however.
  7. ^ a b formats supported by default in DirectShow. Retrieved on September 11, 2005.
  8. ^ illiminable Directshow Filters for Ogg Vorbis, Speex, Theora and FLAC. Retrieved on March 11, 2006.
  9. ^ EU ruling will break websites, says Microsoft. Retrieved on March 20, 2006.
  10. ^ This is not entirely true, as some clever people found that the EnumChildWindows API could be called on the owner window of the IVideoWindow and then steal its WndProc messages directly.
  11. ^ Video Mixing Renderer 7 (VMR-7). Retrieved on September 11, 2005.
  12. ^ windowless mode. Retrieved on September 11, 2005.
  13. ^ Some people have noted that it "unofficially" works on Windows 2000 also: owing to a build error, some of the DirectX runtime packages for Windows 2000 accidentally included VMR-7.
  14. ^ Video Mixing Renderer 9 (VMR-9). Retrieved on September 11, 2005.
  15. ^ Enhanced Video Renderer. Retrieved on February 28, 2007.
  16. ^ EVR.dll installed by WPF/.NET 3.0 Runtime on Windows XP
  17. ^ New Age DLL Hell? Hell Yes. Retrieved on February 27, 2007.

[edit] External links