From 81d99b304969021cb1799ed6bfc19f2792959a53 Mon Sep 17 00:00:00 2001 From: peah Date: Tue, 14 Jun 2016 01:34:46 -0700 Subject: [PATCH] A missing path separator caused aecdump recordings not to be created in apprtc on Android. The path separator was missing when the path for the aecdump file was created. This CL adds that path separator. Note that the change of the formatting of the rest of the line was caused by "git cl format" (the clang automatic formatting). BUG=webrtc:5991 Review-Url: https://codereview.webrtc.org/2053263002 Cr-Commit-Position: refs/heads/master@{#13121} --- .../androidapp/src/org/appspot/apprtc/PeerConnectionClient.java | 1 + 1 file changed, 1 insertion(+) diff --git a/webrtc/examples/androidapp/src/org/appspot/apprtc/PeerConnectionClient.java b/webrtc/examples/androidapp/src/org/appspot/apprtc/PeerConnectionClient.java index 8b4f17c613..532c016612 100644 --- a/webrtc/examples/androidapp/src/org/appspot/apprtc/PeerConnectionClient.java +++ b/webrtc/examples/androidapp/src/org/appspot/apprtc/PeerConnectionClient.java @@ -518,6 +518,7 @@ public class PeerConnectionClient { try { aecDumpFileDescriptor = ParcelFileDescriptor.open( new File(Environment.getExternalStorageDirectory().getPath() + + File.separator + "Download/audio.aecdump"), ParcelFileDescriptor.MODE_READ_WRITE | ParcelFileDescriptor.MODE_CREATE |