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

Issue 2490523002: Wire up FlexfecSender in RTPSenderVideo. (Closed)

Created:
4 years, 1 month ago by brandtr
Modified:
4 years, 1 month ago
Reviewers:
danilchap
CC:
webrtc-reviews_webrtc.org, tterriberry_mozilla.com, zhuangzesen_agora.io, danilchap, stefan-webrtc, mflodman
Target Ref:
refs/pending/heads/master
Project:
webrtc
Visibility:
Public.

Description

Wire up FlexfecSender in RTPSenderVideo. This CL adds the ability for RTPSenderVideo to generate and send FlexFEC packets. BUG=webrtc:5654 Committed: https://crrev.com/131bc498e65a29e4224648d6d6b72abd3de87592 Cr-Commit-Position: refs/heads/master@{#15016}

Patch Set 1 #

Total comments: 16

Patch Set 2 : Feedback response 1. #

Total comments: 4

Patch Set 3 : Feedback response 2. #

Total comments: 6

Patch Set 4 : Rebase. #

Patch Set 5 : Feedback response 3. #

Total comments: 8

Patch Set 6 : Feedback response 4. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+129 lines, -61 lines) Patch
M webrtc/modules/rtp_rtcp/include/flexfec_sender.h View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/rtp_rtcp/source/flexfec_sender.cc View 1 2 3 4 5 4 chunks +23 lines, -20 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_sender_video.h View 1 5 chunks +20 lines, -5 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_sender_video.cc View 1 2 3 4 8 chunks +85 lines, -35 lines 0 comments Download

Dependent Patchsets:

Messages

