Sblocco di Windows Media Format SDK

[La funzionalità associata a questa pagina, DirectShow, è una funzionalità legacy. È stata sostituita da MediaPlayer, IMFMediaEngine e Audio/Video Capture in Media Foundation. Queste funzionalità sono state ottimizzate per Windows 10 e Windows 11. Microsoft consiglia vivamente che il nuovo codice usi MediaPlayer, IMFMediaEngine e Audio/Video Capture in Media Foundation invece di DirectShow, quando possibile. Microsoft suggerisce che il codice esistente che usa le API legacy venga riscritto per usare le nuove API, se possibile.

Per accedere alla versione 7 o 7.1 di Windows Media Format SDK, un'applicazione deve fornire un certificato software, detto anche chiave, in fase di esecuzione. Questa chiave è contenuta in una libreria statica denominata wmstub.lib a cui l'applicazione si collega in fase di compilazione. Una chiave individualizzata è necessaria solo per la creazione o la lettura di file protetti da DRM. È possibile creare file non DRM usando la libreria statica fornita con Windows Media Format SDK. Per informazioni dettagliate su come ottenere la chiave DRM, vedere Windows Media Format SDK. Un'applicazione DirectShow fornisce il certificato al writer ASF WM quando viene aggiunto al grafico dei filtri. L'applicazione deve essere registrata come provider di chiavi usando le interfacce COM IServiceProvider e IObjectWithSite . Usando questa tecnica, l'applicazione implementa una classe del provider di chiavi derivata da IServiceProvider. Questa classe implementa i tre metodi COM standard, AddRef, QueryInterface e Release, insieme a un metodo aggiuntivo , QueryService, che viene chiamato dalla gestione del grafo dei filtri. QueryService chiama il metodo WMCreateCertificate di Windows Media Format SDK e restituisce al gestore del grafo del filtro un puntatore al certificato creato. Se il certificato è valido, la gestione del grafo dei filtri consente al processo di compilazione del grafo di continuare.

Nota

Per compilare un'applicazione, includere Wmsdkidl.h per il prototipo per WMCreateCertificate e collegarsi alla libreria Wmstub.lib.

 

L'esempio di codice seguente illustra i passaggi di base di questo processo:

// Declare and implement a key provider class derived from IServiceProvider.

class CKeyProvider : public IServiceProvider {
public:
    // IUnknown interface
    STDMETHODIMP QueryInterface(REFIID riid, void ** ppv);
    STDMETHODIMP_(ULONG) AddRef();
    STDMETHODIMP_(ULONG) Release();

    CKeyProvider();

    // IServiceProvider
    STDMETHODIMP QueryService(REFIID siid, REFIID riid, void **ppv);
    
private:
    ULONG m_cRef;
};

CKeyProvider::CKeyProvider() : m_cRef(0)
{
}

// IUnknown methods
ULONG CKeyProvider::AddRef()
{
    return InterlockedIncrement(&m_cRef);
}

ULONG CKeyProvider::Release()
{
    ASSERT(m_cRef > 0);

    ULONG lCount = InterlockedDecrement(&m_cRef);
    if (m_cRef == 0) 
    {
        delete this;
        return (ULONG)0;
    }
    return (ULONG)lCount;
}

// We only support IUnknown and IServiceProvider.
HRESULT CKeyProvider::QueryInterface(REFIID riid, void ** ppv)
{
    if (!ppv) return E_POINTER;

    if (riid == IID_IUnknown) 
    {
        *ppv = (void *) static_cast<IUnknown *>(this);
        AddRef();
        return S_OK;
    }
    if (riid == IID_IServiceProvider) 
    {
        *ppv = (void *) static_cast<IServiceProvider *>(this);
        AddRef();
        return S_OK;
    }

    return E_NOINTERFACE;
}

STDMETHODIMP CKeyProvider::QueryService(REFIID siid, REFIID riid, void **ppv)
{
    if (!ppv) return E_POINTER;

    if (siid == __uuidof(IWMReader) && riid == IID_IUnknown) 
    {
        IUnknown *punkCert;
        HRESULT hr = WMCreateCertificate(&punkCert);
        if (SUCCEEDED(hr)) 
        {
            *ppv = (void *) punkCert;
        }
        return hr;
    }
    return E_NOINTERFACE;
}

////////////////////////////////////////////////////////////////////
//
// These examples illustrate the sequence of method calls
// in your application. Error checking is omitted for brevity.
//
///////////////////////////////////////////////////////////////////

// Create the filter graph manager, but don't add any filters.
IGraphBuilder *pGraph;
hr = CreateFilterGraph(&pGraph);

...

// Instantiate the key provider class, and AddRef it
// so that COM doesn't try to free our static object.

CKeyProvider prov;
prov.AddRef();  // Don't let COM try to free our static object.

// Give the graph an IObjectWithSite pointer for callbacks and QueryService.
IObjectWithSite* pObjectWithSite = NULL;

hr = pGraph->QueryInterface(IID_IObjectWithSite, (void**)&pObjectWithSite);
if (SUCCEEDED(hr))
{
    // Use the IObjectWithSite pointer to specify our key provider object.
    // The filter graph manager will use this pointer to call
    // QueryService to do the unlocking.
    // If the unlocking succeeds, then we can build our graph.

    pObjectWithSite->SetSite((IUnknown *) (IServiceProvider *) &prov);
    pObjectWithSite->Release();
}

// Now build the graph.

Creazione di file ASF in DirectShow