summaryrefslogtreecommitdiffstats
path: root/media/wmf-clearkey/WMFPMPServer.cpp
blob: 86036cc0c008c14887960eb5cd459536b8ffaa2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

#include "WMFPMPServer.h"

#include <mfapi.h>
#include <mferror.h>

#include "WMFClearKeyUtils.h"

namespace mozilla {

using Microsoft::WRL::ComPtr;
using Microsoft::WRL::MakeAndInitialize;

HRESULT WMFPMPServer::RuntimeClassInitialize(
    ABI::Windows::Foundation::Collections::IPropertySet* aPropertyPmp) {
  ENTRY_LOG();
  mPropertyPmp = aPropertyPmp;
  RETURN_IF_FAILED(MFCreatePMPMediaSession(MFPMPSESSION_IN_PROCESS, nullptr,
                                           &mMediaSession, nullptr));
  RETURN_IF_FAILED(MFGetService(mMediaSession.Get(), MF_PMP_SERVER_CONTEXT,
                                IID_PPV_ARGS(&mPmpServer)));
  RETURN_IF_FAILED(MFGetService(mMediaSession.Get(), MF_PMP_SERVICE,
                                IID_PPV_ARGS(&mPmpHost)));
  return S_OK;
}

STDMETHODIMP WMFPMPServer::GetIids(ULONG* aIidCount, IID** aIids) {
  NOT_IMPLEMENTED();
  return E_NOTIMPL;
}

STDMETHODIMP WMFPMPServer::GetRuntimeClassName(
    _COM_Outptr_ HSTRING* aClassName) {
  NOT_IMPLEMENTED();
  return E_NOTIMPL;
}

STDMETHODIMP WMFPMPServer::GetTrustLevel(TrustLevel* aTrustLevel) {
  NOT_IMPLEMENTED();
  return E_NOTIMPL;
}
STDMETHODIMP WMFPMPServer::get_Properties(
    ABI::Windows::Foundation::Collections::IPropertySet** aPpProperties) {
  ENTRY_LOG();
  RETURN_IF_FAILED(mPropertyPmp.CopyTo(aPpProperties));
  return S_OK;
}

STDMETHODIMP WMFPMPServer::GetService(REFGUID aGuidService, REFIID aRiid,
                                      LPVOID* aObject) {
  ENTRY_LOG();
  if (!aObject) {
    return E_POINTER;
  }
  if (aGuidService == MF_PMP_SERVER_CONTEXT) {
    RETURN_IF_FAILED(mPmpServer.CopyTo(aRiid, aObject));
  } else if (aGuidService == MF_PMP_SERVICE && aRiid == IID_IMFPMPHost) {
    RETURN_IF_FAILED(mPmpHost.CopyTo(aRiid, aObject));
  } else {
    RETURN_IF_FAILED(MF_E_UNSUPPORTED_SERVICE);
  }
  return S_OK;
}

}  // namespace mozilla