Information About

Directshow




DirectShow (sometimes abbreviated as '''DS''' or '''DShow'''), codename ''Quartz'', is a Multimedia Framework and API produced by Microsoft for Software Developer s 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 Language s, 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 . DirectShow additionally contains DirectX Plugin s for Audio Signal Processing and DirectX Video Acceleration for accelerated video playback.

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. DirectShow's most notable competition is Apple Computer 's QuickTime framework. Microsoft plans to replace DirectShow with Media Foundation in future Windows versions beginning with Windows Vista .


HISTORY

The direct predecessor of DirectShow, ActiveMovie (codenamed Quartz), was originally chartered to provide MPEG-1 file playback support for Windows. It was also intended as a future replacement for media processing frameworks like Video For Windows , which had never been designed to handle codecs that put video frames into a different order during the compression process, and the Media Control Interface , which had never been fully ported to a 32-bit environment and did not utilize COM.1

The Quartz team started with an existing project called Clockwork. Clockwork was a modular media processing framework in which semi-independent components worked together to process digital media streams, and had previously been used in several projects, including the Microsoft Interactive Television (MITV) project and another project named Tiger.2

After ActiveMovie was announced in March 1996,3 it was released in May 1996 bundled with the beta version of Internet Explorer 3.0 .4 In March 1997, Microsoft announced that ActiveMovie would become part of the DirectX 5 suite of technologies,5 and around July started referring to it as DirectShow,6 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 operating 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.7


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. For building and testing filter graphs, GraphEdit can be used. 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.

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 a graph has begun processing.


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 ,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. and Windows Media Video as well as several more mundane formats, such as plain static images.8 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 files9 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.


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.

The DirectShow Editing Services API is accessible from C++ languages including Microsoft Visual C++.
Recent developments however, have allowed it to be accessible from any other Microsoft .NET compatible language including Microsoft Visual C#® and Microsoft Visual Basic® by using a third-party code library called DirectShow Lib


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 appeared to be supported, Microsoft suggested that the stripped-down versions of the Operating System may not have supported all of those formats.10


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 s 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.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. 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.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.

DirectX 9 included yet another renderer, dubbed ''VMR-9''.13 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.14 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. EVR.dll installed by WPF/.NET 3.0 Runtime on Windows XP


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, 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."15

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. 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.


Lack of tools and codecs

DirectShow is also criticized for its lack of built-in encoding tools, and standard codecs. Although DirectShow is extensible and supports third-party formats through "filters", unlike its predecessor VCM / ACM or its competitor QuickTime , DirectShow does not allow end-users to encode files using a GUI or CLI . To encode media using DirectShow, software developers need to build filter graphs in their applications. This makes DirectShow usable only by developers and not end users for ''encoding'' media. Microsoft's Windows Media Encoder and Windows Movie Maker , use DMOs to encode only to ASF/WMV Container Format s and consequently proprietary Microsoft codecs. Video for Windows-based applications or QuickTime, on the contrary, have a GUI which populates all installed (even third-party) codecs. QuickTime even allows encoding to different container formats. This probably explains why AVI (the format used by Video for Windows) continues to be used in spite of its obsolescence.


SEE ALSO



REFERENCES

  • 16

  • 17 ( Sample Chapter )

  • Various posts from the "Microsoft.public.win32.programmer.directx.video" newsgroup



NOTES






EXTERNAL LINKS