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

Issue 502333002: [Cast] In Audio/VideoSender, drop frames when too-long a duration is in-flight. (Closed)

Created:
6 years, 4 months ago by miu
Modified:
6 years, 3 months ago
CC:
chromium-reviews, hclam+watch_chromium.org, imcheng+watch_chromium.org, hguihot+watch_chromium.org, jasonroberts+watch_google.com, avayvod+watch_chromium.org, pwestin+watch_google.com, feature-media-reviews_chromium.org, miu+watch_chromium.org, hubbe+watch_chromium.org, mikhal+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Project:
chromium
Visibility:
Public.

Description

[Cast] In Audio/VideoSender, drop frames when too-long a duration is in-flight. BUG=404813, 405622 Committed: https://crrev.com/bbb875132105e0feeee0c0a56251ab83775a4fdb Cr-Commit-Position: refs/heads/master@{#292673}

Patch Set 1 #

Total comments: 8

Patch Set 2 : Based on TimeDelta rather than RTP delta. #

Total comments: 4

Patch Set 3 : Encapsulate frame timestamp history into FrameSender + delete RtpTimestampHelper. #

Patch Set 4 : rebase #

Patch Set 5 : Fix missing brace (rebase oops). #

Unified diffs Side-by-side diffs Delta from patch set Stats (+134 lines, -155 lines) Patch
M media/cast/BUILD.gn View 1 2 3 1 chunk +0 lines, -2 lines 0 comments Download
M media/cast/cast.gyp View 1 2 1 chunk +0 lines, -2 lines 0 comments Download
M media/cast/cast_defines.h View 1 chunk +5 lines, -0 lines 0 comments Download
M media/cast/sender/audio_sender.h View 1 2 3 1 chunk +5 lines, -5 lines 0 comments Download
M media/cast/sender/audio_sender.cc View 1 2 3 4 chunks +26 lines, -19 lines 0 comments Download
M media/cast/sender/frame_sender.h View 1 2 3 6 chunks +21 lines, -12 lines 0 comments Download
M media/cast/sender/frame_sender.cc View 1 2 3 4 4 chunks +40 lines, -11 lines 0 comments Download
M media/cast/sender/rtp_timestamp_helper.h View 1 2 1 chunk +0 lines, -41 lines 0 comments Download
M media/cast/sender/rtp_timestamp_helper.cc View 1 2 1 chunk +0 lines, -36 lines 0 comments Download
M media/cast/sender/video_sender.h View 1 2 3 1 chunk +5 lines, -5 lines 0 comments Download
M media/cast/sender/video_sender.cc View 1 2 3 5 chunks +30 lines, -20 lines 0 comments Download
M media/cast/sender/vp8_encoder.cc View 2 chunks +2 lines, -2 lines 0 comments Download

Messages

