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}
This commit is contained in:
peah
2016-06-14 01:34:46 -07:00
committed by Commit bot
parent 54f5a26421
commit 81d99b3049

View File

@ -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 |