Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(615)

Unified Diff: webrtc/modules/audio_device/android/audio_track_jni.cc

Issue 1344563002: Improving support for Android Audio Effects in WebRTC (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Improved comments Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/audio_device/android/audio_track_jni.cc
diff --git a/webrtc/modules/audio_device/android/audio_track_jni.cc b/webrtc/modules/audio_device/android/audio_track_jni.cc
index 36c2c14d6078145ff52b95114864154d1bb60c4b..297916f824553845e087756711450a1b9fd5c3b6 100644
--- a/webrtc/modules/audio_device/android/audio_track_jni.cc
+++ b/webrtc/modules/audio_device/android/audio_track_jni.cc
@@ -30,13 +30,13 @@ namespace webrtc {
AudioTrackJni::JavaAudioTrack::JavaAudioTrack(
NativeRegistration* native_reg, rtc::scoped_ptr<GlobalRef> audio_track)
: audio_track_(audio_track.Pass()),
- init_playout_(native_reg->GetMethodId("InitPlayout", "(II)V")),
- start_playout_(native_reg->GetMethodId("StartPlayout", "()Z")),
- stop_playout_(native_reg->GetMethodId("StopPlayout", "()Z")),
- set_stream_volume_(native_reg->GetMethodId("SetStreamVolume", "(I)Z")),
+ init_playout_(native_reg->GetMethodId("initPlayout", "(II)V")),
+ start_playout_(native_reg->GetMethodId("startPlayout", "()Z")),
+ stop_playout_(native_reg->GetMethodId("stopPlayout", "()Z")),
+ set_stream_volume_(native_reg->GetMethodId("setStreamVolume", "(I)Z")),
get_stream_max_volume_(native_reg->GetMethodId(
- "GetStreamMaxVolume", "()I")),
- get_stream_volume_(native_reg->GetMethodId("GetStreamVolume", "()I")) {
+ "getStreamMaxVolume", "()I")),
+ get_stream_volume_(native_reg->GetMethodId("getStreamVolume", "()I")) {
}
AudioTrackJni::JavaAudioTrack::~JavaAudioTrack() {}

Powered by Google App Engine
This is Rietveld 408576698