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

Issue 1175263002: Add packetization and coding/decoding of feedback message format. (Closed)

Created:
5 years, 6 months ago by sprang_webrtc
Modified:
5 years, 4 months ago
Reviewers:
stefan-webrtc
CC:
mflodman, tterriberry_mozilla.com, webrtc-reviews_webrtc.org
Base URL:
https://chromium.googlesource.com/external/webrtc.git@master
Target Ref:
refs/pending/heads/master
Project:
webrtc
Visibility:
Public.

Description

Add packetization and coding/decoding of feedback message format. BUG=webrtc:4312 R=stefan@webrtc.org Committed: https://chromium.googlesource.com/external/webrtc/+/a3b8769860bdb0a45dbff6d1e0092486fa59aaa4

Patch Set 1 #

Patch Set 2 : Fixed compile error on win #

Patch Set 3 : Fixed type mismatch in unit tests #

Patch Set 4 : Fixed incorrect cast #

Patch Set 5 : Fixed rounding of negative deltas #

Total comments: 29

Patch Set 6 : Addressed comments, updated to latest spec, cleanup #

Patch Set 7 : Fixed untriggerable bug in Unwrap #

Patch Set 8 : Updated parsing to match new spec #

Total comments: 29

Patch Set 9 : Fixed merge issue #

Patch Set 10 : Addressed comments, one bug fix with test case #

Total comments: 18

Patch Set 11 : Addressed comments #

Patch Set 12 : Comment, DCHECK one-bit symbol #

Patch Set 13 : Fixed use of uninitialized memory #

Patch Set 14 : Make size constants unsigned #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1442 lines, -90 lines) Patch
M webrtc/modules/modules.gyp View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +1 line, -0 lines 0 comments Download
M webrtc/modules/rtp_rtcp/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +2 lines, -0 lines 0 comments Download
M webrtc/modules/rtp_rtcp/rtp_rtcp.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +2 lines, -0 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtcp_packet.h View 1 2 3 4 5 6 7 8 9 10 11 12 4 chunks +17 lines, -2 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtcp_packet.cc View 1 2 3 4 5 6 7 8 9 10 11 12 34 chunks +79 lines, -88 lines 0 comments Download
A webrtc/modules/rtp_rtcp/source/rtcp_packet/transport_feedback.h View 1 2 3 4 5 6 7 8 9 10 1 chunk +104 lines, -0 lines 0 comments Download
A webrtc/modules/rtp_rtcp/source/rtcp_packet/transport_feedback.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +802 lines, -0 lines 0 comments Download
A webrtc/modules/rtp_rtcp/source/rtcp_packet/transport_feedback_unittest.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +434 lines, -0 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtcp_packet_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +1 line, -0 lines 0 comments Download

Messages

