Regular sync.
Changes include: 1. Fix refreshkeys when handling renewal response. 2. Change ECM start detect method. 3. Fix signing key truncation. 4. Reformat C++ code. 5. Return license_id in LICENSE_CAS_READY payload. 6. Expose OEMCrypto API version in the license request. 7. Add support for newly added widevine cas ids. 8. Store content iv and encryption mode info to entitled key. 9. Upgrade ODK library to 16.4.
This commit is contained in:
@@ -7,9 +7,9 @@
|
||||
|
||||
#include <memory>
|
||||
|
||||
#if __cplusplus >= 201402L || \
|
||||
(defined __cpp_lib_make_unique && __cpp_lib_make_unique >= 201304L) || \
|
||||
(defined(_MSC_VER) && _MSC_VER >= 1900)
|
||||
#if __cplusplus >= 201402L || \
|
||||
(defined __cpp_lib_make_unique && __cpp_lib_make_unique >= 201304L) || \
|
||||
(defined(_MSC_VER) && _MSC_VER >= 1900)
|
||||
using std::make_unique;
|
||||
#else
|
||||
template <typename T, typename... Args>
|
||||
@@ -18,4 +18,4 @@ std::unique_ptr<T> make_unique(Args&&... args) {
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif //CAS_UTIL_H_
|
||||
#endif // CAS_UTIL_H_
|
||||
|
||||
Reference in New Issue
Block a user