// Copyright (c) 2010-2011 SharpDX - Alexandre Mutel // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. namespace SharpDX.MediaFoundation { public static partial class MediaManager { private static bool isStartup; /// ///

Applies to: desktop apps | Metro style apps

Initializes Microsoft Media Foundation.

///
/// If true, do not initialize the sockets library, else full initialization. Default is false /// ms702238 /// HRESULT MFStartup([In] unsigned int Version,[In] unsigned int dwFlags) /// MFStartup /// ///

An application must call this function before using Media Foundation. Before your application quits, call once for every previous call to .

Do not call or from work queue threads. For more information about work queues, see Work Queues.

This function is available on the following platforms if the Windows Media Format 11 SDK redistributable components are installed:

///
public static void Startup(bool useLightVersion = false) { if (isStartup) return; MediaFactory.Startup(MediaFactory.Version, useLightVersion ? 1 : 0); isStartup = true; } /// ///

Applies to: desktop apps | Metro style apps

Shuts down the Microsoft Media Foundation platform. Call this function once for every call to . Do not call this function from work queue threads.

///
///

If this function succeeds, it returns . Otherwise, it returns an error code.

/// ///

This function is available on the following platforms if the Windows Media Format 11 SDK redistributable components are installed:

///
/// ms694273 /// HRESULT MFShutdown() /// MFShutdown public static void Shutdown() { if (isStartup) { MediaFactory.Shutdown(); isStartup = false; } } } }