Source release 19.5.0

This commit is contained in:
Cong Lin
2025-04-02 10:27:18 -07:00
parent 4407acee62
commit f7ec4fdeff
295 changed files with 32196 additions and 21748 deletions

View File

@@ -16,7 +16,7 @@
#include "perf_test.h"
#include "test_host.h"
namespace widevine {
namespace CDM_NAMESPACE {
constexpr char kInitName[] =
"_ZN8widevine3Cdm10initializeENS0_16SecureOutputTypeEPNS0_8IStorageEPNS0_"
@@ -42,7 +42,7 @@ std::tuple<InitFuncType, CreateFuncType> LoadCdm(const char* path) {
return std::make_tuple(init, create);
}
} // namespace widevine
} // namespace CDM_NAMESPACE
namespace wvutil {
@@ -57,6 +57,6 @@ int main(int argc, char** argv) {
return 1;
}
auto funcs = widevine::LoadCdm(argv[1]);
return widevine::PerfTestMain(std::get<0>(funcs), std::get<1>(funcs));
auto funcs = CDM_NAMESPACE::LoadCdm(argv[1]);
return CDM_NAMESPACE::PerfTestMain(std::get<0>(funcs), std::get<1>(funcs));
}