Source release 14.1.1

This commit is contained in:
John W. Bruce
2018-07-25 10:53:13 -07:00
parent afa11a48a0
commit 6fa4e50d60
6 changed files with 11 additions and 9 deletions

View File

@@ -2,6 +2,12 @@
[TOC] [TOC]
## 14.1.1 (2018-07-25)
Bugfixes:
- A crash that could occur in CdmSession when destroying a CDM instance has
been fixed.
## 14.1.0 (2018-06-29) ## 14.1.0 (2018-06-29)
Features: Features:

View File

@@ -1,6 +1,6 @@
# Widevine CE CDM 14.1.0 # Widevine CE CDM 14.1.1
Released 2018-06-29 Released 2018-07-25
## Getting started ## Getting started

View File

@@ -1,3 +1,3 @@
// Widevine CE CDM Version // Widevine CE CDM Version
#define CDM_VERSION "14.1.0" #define CDM_VERSION "14.1.1"
#define EME_VERSION "https://www.w3.org/TR/2017/REC-encrypted-media-20170918" #define EME_VERSION "https://www.w3.org/TR/2017/REC-encrypted-media-20170918"

View File

@@ -242,10 +242,10 @@ class CdmImpl : public Cdm,
IEventListener* listener_; IEventListener* listener_;
bool policy_timer_enabled_; bool policy_timer_enabled_;
PropertySet property_set_;
FileSystem file_system_; FileSystem file_system_;
CdmEngine cdm_engine_; CdmEngine cdm_engine_;
PropertySet property_set_;
CdmAppParameterMap app_parameters_; CdmAppParameterMap app_parameters_;
struct SessionMetadata { struct SessionMetadata {

View File

@@ -103,7 +103,7 @@
}], }],
], ],
}], }],
['OS=="mac"', { ['OS=="osx"', {
'conditions': [ 'conditions': [
['asm_target_arch=="x86"', { ['asm_target_arch=="x86"', {
'sources': [ 'sources': [

View File

@@ -7,9 +7,5 @@
{ {
'xcode_settings': { 'xcode_settings': {
'VALID_ARCHS': 'i386 x86_64',
'IPHONEOS_DEPLOYMENT_TARGET': '',
'TARGETED_DEVICE_FAMILY': '',
'SDKROOT': '',
}, },
} }