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

Issue 2871173008: Fix packetization logic to leave space for extensions in the last packet (Closed)

Created:
3 years, 7 months ago by ilnik
Modified:
3 years, 7 months ago
CC:
webrtc-reviews_webrtc.org, tterriberry_mozilla.com, zhuangzesen_agora.io, danilchap, stefan-webrtc, mflodman
Target Ref:
refs/heads/master
Project:
webrtc
Visibility:
Public.

Description

Fix packetization logic to leave space for extensions in the last packet Change packetizer interface to explicitly return number of packets instead of a last flag. Account for extra space needed in the last packet. BUG=webrtc:7588, webrtc:7594 Review-Url: https://codereview.webrtc.org/2871173008 Cr-Commit-Position: refs/heads/master@{#18244} Committed: https://chromium.googlesource.com/external/webrtc/+/7a3006bae7f1c61371581ddfa320524041119f20

Patch Set 1 #

Patch Set 2 : Fix packet buffer allocations bugs and old tests with incorrect assumptions about extensions locati… #

Total comments: 20

Patch Set 3 : Implemented Danilchap@ comments #

Total comments: 42

Patch Set 4 : Fix debug check in rtp_video_sender #

Patch Set 5 : Implemented Danilchap@ comments #

Patch Set 6 : Implement generic video packetizer unittests #

Total comments: 22

Patch Set 7 : Impelemnted Danilchap@ comments #

Total comments: 14

Patch Set 8 : Impelemented Danilchap@ comments #

Total comments: 26

Patch Set 9 : Implemented danilchap@ comments #

Total comments: 64

Patch Set 10 : Implemented Danilchap@ comments #

Total comments: 8

Patch Set 11 : Implemented Sprang@ and Danilchap@ comments #

Total comments: 30

Patch Set 12 : Implement Sprang@ and Danilchap@ comments #

Total comments: 18

Patch Set 13 : Implemented Danilchap@ comments #

Total comments: 25

Patch Set 14 : Implement Danilchap@ comments #

Total comments: 12

Patch Set 15 : Implement Danilchap@ comments #

Total comments: 22

Patch Set 16 : Impelement Danilchap@ comments #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1117 lines, -1188 lines) Patch
M webrtc/modules/rtp_rtcp/BUILD.gn View 1 2 3 4 5 3 chunks +1 line, -3 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_format.h View 1 2 3 4 5 6 1 chunk +7 lines, -6 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_format.cc View 1 2 3 4 5 6 7 8 9 10 2 chunks +10 lines, -6 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_format_h264.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 2 chunks +8 lines, -7 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_format_h264.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 10 chunks +83 lines, -32 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_format_h264_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 13 chunks +111 lines, -70 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_format_video_generic.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +14 lines, -8 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_format_video_generic.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +60 lines, -28 lines 0 comments Download
A webrtc/modules/rtp_rtcp/source/rtp_format_video_generic_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +192 lines, -0 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_format_vp8.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 4 chunks +25 lines, -41 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_format_vp8.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 4 chunks +176 lines, -214 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_format_vp8_test_helper.cc View 1 2 1 chunk +3 lines, -4 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_format_vp8_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 18 chunks +179 lines, -61 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_format_vp9.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 4 chunks +12 lines, -10 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_format_vp9.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 4 chunks +77 lines, -40 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_format_vp9_unittest.cc View 1 2 3 4 5 6 7 8 9 10 6 chunks +130 lines, -27 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_sender_video.cc View 1 2 3 4 5 6 7 chunks +23 lines, -14 lines 0 comments Download
D webrtc/modules/rtp_rtcp/source/vp8_partition_aggregator.h View 1 chunk +0 lines, -137 lines 0 comments Download
D webrtc/modules/rtp_rtcp/source/vp8_partition_aggregator.cc View 1 chunk +0 lines, -268 lines 0 comments Download
D webrtc/modules/rtp_rtcp/source/vp8_partition_aggregator_unittest.cc View 1 chunk +0 lines, -212 lines 0 comments Download
M webrtc/video/video_send_stream_tests.cc View 1 2 3 4 5 6 2 chunks +6 lines, -0 lines 0 comments Download

Messages

