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:
@ -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 |
|
||||
|
||||
Reference in New Issue
Block a user