Bagikan melalui


Langkah 7: Matikan Sesi Media

Topik ini adalah langkah 7 dari tutorial Cara Memutar File Media dengan Media Foundation. Kode lengkap ditampilkan dalam topik Contoh Pemutaran Sesi Media.

Untuk mematikan Sesi Media, lakukan langkah-langkah berikut:

  1. Panggil IMFMediaSession::Close untuk menutup presentasi saat ini.
  2. Tunggu peristiwa MESessionClosed . Kejadian ini dijamin sebagai peristiwa terakhir dari Sesi Media.
  3. Panggil IMFMediaSession::Shutdown. Metode ini menyebabkan Sesi Media merilis sumber daya.
  4. Panggil IMFMediaSource::Shutdown pada sumber media saat ini.

Metode berikut mematikan Sesi Media. Ini menggunakan penanganan peristiwa (m_hCloseEvent) untuk menunggu peristiwa MESessionClosed . Lihat Langkah 5: Menangani Peristiwa Sesi Media.

//  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;
}

Sebelum aplikasi keluar, matikan Sesi Media, lalu panggil MFShutdown untuk mematikan platform 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;
}

Pemutaran Audio/Video

Cara Memutar File Media dengan Media Foundation