Total messages: 29 (13 generated)
brandtr
Please have a look :)
4 years, 1 month ago (2016-11-08 09:42:11 UTC) #2
danilchap
https://codereview.webrtc.org/2490523002/diff/1/webrtc/modules/rtp_rtcp/source/rtp_sender_video.cc File webrtc/modules/rtp_rtcp/source/rtp_sender_video.cc (right): https://codereview.webrtc.org/2490523002/diff/1/webrtc/modules/rtp_rtcp/source/rtp_sender_video.cc#newcode137 webrtc/modules/rtp_rtcp/source/rtp_sender_video.cc:137: uint16_t num_fec_packets = ulpfec_generator_.NumAvailableFecPackets(); probably cleaner to hide this ...
4 years, 1 month ago (2016-11-08 11:45:08 UTC) #3
brandtr
Rebase.
4 years, 1 month ago (2016-11-09 09:43:32 UTC) #4
brandtr
https://codereview.webrtc.org/2490523002/diff/1/webrtc/modules/rtp_rtcp/source/rtp_sender_video.cc File webrtc/modules/rtp_rtcp/source/rtp_sender_video.cc (right): https://codereview.webrtc.org/2490523002/diff/1/webrtc/modules/rtp_rtcp/source/rtp_sender_video.cc#newcode137 webrtc/modules/rtp_rtcp/source/rtp_sender_video.cc:137: uint16_t num_fec_packets = ulpfec_generator_.NumAvailableFecPackets(); On 2016/11/08 11:45:08, danilchap wrote: ...
4 years, 1 month ago (2016-11-09 10:40:00 UTC) #7
danilchap
lgtm https://codereview.webrtc.org/2490523002/diff/60001/webrtc/modules/rtp_rtcp/source/rtp_sender_video.h File webrtc/modules/rtp_rtcp/source/rtp_sender_video.h (right): https://codereview.webrtc.org/2490523002/diff/60001/webrtc/modules/rtp_rtcp/source/rtp_sender_video.h#newcode83 webrtc/modules/rtp_rtcp/source/rtp_sender_video.h:83: bool protect_media_packet); the name of this variable become ...
4 years, 1 month ago (2016-11-09 11:19:07 UTC) #8
danilchap
https://codereview.webrtc.org/2490523002/diff/60001/webrtc/modules/rtp_rtcp/source/rtp_sender_video.cc File webrtc/modules/rtp_rtcp/source/rtp_sender_video.cc (right): https://codereview.webrtc.org/2490523002/diff/60001/webrtc/modules/rtp_rtcp/source/rtp_sender_video.cc#newcode255 webrtc/modules/rtp_rtcp/source/rtp_sender_video.cc:255: (rtp_sender_->RtpHeaderLength() - kRtpHeaderSize); this should probably be (flexfec_sender_->RtpHeaderLength() - ...
4 years, 1 month ago (2016-11-09 11:21:58 UTC) #9
brandtr
Please have a look again :) https://codereview.webrtc.org/2490523002/diff/60001/webrtc/modules/rtp_rtcp/source/rtp_sender_video.cc File webrtc/modules/rtp_rtcp/source/rtp_sender_video.cc (right): https://codereview.webrtc.org/2490523002/diff/60001/webrtc/modules/rtp_rtcp/source/rtp_sender_video.cc#newcode255 webrtc/modules/rtp_rtcp/source/rtp_sender_video.cc:255: (rtp_sender_->RtpHeaderLength() - kRtpHeaderSize); ...
4 years, 1 month ago (2016-11-09 15:16:26 UTC) #10
danilchap
https://codereview.webrtc.org/2490523002/diff/80001/webrtc/modules/rtp_rtcp/source/flexfec_sender.cc File webrtc/modules/rtp_rtcp/source/flexfec_sender.cc (right): https://codereview.webrtc.org/2490523002/diff/80001/webrtc/modules/rtp_rtcp/source/flexfec_sender.cc#newcode92 webrtc/modules/rtp_rtcp/source/flexfec_sender.cc:92: rtp_header_length_ = rtp_header.headers_size(); that should be simpler: rtp_extra_header_length_ = ...
4 years, 1 month ago (2016-11-09 15:58:46 UTC) #11
danilchap
https://codereview.webrtc.org/2490523002/diff/80001/webrtc/modules/rtp_rtcp/include/flexfec_sender.h File webrtc/modules/rtp_rtcp/include/flexfec_sender.h (right): https://codereview.webrtc.org/2490523002/diff/80001/webrtc/modules/rtp_rtcp/include/flexfec_sender.h#newcode60 webrtc/modules/rtp_rtcp/include/flexfec_sender.h:60: size_t RtpHeaderLength() const { return rtp_header_length_; } might as ...
4 years, 1 month ago (2016-11-09 16:23:47 UTC) #12
brandtr
Rebase.
4 years, 1 month ago (2016-11-10 09:03:36 UTC) #13
brandtr
https://codereview.webrtc.org/2490523002/diff/80001/webrtc/modules/rtp_rtcp/include/flexfec_sender.h File webrtc/modules/rtp_rtcp/include/flexfec_sender.h (right): https://codereview.webrtc.org/2490523002/diff/80001/webrtc/modules/rtp_rtcp/include/flexfec_sender.h#newcode60 webrtc/modules/rtp_rtcp/include/flexfec_sender.h:60: size_t RtpHeaderLength() const { return rtp_header_length_; } On 2016/11/09 ...
4 years, 1 month ago (2016-11-10 09:32:01 UTC) #14
danilchap
lgtm https://codereview.webrtc.org/2490523002/diff/120001/webrtc/modules/rtp_rtcp/source/flexfec_sender.cc File webrtc/modules/rtp_rtcp/source/flexfec_sender.cc (right): https://codereview.webrtc.org/2490523002/diff/120001/webrtc/modules/rtp_rtcp/source/flexfec_sender.cc#newcode47 webrtc/modules/rtp_rtcp/source/flexfec_sender.cc:47: map.Register(kRtpExtensionTransportSequenceNumber, extension.id); I would like to remove this ...
4 years, 1 month ago (2016-11-10 11:29:24 UTC) #15
brandtr
https://codereview.webrtc.org/2490523002/diff/120001/webrtc/modules/rtp_rtcp/source/flexfec_sender.cc File webrtc/modules/rtp_rtcp/source/flexfec_sender.cc (right): https://codereview.webrtc.org/2490523002/diff/120001/webrtc/modules/rtp_rtcp/source/flexfec_sender.cc#newcode47 webrtc/modules/rtp_rtcp/source/flexfec_sender.cc:47: map.Register(kRtpExtensionTransportSequenceNumber, extension.id); On 2016/11/10 11:29:23, danilchap wrote: > I ...
4 years, 1 month ago (2016-11-10 12:00:41 UTC) #19
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/2490523002/160001
4 years, 1 month ago (2016-11-10 12:59:36 UTC) #26
commit-bot: I haz the power
Committed patchset #6 (id:160001)
4 years, 1 month ago (2016-11-10 13:01:14 UTC) #27
commit-bot: I haz the power
4 years, 1 month ago (2016-11-10 13:01:26 UTC) #29
Message was sent while issue was closed.
Patchset 6 (id:??) landed as
https://crrev.com/131bc498e65a29e4224648d6d6b72abd3de87592
Cr-Commit-Position: refs/heads/master@{#15016}

Powered by Google App Engine
This is Rietveld 408576698