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

Issue 2522493002: Now run EndToEndTest with the WebRTC-NewVideoJitterBuffer experiment. (Closed)

Created:
4 years, 1 month ago by philipel
Modified:
4 years ago
CC:
webrtc-reviews_webrtc.org, video-team_agora.io, yujie_mao (webrtc), zhengzhonghou_agora.io, tterriberry_mozilla.com, mflodman
Target Ref:
refs/pending/heads/master
Project:
webrtc
Visibility:
Public.

Description

Now run EndToEndTest with the WebRTC-NewVideoJitterBuffer experiment. In this CL: - EndToEndTests is now parameterized. - Added VP8 non-rotated unittest. - CanReceiveUlpfec/CanReceiveFlexFec now use multisets for timestamps. - pre_decode_image_callback_ is now called before decoding a frame with the new video jitter buffer. - Set video rotation when FrameObjects are created. - Calculate KeyFramesReceivedInPermille in new video jitter buffer. BUG=webrtc:5514 Committed: https://crrev.com/266f0a44eb27e248fd8bde0115faf672447869b4 Cr-Commit-Position: refs/heads/master@{#15274}

Patch Set 1 #

Total comments: 23

Patch Set 2 : Feedback fixes. #

Patch Set 3 : Threading fix. #

Total comments: 2

Patch Set 4 : Feedback fix. #

Total comments: 6

Patch Set 5 : Feedback fixes. #

Patch Set 6 : Rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+226 lines, -107 lines) Patch
M webrtc/modules/video_coding/frame_buffer2.h View 1 2 3 4 3 chunks +6 lines, -0 lines 0 comments Download
M webrtc/modules/video_coding/frame_buffer2.cc View 1 4 chunks +23 lines, -1 line 0 comments Download
M webrtc/modules/video_coding/frame_object.cc View 1 2 chunks +45 lines, -33 lines 0 comments Download
M webrtc/modules/video_coding/rtp_frame_reference_finder.cc View 1 2 chunks +5 lines, -1 line 0 comments Download
M webrtc/modules/video_coding/rtp_frame_reference_finder_unittest.cc View 1 10 chunks +33 lines, -3 lines 0 comments Download
M webrtc/modules/video_coding/video_receiver.cc View 1 chunk +9 lines, -0 lines 0 comments Download
M webrtc/video/end_to_end_tests.cc View 1 2 3 4 5 41 chunks +105 lines, -69 lines 0 comments Download

Messages

