mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-27 02:47:31 +09:00
[EME] Update content_decryption_module.h to more recent revision
Adds support for cdm::ContentDecryptionModule_9 and cdm::Host_9 definitions, HDCP definitions, and 10 and 12 bit image format definitions.
This commit is contained in:
parent
a8d231e0a9
commit
58116c6950
4 changed files with 193 additions and 103 deletions
|
|
@ -0,0 +1,22 @@
|
|||
// Copyright 2017 The Chromium Authors. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style license that can be
|
||||
// found in the LICENSE file.
|
||||
|
||||
#ifndef CDM_CONTENT_DECRYPTION_MODULE_EXPORT_H_
|
||||
#define CDM_CONTENT_DECRYPTION_MODULE_EXPORT_H_
|
||||
|
||||
// Define CDM_API so that functionality implemented by the CDM module
|
||||
// can be exported to consumers.
|
||||
#if defined(_WIN32)
|
||||
|
||||
#if defined(CDM_IMPLEMENTATION)
|
||||
#define CDM_API __declspec(dllexport)
|
||||
#else
|
||||
#define CDM_API __declspec(dllimport)
|
||||
#endif // defined(CDM_IMPLEMENTATION)
|
||||
|
||||
#else // defined(_WIN32)
|
||||
#define CDM_API __attribute__((visibility("default")))
|
||||
#endif // defined(_WIN32)
|
||||
|
||||
#endif // CDM_CONTENT_DECRYPTION_MODULE_EXPORT_H_
|
||||
Loading…
Add table
Add a link
Reference in a new issue