Total messages: 84 (46 generated)
ilnik
3 years, 7 months ago (2017-05-11 16:30:27 UTC) #10
danilchap
Can you split this CL into serie of smaller CL? (Keeping this CL as reference ...
3 years, 7 months ago (2017-05-11 17:15:05 UTC) #11
ilnik
On 2017/05/11 17:15:05, danilchap wrote: > Can you split this CL into serie of smaller ...
3 years, 7 months ago (2017-05-11 17:57:44 UTC) #12
danilchap
https://codereview.webrtc.org/2871173008/diff/20001/webrtc/modules/rtp_rtcp/source/rtp_format.h File webrtc/modules/rtp_rtcp/source/rtp_format.h (right): https://codereview.webrtc.org/2871173008/diff/20001/webrtc/modules/rtp_rtcp/source/rtp_format.h#newcode27 webrtc/modules/rtp_rtcp/source/rtp_format.h:27: size_t last_packet_extensions_len, Can it be simpler to use last_packet_payload_len ...
3 years, 7 months ago (2017-05-12 08:34:41 UTC) #14
ilnik
https://codereview.webrtc.org/2871173008/diff/20001/webrtc/modules/rtp_rtcp/source/rtp_format.h File webrtc/modules/rtp_rtcp/source/rtp_format.h (right): https://codereview.webrtc.org/2871173008/diff/20001/webrtc/modules/rtp_rtcp/source/rtp_format.h#newcode27 webrtc/modules/rtp_rtcp/source/rtp_format.h:27: size_t last_packet_extensions_len, On 2017/05/12 08:34:40, danilchap wrote: > Can ...
3 years, 7 months ago (2017-05-12 09:17:58 UTC) #15
danilchap
https://codereview.webrtc.org/2871173008/diff/20001/webrtc/modules/rtp_rtcp/source/rtp_format.h File webrtc/modules/rtp_rtcp/source/rtp_format.h (right): https://codereview.webrtc.org/2871173008/diff/20001/webrtc/modules/rtp_rtcp/source/rtp_format.h#newcode27 webrtc/modules/rtp_rtcp/source/rtp_format.h:27: size_t last_packet_extensions_len, On 2017/05/12 09:17:57, ilnik wrote: > On ...
3 years, 7 months ago (2017-05-12 13:56:11 UTC) #23
ilnik
https://codereview.webrtc.org/2871173008/diff/20001/webrtc/modules/rtp_rtcp/source/rtp_format.h File webrtc/modules/rtp_rtcp/source/rtp_format.h (right): https://codereview.webrtc.org/2871173008/diff/20001/webrtc/modules/rtp_rtcp/source/rtp_format.h#newcode27 webrtc/modules/rtp_rtcp/source/rtp_format.h:27: size_t last_packet_extensions_len, On 2017/05/12 13:56:10, danilchap wrote: > On ...
3 years, 7 months ago (2017-05-12 13:59:21 UTC) #24
ilnik
https://codereview.webrtc.org/2871173008/diff/40001/webrtc/modules/rtp_rtcp/source/rtp_format_video_generic.cc File webrtc/modules/rtp_rtcp/source/rtp_format_video_generic.cc (right): https://codereview.webrtc.org/2871173008/diff/40001/webrtc/modules/rtp_rtcp/source/rtp_format_video_generic.cc#newcode42 webrtc/modules/rtp_rtcp/source/rtp_format_video_generic.cc:42: size_t total_data = payload_size_ + last_packet_extension_len_; On 2017/05/12 13:56:10, ...
3 years, 7 months ago (2017-05-12 14:46:08 UTC) #27
danilchap
https://codereview.webrtc.org/2871173008/diff/20001/webrtc/modules/rtp_rtcp/source/rtp_format.h File webrtc/modules/rtp_rtcp/source/rtp_format.h (right): https://codereview.webrtc.org/2871173008/diff/20001/webrtc/modules/rtp_rtcp/source/rtp_format.h#newcode27 webrtc/modules/rtp_rtcp/source/rtp_format.h:27: size_t last_packet_extensions_len, On 2017/05/12 13:59:20, ilnik wrote: > On ...
3 years, 7 months ago (2017-05-12 18:56:15 UTC) #28
ilnik
https://codereview.webrtc.org/2871173008/diff/20001/webrtc/modules/rtp_rtcp/source/rtp_format.h File webrtc/modules/rtp_rtcp/source/rtp_format.h (right): https://codereview.webrtc.org/2871173008/diff/20001/webrtc/modules/rtp_rtcp/source/rtp_format.h#newcode27 webrtc/modules/rtp_rtcp/source/rtp_format.h:27: size_t last_packet_extensions_len, On 2017/05/12 18:56:15, danilchap wrote: > On ...
3 years, 7 months ago (2017-05-15 09:38:34 UTC) #29
danilchap
Looking better every round! https://codereview.webrtc.org/2871173008/diff/100001/webrtc/modules/rtp_rtcp/source/rtp_format_video_generic.cc File webrtc/modules/rtp_rtcp/source/rtp_format_video_generic.cc (right): https://codereview.webrtc.org/2871173008/diff/100001/webrtc/modules/rtp_rtcp/source/rtp_format_video_generic.cc#newcode49 webrtc/modules/rtp_rtcp/source/rtp_format_video_generic.cc:49: size_t total_data = payload_size_ + ...
3 years, 7 months ago (2017-05-15 11:03:18 UTC) #30
ilnik
https://codereview.webrtc.org/2871173008/diff/100001/webrtc/modules/rtp_rtcp/source/rtp_format_video_generic.cc File webrtc/modules/rtp_rtcp/source/rtp_format_video_generic.cc (right): https://codereview.webrtc.org/2871173008/diff/100001/webrtc/modules/rtp_rtcp/source/rtp_format_video_generic.cc#newcode49 webrtc/modules/rtp_rtcp/source/rtp_format_video_generic.cc:49: size_t total_data = payload_size_ + last_packet_extension_len_; On 2017/05/15 11:03:17, ...
3 years, 7 months ago (2017-05-15 12:11:38 UTC) #31
danilchap
https://codereview.webrtc.org/2871173008/diff/140001/webrtc/modules/rtp_rtcp/source/rtp_format_video_generic_unittest.cc File webrtc/modules/rtp_rtcp/source/rtp_format_video_generic_unittest.cc (right): https://codereview.webrtc.org/2871173008/diff/140001/webrtc/modules/rtp_rtcp/source/rtp_format_video_generic_unittest.cc#newcode54 webrtc/modules/rtp_rtcp/source/rtp_format_video_generic_unittest.cc:54: auto difference = *minmax.second - *minmax.first; using size_t here ...
3 years, 7 months ago (2017-05-16 10:25:12 UTC) #36
ilnik
https://codereview.webrtc.org/2871173008/diff/140001/webrtc/modules/rtp_rtcp/source/rtp_format_video_generic_unittest.cc File webrtc/modules/rtp_rtcp/source/rtp_format_video_generic_unittest.cc (right): https://codereview.webrtc.org/2871173008/diff/140001/webrtc/modules/rtp_rtcp/source/rtp_format_video_generic_unittest.cc#newcode54 webrtc/modules/rtp_rtcp/source/rtp_format_video_generic_unittest.cc:54: auto difference = *minmax.second - *minmax.first; On 2017/05/16 10:25:11, ...
3 years, 7 months ago (2017-05-16 12:24:08 UTC) #37
danilchap
https://codereview.webrtc.org/2871173008/diff/140001/webrtc/modules/rtp_rtcp/source/rtp_format_vp9.cc File webrtc/modules/rtp_rtcp/source/rtp_format_vp9.cc (right): https://codereview.webrtc.org/2871173008/diff/140001/webrtc/modules/rtp_rtcp/source/rtp_format_vp9.cc#newcode547 webrtc/modules/rtp_rtcp/source/rtp_format_vp9.cc:547: packet_bytes -= SsDataLength(hdr_); On 2017/05/16 12:24:08, ilnik wrote: > ...
3 years, 7 months ago (2017-05-17 10:31:20 UTC) #42
ilnik
https://codereview.webrtc.org/2871173008/diff/140001/webrtc/modules/rtp_rtcp/source/rtp_format_vp9.cc File webrtc/modules/rtp_rtcp/source/rtp_format_vp9.cc (right): https://codereview.webrtc.org/2871173008/diff/140001/webrtc/modules/rtp_rtcp/source/rtp_format_vp9.cc#newcode547 webrtc/modules/rtp_rtcp/source/rtp_format_vp9.cc:547: packet_bytes -= SsDataLength(hdr_); On 2017/05/17 10:31:19, danilchap wrote: > ...
3 years, 7 months ago (2017-05-17 12:30:55 UTC) #43
ilnik
https://codereview.webrtc.org/2871173008/diff/140001/webrtc/modules/rtp_rtcp/source/rtp_format_vp9.cc File webrtc/modules/rtp_rtcp/source/rtp_format_vp9.cc (right): https://codereview.webrtc.org/2871173008/diff/140001/webrtc/modules/rtp_rtcp/source/rtp_format_vp9.cc#newcode547 webrtc/modules/rtp_rtcp/source/rtp_format_vp9.cc:547: packet_bytes -= SsDataLength(hdr_); On 2017/05/17 10:31:19, danilchap wrote: > ...
3 years, 7 months ago (2017-05-17 12:30:56 UTC) #44
sprang_webrtc
https://codereview.webrtc.org/2871173008/diff/160001/webrtc/modules/rtp_rtcp/source/rtp_format.cc File webrtc/modules/rtp_rtcp/source/rtp_format.cc (right): https://codereview.webrtc.org/2871173008/diff/160001/webrtc/modules/rtp_rtcp/source/rtp_format.cc#newcode45 webrtc/modules/rtp_rtcp/source/rtp_format.cc:45: return NULL; Would be great if you cleaned this ...
3 years, 7 months ago (2017-05-17 13:10:07 UTC) #46
danilchap
https://codereview.webrtc.org/2871173008/diff/160001/webrtc/modules/rtp_rtcp/source/rtp_format_h264_unittest.cc File webrtc/modules/rtp_rtcp/source/rtp_format_h264_unittest.cc (right): https://codereview.webrtc.org/2871173008/diff/160001/webrtc/modules/rtp_rtcp/source/rtp_format_h264_unittest.cc#newcode115 webrtc/modules/rtp_rtcp/source/rtp_format_h264_unittest.cc:115: expected_sizes.size()); On 2017/05/17 13:10:07, sprang_webrtc wrote: > nit: For ...
3 years, 7 months ago (2017-05-17 13:21:54 UTC) #47
ilnik
https://codereview.webrtc.org/2871173008/diff/160001/webrtc/modules/rtp_rtcp/source/rtp_format.cc File webrtc/modules/rtp_rtcp/source/rtp_format.cc (right): https://codereview.webrtc.org/2871173008/diff/160001/webrtc/modules/rtp_rtcp/source/rtp_format.cc#newcode45 webrtc/modules/rtp_rtcp/source/rtp_format.cc:45: return NULL; On 2017/05/17 13:10:06, sprang_webrtc wrote: > Would ...
3 years, 7 months ago (2017-05-17 15:06:34 UTC) #48
danilchap
https://codereview.webrtc.org/2871173008/diff/160001/webrtc/modules/rtp_rtcp/source/rtp_format_h264_unittest.cc File webrtc/modules/rtp_rtcp/source/rtp_format_h264_unittest.cc (right): https://codereview.webrtc.org/2871173008/diff/160001/webrtc/modules/rtp_rtcp/source/rtp_format_h264_unittest.cc#newcode115 webrtc/modules/rtp_rtcp/source/rtp_format_h264_unittest.cc:115: expected_sizes.size()); On 2017/05/17 15:06:33, ilnik wrote: > On 2017/05/17 ...
3 years, 7 months ago (2017-05-17 15:28:39 UTC) #51
ilnik
https://codereview.webrtc.org/2871173008/diff/160001/webrtc/modules/rtp_rtcp/source/rtp_format_h264_unittest.cc File webrtc/modules/rtp_rtcp/source/rtp_format_h264_unittest.cc (right): https://codereview.webrtc.org/2871173008/diff/160001/webrtc/modules/rtp_rtcp/source/rtp_format_h264_unittest.cc#newcode115 webrtc/modules/rtp_rtcp/source/rtp_format_h264_unittest.cc:115: expected_sizes.size()); On 2017/05/17 15:28:39, danilchap wrote: > On 2017/05/17 ...
3 years, 7 months ago (2017-05-18 07:33:02 UTC) #54
sprang_webrtc
lgtm with nits https://codereview.webrtc.org/2871173008/diff/160001/webrtc/modules/rtp_rtcp/source/rtp_format_h264_unittest.cc File webrtc/modules/rtp_rtcp/source/rtp_format_h264_unittest.cc (right): https://codereview.webrtc.org/2871173008/diff/160001/webrtc/modules/rtp_rtcp/source/rtp_format_h264_unittest.cc#newcode115 webrtc/modules/rtp_rtcp/source/rtp_format_h264_unittest.cc:115: expected_sizes.size()); On 2017/05/17 13:21:54, danilchap wrote: ...
3 years, 7 months ago (2017-05-18 09:48:20 UTC) #55
ilnik
https://codereview.webrtc.org/2871173008/diff/200001/webrtc/modules/rtp_rtcp/source/rtp_format_vp9.cc File webrtc/modules/rtp_rtcp/source/rtp_format_vp9.cc (right): https://codereview.webrtc.org/2871173008/diff/200001/webrtc/modules/rtp_rtcp/source/rtp_format_vp9.cc#newcode547 webrtc/modules/rtp_rtcp/source/rtp_format_vp9.cc:547: // i.e. if 14 bytes were splitted between 4 ...
3 years, 7 months ago (2017-05-18 09:53:11 UTC) #56
danilchap
https://codereview.webrtc.org/2871173008/diff/160001/webrtc/modules/rtp_rtcp/source/rtp_format_video_generic_unittest.cc File webrtc/modules/rtp_rtcp/source/rtp_format_video_generic_unittest.cc (right): https://codereview.webrtc.org/2871173008/diff/160001/webrtc/modules/rtp_rtcp/source/rtp_format_video_generic_unittest.cc#newcode65 webrtc/modules/rtp_rtcp/source/rtp_format_video_generic_unittest.cc:65: const size_t payload_size = 13; On 2017/05/17 15:06:33, ilnik ...
3 years, 7 months ago (2017-05-18 11:14:25 UTC) #57
ilnik
https://codereview.webrtc.org/2871173008/diff/200001/webrtc/modules/rtp_rtcp/source/rtp_format_h264.cc File webrtc/modules/rtp_rtcp/source/rtp_format_h264.cc (right): https://codereview.webrtc.org/2871173008/diff/200001/webrtc/modules/rtp_rtcp/source/rtp_format_h264.cc#newcode91 webrtc/modules/rtp_rtcp/source/rtp_format_h264.cc:91: RTC_CHECK(max_payload_len > last_packet_reduction_len); On 2017/05/18 11:14:24, danilchap wrote: > ...
3 years, 7 months ago (2017-05-18 12:22:52 UTC) #58
ilnik
https://codereview.webrtc.org/2871173008/diff/200001/webrtc/modules/rtp_rtcp/source/rtp_format_video_generic_unittest.cc File webrtc/modules/rtp_rtcp/source/rtp_format_video_generic_unittest.cc (right): https://codereview.webrtc.org/2871173008/diff/200001/webrtc/modules/rtp_rtcp/source/rtp_format_video_generic_unittest.cc#newcode47 webrtc/modules/rtp_rtcp/source/rtp_format_video_generic_unittest.cc:47: size_t GetEffectivePacketsSizeDifference(std::vector<size_t>* kPayloadSizes, On 2017/05/18 11:14:24, danilchap wrote: > ...
3 years, 7 months ago (2017-05-18 12:42:19 UTC) #59
danilchap
https://codereview.webrtc.org/2871173008/diff/220001/webrtc/modules/rtp_rtcp/source/rtp_format_vp8.cc File webrtc/modules/rtp_rtcp/source/rtp_format_vp8.cc (right): https://codereview.webrtc.org/2871173008/diff/220001/webrtc/modules/rtp_rtcp/source/rtp_format_vp8.cc#newcode334 webrtc/modules/rtp_rtcp/source/rtp_format_vp8.cc:334: std::vector<std::pair<size_t, size_t>> score( consider using helper struct instead of ...
3 years, 7 months ago (2017-05-19 12:03:47 UTC) #64
ilnik
https://codereview.webrtc.org/2871173008/diff/220001/webrtc/modules/rtp_rtcp/source/rtp_format_vp8.cc File webrtc/modules/rtp_rtcp/source/rtp_format_vp8.cc (right): https://codereview.webrtc.org/2871173008/diff/220001/webrtc/modules/rtp_rtcp/source/rtp_format_vp8.cc#newcode334 webrtc/modules/rtp_rtcp/source/rtp_format_vp8.cc:334: std::vector<std::pair<size_t, size_t>> score( On 2017/05/19 12:03:46, danilchap wrote: > ...
3 years, 7 months ago (2017-05-19 12:57:45 UTC) #65
danilchap
https://codereview.webrtc.org/2871173008/diff/240001/webrtc/modules/rtp_rtcp/source/rtp_format_vp8.cc File webrtc/modules/rtp_rtcp/source/rtp_format_vp8.cc (right): https://codereview.webrtc.org/2871173008/diff/240001/webrtc/modules/rtp_rtcp/source/rtp_format_vp8.cc#newcode259 webrtc/modules/rtp_rtcp/source/rtp_format_vp8.cc:259: bool last = (part_ix + 1) == num_partitions_; last_partition? ...
3 years, 7 months ago (2017-05-22 12:32:01 UTC) #66
ilnik
https://codereview.webrtc.org/2871173008/diff/240001/webrtc/modules/rtp_rtcp/source/rtp_format_vp8.cc File webrtc/modules/rtp_rtcp/source/rtp_format_vp8.cc (right): https://codereview.webrtc.org/2871173008/diff/240001/webrtc/modules/rtp_rtcp/source/rtp_format_vp8.cc#newcode259 webrtc/modules/rtp_rtcp/source/rtp_format_vp8.cc:259: bool last = (part_ix + 1) == num_partitions_; On ...
3 years, 7 months ago (2017-05-22 14:14:09 UTC) #67
danilchap
https://codereview.webrtc.org/2871173008/diff/240001/webrtc/modules/rtp_rtcp/source/rtp_format_vp8.cc File webrtc/modules/rtp_rtcp/source/rtp_format_vp8.cc (right): https://codereview.webrtc.org/2871173008/diff/240001/webrtc/modules/rtp_rtcp/source/rtp_format_vp8.cc#newcode374 webrtc/modules/rtp_rtcp/source/rtp_format_vp8.cc:374: if (current_score.num_packets < scores[new_partitions_left].num_packets || On 2017/05/22 14:14:09, ilnik ...
3 years, 7 months ago (2017-05-23 12:17:27 UTC) #68
ilnik
https://codereview.webrtc.org/2871173008/diff/260001/webrtc/modules/rtp_rtcp/source/rtp_format_h264.cc File webrtc/modules/rtp_rtcp/source/rtp_format_h264.cc (right): https://codereview.webrtc.org/2871173008/diff/260001/webrtc/modules/rtp_rtcp/source/rtp_format_h264.cc#newcode321 webrtc/modules/rtp_rtcp/source/rtp_format_h264.cc:321: NextAggregatePacket(rtp_packet, total_packets_ == 1); On 2017/05/23 12:17:27, danilchap wrote: ...
3 years, 7 months ago (2017-05-23 12:38:00 UTC) #69
danilchap
lgtm with nits https://codereview.webrtc.org/2871173008/diff/280001/webrtc/modules/rtp_rtcp/source/rtp_format_video_generic.cc File webrtc/modules/rtp_rtcp/source/rtp_format_video_generic.cc (right): https://codereview.webrtc.org/2871173008/diff/280001/webrtc/modules/rtp_rtcp/source/rtp_format_video_generic.cc#newcode58 webrtc/modules/rtp_rtcp/source/rtp_format_video_generic.cc:58: // first packets: 14 bytes in ...
3 years, 7 months ago (2017-05-23 15:55:03 UTC) #74
ilnik
Thanks for finding time to review this. https://codereview.webrtc.org/2871173008/diff/280001/webrtc/modules/rtp_rtcp/source/rtp_format_video_generic.cc File webrtc/modules/rtp_rtcp/source/rtp_format_video_generic.cc (right): https://codereview.webrtc.org/2871173008/diff/280001/webrtc/modules/rtp_rtcp/source/rtp_format_video_generic.cc#newcode58 webrtc/modules/rtp_rtcp/source/rtp_format_video_generic.cc:58: // first ...
3 years, 7 months ago (2017-05-23 16:14:30 UTC) #75
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/2871173008/300001
3 years, 7 months ago (2017-05-23 16:14:54 UTC) #78
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/2871173008/300001
3 years, 7 months ago (2017-05-23 16:20:14 UTC) #81
commit-bot: I haz the power
3 years, 7 months ago (2017-05-23 16:34:30 UTC) #84
Message was sent while issue was closed.
Committed patchset #16 (id:300001) as
https://chromium.googlesource.com/external/webrtc/+/7a3006bae7f1c61371581ddfa...

Powered by Google App Engine
This is Rietveld 408576698