Total messages: 57 (32 generated)
philipel
https://codereview.webrtc.org/2522493002/diff/1/webrtc/modules/video_coding/frame_object.cc File webrtc/modules/video_coding/frame_object.cc (right): https://codereview.webrtc.org/2522493002/diff/1/webrtc/modules/video_coding/frame_object.cc#newcode70 webrtc/modules/video_coding/frame_object.cc:70: VCMPacket* last_packet = packet_buffer_->GetPacket(last_seq_num); Apparently the video rotation is ...
4 years, 1 month ago (2016-11-21 15:15:21 UTC) #2
philipel
4 years, 1 month ago (2016-11-21 15:28:06 UTC) #8
brandtr
https://codereview.webrtc.org/2522493002/diff/1/webrtc/modules/video_coding/frame_buffer2.cc File webrtc/modules/video_coding/frame_buffer2.cc (right): https://codereview.webrtc.org/2522493002/diff/1/webrtc/modules/video_coding/frame_buffer2.cc#newcode370 webrtc/modules/video_coding/frame_buffer2.cc:370: int key_frames_permille = (static_cast<float>(num_key_frames_) / Are you missing a ...
4 years, 1 month ago (2016-11-21 16:46:46 UTC) #9
sprang_webrtc
https://codereview.webrtc.org/2522493002/diff/1/webrtc/modules/video_coding/frame_buffer2.h File webrtc/modules/video_coding/frame_buffer2.h (right): https://codereview.webrtc.org/2522493002/diff/1/webrtc/modules/video_coding/frame_buffer2.h#newcode44 webrtc/modules/video_coding/frame_buffer2.h:44: ~FrameBuffer(); I'd prefer a virtual dtor https://codereview.webrtc.org/2522493002/diff/1/webrtc/modules/video_coding/frame_object.cc File webrtc/modules/video_coding/frame_object.cc ...
4 years, 1 month ago (2016-11-21 16:49:14 UTC) #10
philipel
https://codereview.webrtc.org/2522493002/diff/1/webrtc/modules/video_coding/frame_buffer2.cc File webrtc/modules/video_coding/frame_buffer2.cc (right): https://codereview.webrtc.org/2522493002/diff/1/webrtc/modules/video_coding/frame_buffer2.cc#newcode370 webrtc/modules/video_coding/frame_buffer2.cc:370: int key_frames_permille = (static_cast<float>(num_key_frames_) / On 2016/11/21 16:46:45, brandtr ...
4 years, 1 month ago (2016-11-22 14:56:23 UTC) #11
brandtr
lgtm
4 years ago (2016-11-23 10:29:58 UTC) #12
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.webrtc.org/2522493002/20001
4 years ago (2016-11-23 10:35:32 UTC) #14
brandtr
https://codereview.webrtc.org/2522493002/diff/40001/webrtc/video/end_to_end_tests.cc File webrtc/video/end_to_end_tests.cc (right): https://codereview.webrtc.org/2522493002/diff/40001/webrtc/video/end_to_end_tests.cc#newcode608 webrtc/video/end_to_end_tests.cc:608: protected_timestamps_.erase(header.timestamp); This call will remove all protected timestamps with ...
4 years ago (2016-11-24 13:03:57 UTC) #24
philipel
https://codereview.webrtc.org/2522493002/diff/40001/webrtc/video/end_to_end_tests.cc File webrtc/video/end_to_end_tests.cc (right): https://codereview.webrtc.org/2522493002/diff/40001/webrtc/video/end_to_end_tests.cc#newcode608 webrtc/video/end_to_end_tests.cc:608: protected_timestamps_.erase(header.timestamp); On 2016/11/24 13:03:57, brandtr wrote: > This call ...
4 years ago (2016-11-24 13:58:25 UTC) #25
philipel
Erik, PTAL
4 years ago (2016-11-25 11:47:05 UTC) #30
philipel
ping
4 years ago (2016-11-28 11:37:52 UTC) #31
stefan-webrtc
Please update the description and include what fixes you had to make, e.g., - Fix ...
4 years ago (2016-11-28 13:08:52 UTC) #32
sprang_webrtc
https://codereview.webrtc.org/2522493002/diff/1/webrtc/modules/video_coding/frame_buffer2.h File webrtc/modules/video_coding/frame_buffer2.h (right): https://codereview.webrtc.org/2522493002/diff/1/webrtc/modules/video_coding/frame_buffer2.h#newcode44 webrtc/modules/video_coding/frame_buffer2.h:44: ~FrameBuffer(); On 2016/11/22 14:56:23, philipel wrote: > On 2016/11/21 ...
4 years ago (2016-11-28 13:40:44 UTC) #34
philipel
https://codereview.webrtc.org/2522493002/diff/60001/webrtc/modules/video_coding/rtp_frame_reference_finder.cc File webrtc/modules/video_coding/rtp_frame_reference_finder.cc (right): https://codereview.webrtc.org/2522493002/diff/60001/webrtc/modules/video_coding/rtp_frame_reference_finder.cc#newcode54 webrtc/modules/video_coding/rtp_frame_reference_finder.cc:54: // Since the EndToEndTests use kVicdeoCodecUnknow we treat it ...
4 years ago (2016-11-28 14:21:21 UTC) #35
stefan-webrtc
lgtm
4 years ago (2016-11-28 15:22:00 UTC) #36
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.webrtc.org/2522493002/80001
4 years ago (2016-11-28 15:24:07 UTC) #39
commit-bot: I haz the power
Try jobs failed on following builders: ios32_sim_dbg on master.tryserver.webrtc (JOB_FAILED, http://build.chromium.org/p/tryserver.webrtc/builders/ios32_sim_dbg/builds/12844) ios64_sim_dbg on master.tryserver.webrtc (JOB_FAILED, ...
4 years ago (2016-11-28 15:25:15 UTC) #41
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.webrtc.org/2522493002/100001
4 years ago (2016-11-28 15:34:05 UTC) #44
commit-bot: I haz the power
Try jobs failed on following builders: mac_asan on master.tryserver.webrtc (JOB_FAILED, http://build.chromium.org/p/tryserver.webrtc/builders/mac_asan/builds/19758)
4 years ago (2016-11-28 15:46:14 UTC) #46
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.webrtc.org/2522493002/100001
4 years ago (2016-11-28 16:38:51 UTC) #48
commit-bot: I haz the power
Committed patchset #6 (id:100001)
4 years ago (2016-11-28 16:49:12 UTC) #51
commit-bot: I haz the power
Patchset 6 (id:??) landed as https://crrev.com/266f0a44eb27e248fd8bde0115faf672447869b4 Cr-Commit-Position: refs/heads/master@{#15274}
4 years ago (2016-11-28 16:49:22 UTC) #53
hta-webrtc
Commenting on a closed CL: Note that this experiment doubles the runtime of the already ...
4 years ago (2016-11-29 08:23:10 UTC) #55
stefan-webrtc
On 2016/11/29 08:23:10, hta-webrtc wrote: > Commenting on a closed CL: > > Note that ...
4 years ago (2016-11-29 09:14:06 UTC) #56
philipel
4 years ago (2016-11-29 10:12:58 UTC) #57
Message was sent while issue was closed.
On 2016/11/29 09:14:06, stefan-webrtc (holmer) wrote:
> On 2016/11/29 08:23:10, hta-webrtc wrote:
> > Commenting on a closed CL:
> > 
> > Note that this experiment doubles the runtime of the already slow EndToEnd
> test
> > suite.
> > 
> > Is there a bug filed to remove the looping once the experiment is finished?
> 
> Yes, we should track it in a bug so we remember it. Could you file one Philip?
> 
> Fortunately the runtime doesn't seem too bad. On my machine all tests run
within
> ~20 seconds with and without this patch with gtest-parallel. Of course,
without
> it's 2x slower though... But I think most of our bots run tests in parallel?

Filed a bug for this task:
https://bugs.chromium.org/p/webrtc/issues/detail?id=6790

Powered by Google App Engine
This is Rietveld 408576698