Index: talk/app/webrtc/java/jni/peerconnection_jni.cc |
diff --git a/talk/app/webrtc/java/jni/peerconnection_jni.cc b/talk/app/webrtc/java/jni/peerconnection_jni.cc |
index c31859def809318b3bf61e400504dc112bce1478..52b67495ebc111a95e2fb4c9f3055f566ed683b5 100644 |
--- a/talk/app/webrtc/java/jni/peerconnection_jni.cc |
+++ b/talk/app/webrtc/java/jni/peerconnection_jni.cc |
@@ -1280,11 +1280,12 @@ JOW(jlong, PeerConnectionFactory_nativeCreateAudioTrack)( |
} |
JOW(jboolean, PeerConnectionFactory_nativeStartAecDump)( |
- JNIEnv* jni, jclass, jlong native_factory, jint file) { |
+ JNIEnv* jni, jclass, jlong native_factory, jint file, |
+ jint filesize_limit_bytes) { |
#if defined(ANDROID) |
rtc::scoped_refptr<PeerConnectionFactoryInterface> factory( |
factoryFromJava(native_factory)); |
- return factory->StartAecDump(file); |
+ return factory->StartAecDump(file, filesize_limit_bytes); |
#else |
return false; |
#endif |