mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
50 lines
943 B
C++
50 lines
943 B
C++
/* 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 <stdio.h>
|
|
#include <string.h>
|
|
|
|
#include "ClearKeyDecryptionManager.h"
|
|
|
|
#include "gmp-api/gmp-decryption.h"
|
|
#include "gmp-api/gmp-platform.h"
|
|
#include "mozilla/Attributes.h"
|
|
#include "mozilla/NullPtr.h"
|
|
|
|
static GMPPlatformAPI* sPlatform = nullptr;
|
|
GMPPlatformAPI*
|
|
GetPlatform()
|
|
{
|
|
return sPlatform;
|
|
}
|
|
|
|
extern "C" {
|
|
|
|
MOZ_EXPORT GMPErr
|
|
GMPInit(GMPPlatformAPI* aPlatformAPI)
|
|
{
|
|
sPlatform = aPlatformAPI;
|
|
return GMPNoErr;
|
|
}
|
|
|
|
MOZ_EXPORT GMPErr
|
|
GMPGetAPI(const char* aApiName, void* aHostAPI, void** aPluginAPI)
|
|
{
|
|
if (strcmp(aApiName, GMP_API_DECRYPTOR)) {
|
|
return GMPNotImplementedErr;
|
|
}
|
|
|
|
*aPluginAPI = new ClearKeyDecryptionManager();
|
|
|
|
return GMPNoErr;
|
|
}
|
|
|
|
MOZ_EXPORT GMPErr
|
|
GMPShutdown(void)
|
|
{
|
|
return GMPNoErr;
|
|
}
|
|
|
|
}
|