Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(93)

Issue 1409323009: Add JNI interface for functions to start and stop recording AEC dumps and RTC event logs. (Closed)

Created:
5 years, 1 month ago by ivoc
Modified:
5 years ago
CC:
webrtc-reviews_webrtc.org, tterriberry_mozilla.com, jiayl2
Base URL:
https://chromium.googlesource.com/external/webrtc.git@master
Target Ref:
refs/pending/heads/master
Project:
webrtc
Visibility:
Public.

Description

Add JNI interface for functions to start and stop recording AEC dumps and RTC event logs. BUG=webrtc:4741 Committed: https://crrev.com/b2514725a9a2e09da15f77a2ab9a6446a4a616f7 Cr-Commit-Position: refs/heads/master@{#10776}

Patch Set 1 : Initial version. #

Total comments: 5

Patch Set 2 : Added compile guards and updated PeerConnectionFactory.java #

Total comments: 5

Patch Set 3 : Added java documentation and changed first letter of function names to lowercase. #

Total comments: 1

Patch Set 4 : Fixed indentation in java code. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+74 lines, -0 lines) Patch
M talk/app/webrtc/java/jni/peerconnection_jni.cc View 1 1 chunk +40 lines, -0 lines 0 comments Download
M talk/app/webrtc/java/src/org/webrtc/PeerConnectionFactory.java View 1 2 3 2 chunks +34 lines, -0 lines 0 comments Download

Messages

