diff --git a/audio/tangorpro/config/audio_platform_configuration.xml b/audio/tangorpro/config/audio_platform_configuration.xml index 0280030..3ac3392 100644 --- a/audio/tangorpro/config/audio_platform_configuration.xml +++ b/audio/tangorpro/config/audio_platform_configuration.xml @@ -292,7 +292,7 @@ - + diff --git a/audio/tangorpro/config/mixer_paths.xml b/audio/tangorpro/config/mixer_paths.xml index 504eecc..70d6eaf 100644 --- a/audio/tangorpro/config/mixer_paths.xml +++ b/audio/tangorpro/config/mixer_paths.xml @@ -109,13 +109,13 @@ - + - + - + - + @@ -923,6 +923,20 @@ + + + + + + + + + + + + + + diff --git a/cast_auth/mediadrm/DrmPlugin.cpp b/cast_auth/mediadrm/DrmPlugin.cpp index 6176c09..b6b896e 100644 --- a/cast_auth/mediadrm/DrmPlugin.cpp +++ b/cast_auth/mediadrm/DrmPlugin.cpp @@ -116,6 +116,7 @@ std::vector readBinaryFile(const std::string& file_path) { *_aidl_return = std::vector(); void* cast_auth_handle = ::dlopen("libcast_auth.so", RTLD_LAZY); if (!cast_auth_handle) { + ALOGE("Fail to get TA for signing"); return toNdkScopedAStatus(status); } typedef bool (*func_type)(const std::vector&, @@ -123,6 +124,7 @@ std::vector readBinaryFile(const std::string& file_path) { func_type sign_hash_func = reinterpret_cast(::dlsym(cast_auth_handle, "SignHash")); if (!sign_hash_func) { + ALOGE("Fail to apply signing method"); dlclose(cast_auth_handle); return toNdkScopedAStatus(status); } @@ -133,6 +135,7 @@ std::vector readBinaryFile(const std::string& file_path) { *_aidl_return = signature; status = Status::OK; } + ALOGE("Get empty result from TA"); return toNdkScopedAStatus(status); }