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

Unified Diff: webrtc/modules/audio_device/android/audio_manager.h

Issue 2499613002: Adds stereo support for Java-based input and output audio on Android (Closed)
Patch Set: Feedback from magjed@ Created 4 years, 1 month 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_manager.h
diff --git a/webrtc/modules/audio_device/android/audio_manager.h b/webrtc/modules/audio_device/android/audio_manager.h
index 341d426e418bc99d7ed4c7297f1759f3d036c14a..6540cc505d6a33232dc71283cd3acdc255e916b1 100644
--- a/webrtc/modules/audio_device/android/audio_manager.h
+++ b/webrtc/modules/audio_device/android/audio_manager.h
@@ -120,7 +120,8 @@ class AudioManager {
static void JNICALL CacheAudioParameters(JNIEnv* env,
jobject obj,
jint sample_rate,
- jint channels,
+ jint output_channels,
+ jint input_channels,
jboolean hardware_aec,
jboolean hardware_agc,
jboolean hardware_ns,
@@ -132,7 +133,8 @@ class AudioManager {
jlong native_audio_manager);
void OnCacheAudioParameters(JNIEnv* env,
jint sample_rate,
- jint channels,
+ jint output_channels,
+ jint input_channels,
jboolean hardware_aec,
jboolean hardware_agc,
jboolean hardware_ns,
« no previous file with comments | « webrtc/modules/audio_device/android/audio_common.h ('k') | webrtc/modules/audio_device/android/audio_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698