From a9eaeebc6ab17dca6655cdd83d8318507ffad407 Mon Sep 17 00:00:00 2001 From: "perkj@webrtc.org" Date: Thu, 12 Feb 2015 12:33:10 +0000 Subject: [PATCH] Fix problem where Android VoE can not record on multiple channels. The issue was introduced in https://webrtc-codereview.appspot.com/33969004/ R8325 TEST= Build libjingle_peerconnection_android_unittest and then run "CHECKOUT_SOURCE_ROOT=`pwd` build/android/test_runner.py instrumentation --test-apk=libjingle_peerconnection_android_unittest" R=henrika@webrtc.org Review URL: https://webrtc-codereview.appspot.com/38089004 Cr-Commit-Position: refs/heads/master@{#8349} git-svn-id: http://webrtc.googlecode.com/svn/trunk@8349 4adac7df-926f-26a2-2b94-8c16560cd09d --- webrtc/modules/audio_device/android/audio_record_jni.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/webrtc/modules/audio_device/android/audio_record_jni.cc b/webrtc/modules/audio_device/android/audio_record_jni.cc index 392703b64..4946d8f12 100644 --- a/webrtc/modules/audio_device/android/audio_record_jni.cc +++ b/webrtc/modules/audio_device/android/audio_record_jni.cc @@ -171,6 +171,7 @@ int32_t AudioRecordJni::StartRecording() { ALOGE("StartRecording failed!"); return -1; } + recording_ = true; return 0; }