30 lines
924 B
C
30 lines
924 B
C
// Copyright 2015 Google LLC. All Rights Reserved. This file and proprietary
|
|
// source code may only be used and distributed under the Widevine License
|
|
// Agreement.
|
|
|
|
#define CDM_VERSION_STR_(x, y, z, w) #x "." #y "." #z w
|
|
#define CDM_VERSION_STR(x, y, z, w) CDM_VERSION_STR_(x, y, z, w)
|
|
|
|
// Widevine CE CDM Version
|
|
#ifndef CDM_VERSION_MAJOR
|
|
# define CDM_VERSION_MAJOR 19
|
|
#endif
|
|
#ifndef CDM_VERSION_MINOR
|
|
# define CDM_VERSION_MINOR 6
|
|
#endif
|
|
#ifndef CDM_VERSION_PATCH
|
|
# define CDM_VERSION_PATCH 0
|
|
#endif
|
|
#ifndef CDM_VERSION_TAG
|
|
# define CDM_VERSION_TAG ""
|
|
#endif
|
|
#define CDM_VERSION \
|
|
CDM_VERSION_STR(CDM_VERSION_MAJOR, CDM_VERSION_MINOR, CDM_VERSION_PATCH, \
|
|
CDM_VERSION_TAG)
|
|
|
|
#ifndef CDM_NAMESPACE
|
|
# define CDM_NAMESPACE widevine
|
|
#endif // defined(CDM_NAMESPACE)
|
|
|
|
#define EME_VERSION "https://www.w3.org/TR/2017/REC-encrypted-media-20170918"
|