Total messages: 25 (3 generated)
miu
miu@chromium.org changed reviewers: + hclam@chromium.org, hubbe@chromium.org
6 years, 4 months ago (2014-08-26 02:56:58 UTC) #1
miu
PTAL.
6 years, 4 months ago (2014-08-26 02:56:58 UTC) #2
hubbe
https://codereview.chromium.org/502333002/diff/1/media/cast/sender/frame_sender.h File media/cast/sender/frame_sender.h (right): https://codereview.chromium.org/502333002/diff/1/media/cast/sender/frame_sender.h#newcode100 media/cast/sender/frame_sender.h:100: int64 max_unacked_rtp_delta_; Why not TimeDelta? https://codereview.chromium.org/502333002/diff/1/media/cast/sender/rtp_timestamp_helper.h File media/cast/sender/rtp_timestamp_helper.h (right): ...
6 years, 3 months ago (2014-08-26 17:49:56 UTC) #3
miu
https://codereview.chromium.org/502333002/diff/1/media/cast/sender/frame_sender.h File media/cast/sender/frame_sender.h (right): https://codereview.chromium.org/502333002/diff/1/media/cast/sender/frame_sender.h#newcode100 media/cast/sender/frame_sender.h:100: int64 max_unacked_rtp_delta_; On 2014/08/26 17:49:56, hubbe wrote: > Why ...
6 years, 3 months ago (2014-08-26 19:57:19 UTC) #4
hubbe
https://codereview.chromium.org/502333002/diff/1/media/cast/sender/frame_sender.h File media/cast/sender/frame_sender.h (right): https://codereview.chromium.org/502333002/diff/1/media/cast/sender/frame_sender.h#newcode100 media/cast/sender/frame_sender.h:100: int64 max_unacked_rtp_delta_; On 2014/08/26 19:57:19, miu wrote: > On ...
6 years, 3 months ago (2014-08-26 20:54:21 UTC) #5
miu
https://codereview.chromium.org/502333002/diff/1/media/cast/sender/frame_sender.h File media/cast/sender/frame_sender.h (right): https://codereview.chromium.org/502333002/diff/1/media/cast/sender/frame_sender.h#newcode100 media/cast/sender/frame_sender.h:100: int64 max_unacked_rtp_delta_; On 2014/08/26 20:54:21, hubbe wrote: > On ...
6 years, 3 months ago (2014-08-26 23:27:16 UTC) #6
miu
BTW--This change has a (wonderful?) side effect: It starts dropping frames if there are too ...
6 years, 3 months ago (2014-08-26 23:29:37 UTC) #7
miu
On 2014/08/26 23:29:37, miu wrote: > BTW--This change has a (wonderful?) side effect: It starts ...
6 years, 3 months ago (2014-08-27 19:31:31 UTC) #8
hubbe
https://codereview.chromium.org/502333002/diff/20001/media/cast/sender/audio_sender.cc File media/cast/sender/audio_sender.cc (right): https://codereview.chromium.org/502333002/diff/20001/media/cast/sender/audio_sender.cc#newcode116 media/cast/sender/audio_sender.cc:116: encoded_frame->rtp_timestamp; why don't we save the reference time here ...
6 years, 3 months ago (2014-08-28 17:34:46 UTC) #9
miu
https://codereview.chromium.org/502333002/diff/20001/media/cast/sender/audio_sender.cc File media/cast/sender/audio_sender.cc (right): https://codereview.chromium.org/502333002/diff/20001/media/cast/sender/audio_sender.cc#newcode116 media/cast/sender/audio_sender.cc:116: encoded_frame->rtp_timestamp; On 2014/08/28 17:34:45, hubbe wrote: > why don't ...
6 years, 3 months ago (2014-08-28 18:57:58 UTC) #10
hubbe
https://codereview.chromium.org/502333002/diff/20001/media/cast/sender/audio_sender.cc File media/cast/sender/audio_sender.cc (right): https://codereview.chromium.org/502333002/diff/20001/media/cast/sender/audio_sender.cc#newcode116 media/cast/sender/audio_sender.cc:116: encoded_frame->rtp_timestamp; On 2014/08/28 18:57:58, miu wrote: > On 2014/08/28 ...
6 years, 3 months ago (2014-08-28 19:03:10 UTC) #11
miu
https://codereview.chromium.org/502333002/diff/20001/media/cast/sender/audio_sender.cc File media/cast/sender/audio_sender.cc (right): https://codereview.chromium.org/502333002/diff/20001/media/cast/sender/audio_sender.cc#newcode116 media/cast/sender/audio_sender.cc:116: encoded_frame->rtp_timestamp; On 2014/08/28 19:03:10, hubbe wrote: > On 2014/08/28 ...
6 years, 3 months ago (2014-08-28 20:37:16 UTC) #12
hubbe
lgtm
6 years, 3 months ago (2014-08-29 03:23:46 UTC) #13
miu
The CQ bit was checked by miu@chromium.org
6 years, 3 months ago (2014-08-29 05:29:53 UTC) #14
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/miu@chromium.org/502333002/40001
6 years, 3 months ago (2014-08-29 05:30:39 UTC) #15
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: android_arm64_dbg_recipe on tryserver.chromium.linux ...
6 years, 3 months ago (2014-08-29 05:41:43 UTC) #16
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 3 months ago (2014-08-29 05:42:55 UTC) #17
commit-bot: I haz the power
Try jobs failed on following builders: ios_rel_device_ninja on tryserver.chromium.mac (http://build.chromium.org/p/tryserver.chromium.mac/builders/ios_rel_device_ninja/builds/6968)
6 years, 3 months ago (2014-08-29 05:42:56 UTC) #18
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/miu@chromium.org/502333002/60001
6 years, 3 months ago (2014-08-29 17:17:45 UTC) #20
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/miu@chromium.org/502333002/80001
6 years, 3 months ago (2014-08-29 17:45:17 UTC) #23
commit-bot: I haz the power
Committed patchset #5 (id:80001) as 6b036dd95ee51378550e1b3c3cc37a9b6d9a8886
6 years, 3 months ago (2014-08-29 18:46:22 UTC) #24
commit-bot: I haz the power
6 years, 3 months ago (2014-09-10 03:10:14 UTC) #25
Message was sent while issue was closed.
Patchset 5 (id:??) landed as
https://crrev.com/bbb875132105e0feeee0c0a56251ab83775a4fdb
Cr-Commit-Position: refs/heads/master@{#292673}

Powered by Google App Engine
This is Rietveld 408576698