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

Issue 2853503002: Dont request keyframes if the stream is inactive or if we are currently receiving a keyframe. (Closed)

Created:
3 years, 7 months ago by philipel
Modified:
3 years, 7 months ago
Reviewers:
holmer, stefan-webrtc, ilnik
CC:
webrtc-reviews_webrtc.org, video-team_agora.io, yujie_mao (webrtc), zhengzhonghou_agora.io, stefan-webrtc, tterriberry_mozilla.com, mflodman
Target Ref:
refs/heads/master
Project:
webrtc
Visibility:
Public.

Description

Dont request keyframes if the stream is inactive or if we are currently receiving a keyframe. BUG=webrtc:7520 Review-Url: https://codereview.webrtc.org/2853503002 Cr-Commit-Position: refs/heads/master@{#18199} Committed: https://chromium.googlesource.com/external/webrtc/+/3184f8e3293e8b1e4afc314e7e7ba2a24060a5df

Patch Set 1 #

Total comments: 4

Patch Set 2 : Timestamp fix #

Patch Set 3 : Added EndToEndTest. #

Total comments: 5

Patch Set 4 : Feedback #

Patch Set 5 : Rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+136 lines, -5 lines) Patch
M webrtc/modules/video_coding/packet_buffer.h View 2 chunks +8 lines, -0 lines 0 comments Download
M webrtc/modules/video_coding/packet_buffer.cc View 1 2 3 4 3 chunks +18 lines, -0 lines 0 comments Download
M webrtc/modules/video_coding/video_packet_buffer_unittest.cc View 1 2 3 4 3 chunks +38 lines, -2 lines 0 comments Download
M webrtc/video/end_to_end_tests.cc View 1 2 3 1 chunk +39 lines, -0 lines 0 comments Download
M webrtc/video/rtp_stream_receiver.h View 1 2 3 1 chunk +3 lines, -0 lines 0 comments Download
M webrtc/video/rtp_stream_receiver.cc View 1 2 3 1 chunk +8 lines, -0 lines 0 comments Download
M webrtc/video/video_receive_stream.cc View 1 2 3 1 chunk +22 lines, -3 lines 0 comments Download

Messages

Total messages: 29 (13 generated)
philipel
https://codereview.webrtc.org/2853503002/diff/1/webrtc/modules/video_coding/video_packet_buffer_unittest.cc File webrtc/modules/video_coding/video_packet_buffer_unittest.cc (right): https://codereview.webrtc.org/2853503002/diff/1/webrtc/modules/video_coding/video_packet_buffer_unittest.cc#newcode62 webrtc/modules/video_coding/video_packet_buffer_unittest.cc:62: keyframe == kKeyFrame ? kVideoFrameKey : kVideoFrameDelta; The PacketBuffer ...
3 years, 7 months ago (2017-04-28 12:11:29 UTC) #2
ilnik
https://codereview.webrtc.org/2853503002/diff/1/webrtc/video/video_receive_stream.cc File webrtc/video/video_receive_stream.cc (right): https://codereview.webrtc.org/2853503002/diff/1/webrtc/video/video_receive_stream.cc#newcode502 webrtc/video/video_receive_stream.cc:502: if (stream_is_active && !receiving_keyframe) { On 2017/04/28 12:11:29, philipel ...
3 years, 7 months ago (2017-04-28 12:40:56 UTC) #3
ilnik
On 2017/04/28 12:40:56, ilnik wrote: > https://codereview.webrtc.org/2853503002/diff/1/webrtc/video/video_receive_stream.cc > File webrtc/video/video_receive_stream.cc (right): > > https://codereview.webrtc.org/2853503002/diff/1/webrtc/video/video_receive_stream.cc#newcode502 > ...
3 years, 7 months ago (2017-04-28 12:58:15 UTC) #4
philipel
https://codereview.webrtc.org/2853503002/diff/1/webrtc/video/video_receive_stream.cc File webrtc/video/video_receive_stream.cc (right): https://codereview.webrtc.org/2853503002/diff/1/webrtc/video/video_receive_stream.cc#newcode502 webrtc/video/video_receive_stream.cc:502: if (stream_is_active && !receiving_keyframe) { On 2017/04/28 12:40:55, ilnik ...
3 years, 7 months ago (2017-04-28 12:58:24 UTC) #5
philipel
ping
3 years, 7 months ago (2017-05-04 12:49:37 UTC) #10
stefan-webrtc
Can we add an integration test, for instance in end_to_end_tests.cc? Something simple that just verifies ...
3 years, 7 months ago (2017-05-04 14:00:18 UTC) #11
philipel
Added EndToEnd test, PTAL
3 years, 7 months ago (2017-05-08 15:21:58 UTC) #12
philipel
ping
3 years, 7 months ago (2017-05-16 11:26:57 UTC) #13
stefan-webrtc
https://codereview.webrtc.org/2853503002/diff/40001/webrtc/modules/video_coding/packet_buffer.cc File webrtc/modules/video_coding/packet_buffer.cc (right): https://codereview.webrtc.org/2853503002/diff/40001/webrtc/modules/video_coding/packet_buffer.cc#newcode156 webrtc/modules/video_coding/packet_buffer.cc:156: rtc::Optional<int64_t> PacketBuffer::LastReceivedPacketMs() const { I think it would be ...
3 years, 7 months ago (2017-05-17 06:32:11 UTC) #14
philipel
https://codereview.webrtc.org/2853503002/diff/40001/webrtc/modules/video_coding/packet_buffer.cc File webrtc/modules/video_coding/packet_buffer.cc (right): https://codereview.webrtc.org/2853503002/diff/40001/webrtc/modules/video_coding/packet_buffer.cc#newcode156 webrtc/modules/video_coding/packet_buffer.cc:156: rtc::Optional<int64_t> PacketBuffer::LastReceivedPacketMs() const { On 2017/05/17 06:32:11, stefan-webrtc wrote: ...
3 years, 7 months ago (2017-05-18 09:23:40 UTC) #15
holmer
https://codereview.webrtc.org/2853503002/diff/40001/webrtc/modules/video_coding/packet_buffer.cc File webrtc/modules/video_coding/packet_buffer.cc (right): https://codereview.webrtc.org/2853503002/diff/40001/webrtc/modules/video_coding/packet_buffer.cc#newcode156 webrtc/modules/video_coding/packet_buffer.cc:156: rtc::Optional<int64_t> PacketBuffer::LastReceivedPacketMs() const { On 2017/05/18 09:23:40, philipel wrote: ...
3 years, 7 months ago (2017-05-18 09:25:52 UTC) #17
stefan-webrtc
lgtm after offline discussion
3 years, 7 months ago (2017-05-18 11:46:39 UTC) #18
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/2853503002/60001
3 years, 7 months ago (2017-05-18 14:08:00 UTC) #21
commit-bot: I haz the power
Try jobs failed on following builders: ios_api_framework on master.tryserver.webrtc (JOB_FAILED, http://build.chromium.org/p/tryserver.webrtc/builders/ios_api_framework/builds/8051) ios_arm64_rel on master.tryserver.webrtc (JOB_FAILED, ...
3 years, 7 months ago (2017-05-18 14:09:52 UTC) #23
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/2853503002/80001
3 years, 7 months ago (2017-05-18 14:46:57 UTC) #26
commit-bot: I haz the power
3 years, 7 months ago (2017-05-18 15:09:02 UTC) #29
Message was sent while issue was closed.
Committed patchset #5 (id:80001) as
https://chromium.googlesource.com/external/webrtc/+/3184f8e3293e8b1e4afc314e7...

Powered by Google App Engine
This is Rietveld 408576698