This import syncs to the widevine git repostiory change commit ab3e1e43642cf36900f55169597a33f222709fdb Change-Id: I3a6f1e2969e5fe7ed1ca12f90b0eb0a3b7899835
23 lines
638 B
C++
23 lines
638 B
C++
// Copyright 2013 Google Inc. All Rights Reserved.
|
|
|
|
#ifndef CDM_BASE_PROPERTIES_CONFIGURATION_H_
|
|
#define CDM_BASE_PROPERTIES_CONFIGURATION_H_
|
|
|
|
#include "wv_cdm_constants.h"
|
|
#include "properties.h"
|
|
|
|
namespace wvcdm {
|
|
|
|
// set property values below
|
|
static CdmBooleanProperties kCdmBooleanProperties[] = {
|
|
{ kPropertyKeyBeginLicenseUsageWhenReceived, false },
|
|
{ kPropertyKeyRequireExplicitRenewRequest, false },
|
|
{ kPropertyKeyOemCryptoUseSecureBuffers, true },
|
|
{ kPropertyKeyOemCryptoUseFifo, false },
|
|
{ kPropertyKeyOemCryptoUseUserSpaceBuffers, false },
|
|
};
|
|
|
|
} // namespace wvcdm
|
|
|
|
#endif // CDM_BASE_WV_PROPERTIES_CONFIGURATION_H_
|