Total messages: 14 (1 generated)
sprang_webrtc
5 years, 6 months ago (2015-06-11 10:08:37 UTC) #2
stefan-webrtc
A first pass, nice job. https://codereview.webrtc.org/1175263002/diff/80001/webrtc/modules/rtp_rtcp/source/rtcp_packet/feedback_packet.cc File webrtc/modules/rtp_rtcp/source/rtcp_packet/feedback_packet.cc (right): https://codereview.webrtc.org/1175263002/diff/80001/webrtc/modules/rtp_rtcp/source/rtcp_packet/feedback_packet.cc#newcode81 webrtc/modules/rtp_rtcp/source/rtcp_packet/feedback_packet.cc:81: for (size_t i = ...
5 years, 6 months ago (2015-06-16 08:29:14 UTC) #3
sprang_webrtc
https://codereview.webrtc.org/1175263002/diff/80001/webrtc/modules/rtp_rtcp/source/rtcp_packet/feedback_packet.cc File webrtc/modules/rtp_rtcp/source/rtcp_packet/feedback_packet.cc (right): https://codereview.webrtc.org/1175263002/diff/80001/webrtc/modules/rtp_rtcp/source/rtcp_packet/feedback_packet.cc#newcode81 webrtc/modules/rtp_rtcp/source/rtcp_packet/feedback_packet.cc:81: for (size_t i = 0; i < 14; ++i) ...
5 years, 6 months ago (2015-06-22 12:20:11 UTC) #4
stefan-webrtc
https://codereview.webrtc.org/1175263002/diff/80001/webrtc/modules/rtp_rtcp/source/rtcp_packet/feedback_packet.cc File webrtc/modules/rtp_rtcp/source/rtcp_packet/feedback_packet.cc (right): https://codereview.webrtc.org/1175263002/diff/80001/webrtc/modules/rtp_rtcp/source/rtcp_packet/feedback_packet.cc#newcode213 webrtc/modules/rtp_rtcp/source/rtcp_packet/feedback_packet.cc:213: static RunLengthChunk* ParseFrom(const uint8_t* buffer) { On 2015/06/22 12:20:10, ...
5 years, 5 months ago (2015-07-14 12:14:54 UTC) #5
stefan-webrtc
Otherwise I think this looks pretty good :)
5 years, 5 months ago (2015-07-14 12:15:10 UTC) #6
sprang_webrtc
https://codereview.webrtc.org/1175263002/diff/80001/webrtc/modules/rtp_rtcp/source/rtcp_packet/feedback_packet.cc File webrtc/modules/rtp_rtcp/source/rtcp_packet/feedback_packet.cc (right): https://codereview.webrtc.org/1175263002/diff/80001/webrtc/modules/rtp_rtcp/source/rtcp_packet/feedback_packet.cc#newcode213 webrtc/modules/rtp_rtcp/source/rtcp_packet/feedback_packet.cc:213: static RunLengthChunk* ParseFrom(const uint8_t* buffer) { On 2015/07/14 12:14:54, ...
5 years, 5 months ago (2015-07-16 11:12:11 UTC) #7
stefan-webrtc
LG https://codereview.webrtc.org/1175263002/diff/140001/webrtc/modules/rtp_rtcp/source/rtcp_packet/feedback_packet.cc File webrtc/modules/rtp_rtcp/source/rtcp_packet/feedback_packet.cc (right): https://codereview.webrtc.org/1175263002/diff/140001/webrtc/modules/rtp_rtcp/source/rtcp_packet/feedback_packet.cc#newcode418 webrtc/modules/rtp_rtcp/source/rtcp_packet/feedback_packet.cc:418: bool rle_candidate = symbol_vec_.size() == first_symbol_cardinality_ || On ...
5 years, 4 months ago (2015-07-27 11:49:29 UTC) #8
sprang_webrtc
https://codereview.webrtc.org/1175263002/diff/180001/webrtc/modules/rtp_rtcp/source/rtcp_packet/feedback_packet.cc File webrtc/modules/rtp_rtcp/source/rtcp_packet/feedback_packet.cc (right): https://codereview.webrtc.org/1175263002/diff/180001/webrtc/modules/rtp_rtcp/source/rtcp_packet/feedback_packet.cc#newcode30 webrtc/modules/rtp_rtcp/source/rtcp_packet/feedback_packet.cc:30: static const int kMaxSizeBytes = (1 << 16) * ...
5 years, 4 months ago (2015-07-28 08:28:54 UTC) #9
stefan-webrtc
https://codereview.webrtc.org/1175263002/diff/180001/webrtc/modules/rtp_rtcp/source/rtcp_packet/feedback_packet.cc File webrtc/modules/rtp_rtcp/source/rtcp_packet/feedback_packet.cc (right): https://codereview.webrtc.org/1175263002/diff/180001/webrtc/modules/rtp_rtcp/source/rtcp_packet/feedback_packet.cc#newcode30 webrtc/modules/rtp_rtcp/source/rtcp_packet/feedback_packet.cc:30: static const int kMaxSizeBytes = (1 << 16) * ...
5 years, 4 months ago (2015-07-28 09:34:11 UTC) #10
sprang_webrtc
https://codereview.webrtc.org/1175263002/diff/180001/webrtc/modules/rtp_rtcp/source/rtcp_packet/feedback_packet.cc File webrtc/modules/rtp_rtcp/source/rtcp_packet/feedback_packet.cc (right): https://codereview.webrtc.org/1175263002/diff/180001/webrtc/modules/rtp_rtcp/source/rtcp_packet/feedback_packet.cc#newcode30 webrtc/modules/rtp_rtcp/source/rtcp_packet/feedback_packet.cc:30: static const int kMaxSizeBytes = (1 << 16) * ...
5 years, 4 months ago (2015-07-28 11:39:23 UTC) #11
stefan-webrtc
lgtm
5 years, 4 months ago (2015-07-28 12:59:08 UTC) #12
sprang_webrtc
Committed patchset #14 (id:260001) manually as a3b8769860bdb0a45dbff6d1e0092486fa59aaa4 (presubmit successful).
5 years, 4 months ago (2015-07-29 08:47:09 UTC) #13
ay
5 years, 4 months ago (2015-07-31 18:40:35 UTC) #14
Message was sent while issue was closed.
On 2015/07/28 12:59:08, stefan-webrtc (holmer) wrote:
> lgtm

https://codereview.webrtc.org/1175263002/diff/180001/webrtc/modules/rtp_rtcp/...

Powered by Google App Engine
This is Rietveld 408576698