Total messages: 31 (8 generated)
ivoc
Hi guys, Please have a look at this small CL to provide a JNI wrapper ...
5 years, 1 month ago (2015-11-10 16:30:35 UTC) #3
terelius
Adding jiayl@ to CC. https://codereview.webrtc.org/1409323009/diff/1/talk/app/webrtc/java/jni/peerconnection_jni.cc File talk/app/webrtc/java/jni/peerconnection_jni.cc (right): https://codereview.webrtc.org/1409323009/diff/1/talk/app/webrtc/java/jni/peerconnection_jni.cc#newcode1255 talk/app/webrtc/java/jni/peerconnection_jni.cc:1255: JNIEnv* jni, jclass, jlong native_factory, ...
5 years, 1 month ago (2015-11-10 16:40:00 UTC) #4
jiayl1
1. How to pass the file size limit? 2. You also need to add the ...
5 years, 1 month ago (2015-11-10 17:00:04 UTC) #6
terelius
https://codereview.webrtc.org/1409323009/diff/1/talk/app/webrtc/java/jni/peerconnection_jni.cc File talk/app/webrtc/java/jni/peerconnection_jni.cc (right): https://codereview.webrtc.org/1409323009/diff/1/talk/app/webrtc/java/jni/peerconnection_jni.cc#newcode1255 talk/app/webrtc/java/jni/peerconnection_jni.cc:1255: JNIEnv* jni, jclass, jlong native_factory, jint file) { On ...
5 years, 1 month ago (2015-11-10 17:15:11 UTC) #7
ivoc
Thanks for the quick reviews! I added compilation guards so the JNI code is only ...
5 years, 1 month ago (2015-11-10 17:44:16 UTC) #8
jiayl1
https://codereview.webrtc.org/1409323009/diff/20001/talk/app/webrtc/java/src/org/webrtc/PeerConnectionFactory.java File talk/app/webrtc/java/src/org/webrtc/PeerConnectionFactory.java (right): https://codereview.webrtc.org/1409323009/diff/20001/talk/app/webrtc/java/src/org/webrtc/PeerConnectionFactory.java#newcode134 talk/app/webrtc/java/src/org/webrtc/PeerConnectionFactory.java:134: public boolean StartAecDump(int file_descriptor) { First letter of method ...
5 years, 1 month ago (2015-11-10 17:52:07 UTC) #9
terelius
https://codereview.webrtc.org/1409323009/diff/20001/talk/app/webrtc/java/src/org/webrtc/PeerConnectionFactory.java File talk/app/webrtc/java/src/org/webrtc/PeerConnectionFactory.java (right): https://codereview.webrtc.org/1409323009/diff/20001/talk/app/webrtc/java/src/org/webrtc/PeerConnectionFactory.java#newcode138 talk/app/webrtc/java/src/org/webrtc/PeerConnectionFactory.java:138: public void StopAecDump() { On 2015/11/10 17:52:07, jiayl1 wrote: ...
5 years, 1 month ago (2015-11-10 17:58:21 UTC) #10
jiayl1
On 2015/11/10 17:58:21, terelius wrote: > https://codereview.webrtc.org/1409323009/diff/20001/talk/app/webrtc/java/src/org/webrtc/PeerConnectionFactory.java > File talk/app/webrtc/java/src/org/webrtc/PeerConnectionFactory.java (right): > > https://codereview.webrtc.org/1409323009/diff/20001/talk/app/webrtc/java/src/org/webrtc/PeerConnectionFactory.java#newcode138 > ...
5 years, 1 month ago (2015-11-10 18:01:50 UTC) #11
terelius
On 2015/11/10 18:01:50, jiayl1 wrote: > On 2015/11/10 17:58:21, terelius wrote: > > > https://codereview.webrtc.org/1409323009/diff/20001/talk/app/webrtc/java/src/org/webrtc/PeerConnectionFactory.java ...
5 years, 1 month ago (2015-11-10 18:21:36 UTC) #12
jiayl1
On 2015/11/10 18:21:36, terelius wrote: > On 2015/11/10 18:01:50, jiayl1 wrote: > > On 2015/11/10 ...
5 years, 1 month ago (2015-11-10 18:24:21 UTC) #13
ivoc
I added documentation to the java code and changed the first letter of the functions ...
5 years, 1 month ago (2015-11-11 09:31:11 UTC) #14
jiayl1
On 2015/11/11 09:31:11, ivoc wrote: > I added documentation to the java code and changed ...
5 years, 1 month ago (2015-11-12 16:59:12 UTC) #15
ivoc
On 2015/11/12 16:59:12, jiayl1 wrote: > On 2015/11/11 09:31:11, ivoc wrote: > > I added ...
5 years, 1 month ago (2015-11-13 09:40:52 UTC) #16
jiayl1
lgtm
5 years, 1 month ago (2015-11-13 17:19:38 UTC) #17
terelius
lgtm
5 years, 1 month ago (2015-11-18 10:09:41 UTC) #18
magjed_webrtc
lgtm % nit https://codereview.webrtc.org/1409323009/diff/40001/talk/app/webrtc/java/src/org/webrtc/PeerConnectionFactory.java File talk/app/webrtc/java/src/org/webrtc/PeerConnectionFactory.java (right): https://codereview.webrtc.org/1409323009/diff/40001/talk/app/webrtc/java/src/org/webrtc/PeerConnectionFactory.java#newcode138 talk/app/webrtc/java/src/org/webrtc/PeerConnectionFactory.java:138: return nativeStartAecDump(nativeFactory, file_descriptor); nit: I think ...
5 years ago (2015-11-24 09:41:15 UTC) #19
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1409323009/60001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1409323009/60001
5 years ago (2015-11-24 10:48:29 UTC) #22
commit-bot: I haz the power
Try jobs failed on following builders: presubmit on tryserver.webrtc (JOB_FAILED, http://build.chromium.org/p/tryserver.webrtc/builders/presubmit/builds/1930)
5 years ago (2015-11-24 10:53:02 UTC) #24
ivoc
@jiayl: Could you LGTM this CL from your webrtc account as well? It is needed ...
5 years ago (2015-11-24 11:57:52 UTC) #26
jiayl2
lgtm
5 years ago (2015-11-24 16:35:31 UTC) #27
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1409323009/60001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1409323009/60001
5 years ago (2015-11-24 16:39:45 UTC) #29
commit-bot: I haz the power
Committed patchset #4 (id:60001)
5 years ago (2015-11-24 17:00:39 UTC) #30
commit-bot: I haz the power
5 years ago (2015-11-24 17:00:46 UTC) #31
Message was sent while issue was closed.
Patchset 4 (id:??) landed as
https://crrev.com/b2514725a9a2e09da15f77a2ab9a6446a4a616f7
Cr-Commit-Position: refs/heads/master@{#10776}

Powered by Google App Engine
This is Rietveld 408576698