NOTE: the new code is disabled by default in the WebRtcAudioManager to ensure that OpenSL ES is not accidentally activated in existing clients. There are still some unresolved issues to sort out before it can be utilized. Enables possibility to use OpenSL ES based audio in both directions for WebRTC. All unit tests and demo clients have been tested with the new implementation but the new support is behind a flag (see above). More testing is needed before it can be used in the field and additional support for hardware effects is still missing. BUG=webrtc:5925 R=tommi@webrtc.org Review URL: https://codereview.webrtc.org/2119633004 . Cr-Commit-Position: refs/heads/master@{#14290}
60 lines
1.8 KiB
C++
60 lines
1.8 KiB
C++
/*
|
|
* Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#include "webrtc/modules/audio_device/android/build_info.h"
|
|
|
|
#include "webrtc/modules/utility/include/helpers_android.h"
|
|
|
|
namespace webrtc {
|
|
|
|
BuildInfo::BuildInfo()
|
|
: j_environment_(JVM::GetInstance()->environment()),
|
|
j_build_info_(
|
|
JVM::GetInstance()->GetClass("org/webrtc/voiceengine/BuildInfo")) {}
|
|
|
|
std::string BuildInfo::GetStringFromJava(const char* name) {
|
|
jmethodID id = j_build_info_.GetStaticMethodId(name, "()Ljava/lang/String;");
|
|
jstring j_string = static_cast<jstring>(
|
|
j_build_info_.CallStaticObjectMethod(id));
|
|
return j_environment_->JavaToStdString(j_string);
|
|
}
|
|
|
|
std::string BuildInfo::GetDeviceModel() {
|
|
return GetStringFromJava("getDeviceModel");
|
|
}
|
|
|
|
std::string BuildInfo::GetBrand() {
|
|
return GetStringFromJava("getBrand");
|
|
}
|
|
|
|
std::string BuildInfo::GetDeviceManufacturer() {
|
|
return GetStringFromJava("getDeviceManufacturer");
|
|
}
|
|
|
|
std::string BuildInfo::GetAndroidBuildId() {
|
|
return GetStringFromJava("getAndroidBuildId");
|
|
}
|
|
|
|
std::string BuildInfo::GetBuildType() {
|
|
return GetStringFromJava("getBuildType");
|
|
}
|
|
|
|
std::string BuildInfo::GetBuildRelease() {
|
|
return GetStringFromJava("getBuildRelease");
|
|
}
|
|
|
|
SdkCode BuildInfo::GetSdkVersion() {
|
|
jmethodID id = j_build_info_.GetStaticMethodId("getSdkVersion", "()I");
|
|
jint j_version = j_build_info_.CallStaticIntMethod(id);
|
|
return static_cast<SdkCode>(j_version);
|
|
}
|
|
|
|
} // namespace webrtc
|