步骤 7:关闭媒体会话

本主题是教程 如何使用 Media Foundation 播放媒体文件的步骤 7。 完整的代码显示在主题 媒体会话播放示例中。

若要关闭 媒体会话,请执行以下步骤:

  1. 调用 IMFMediaSession::Close 以关闭当前演示文稿。
  2. 等待 MESessionClosed 事件。 此事件保证是媒体会话的最后一个事件。
  3. 调用 IMFMediaSession::Shutdown。 此方法会导致媒体会话释放资源。
  4. 在当前媒体源上调用 IMFMediaSource::Shutdown

以下方法关闭媒体会话。 它使用事件句柄 (m_hCloseEvent) 等待 MESessionClosed 事件。 请参阅 步骤 5:处理媒体会话事件

//  Close the media session. 
HRESULT CPlayer::CloseSession()
{
    //  The IMFMediaSession::Close method is asynchronous, but the 
    //  CPlayer::CloseSession method waits on the MESessionClosed event.
    //  
    //  MESessionClosed is guaranteed to be the last event that the 
    //  media session fires.

    HRESULT hr = S_OK;

    SafeRelease(&m_pVideoDisplay);

    // First close the media session.
    if (m_pSession)
    {
        DWORD dwWaitResult = 0;

        m_state = Closing;
           
        hr = m_pSession->Close();
        // Wait for the close operation to complete
        if (SUCCEEDED(hr))
        {
            dwWaitResult = WaitForSingleObject(m_hCloseEvent, 5000);
            if (dwWaitResult == WAIT_TIMEOUT)
            {
                assert(FALSE);
            }
            // Now there will be no more events from this session.
        }
    }

    // Complete shutdown operations.
    if (SUCCEEDED(hr))
    {
        // Shut down the media source. (Synchronous operation, no events.)
        if (m_pSource)
        {
            (void)m_pSource->Shutdown();
        }
        // Shut down the media session. (Synchronous operation, no events.)
        if (m_pSession)
        {
            (void)m_pSession->Shutdown();
        }
    }

    SafeRelease(&m_pSource);
    SafeRelease(&m_pSession);
    m_state = Closed;
    return hr;
}

在应用程序退出之前,请关闭媒体会话,然后调用 MFShutdown 关闭 Microsoft Media Foundation 平台。

//  Release all resources held by this object.
HRESULT CPlayer::Shutdown()
{
    // Close the session
    HRESULT hr = CloseSession();

    // Shutdown the Media Foundation platform
    MFShutdown();

    if (m_hCloseEvent)
    {
        CloseHandle(m_hCloseEvent);
        m_hCloseEvent = NULL;
    }

    return hr;
}

音频/视频播放

如何使用 Media Foundation 播放媒体文件