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

Issue 1376673004: Add a PacketOptions struct to webrtc::Transport. (Closed)

Created:
5 years, 2 months ago by stefan-webrtc
Modified:
5 years, 2 months ago
Reviewers:
pbos-webrtc, mflodman
CC:
webrtc-reviews_webrtc.org, interface-changes_webrtc.org, rwolff_gocast.it, hlundin-webrtc, yujie_mao (webrtc), Andrew MacDonald, henrika_webrtc, tterriberry_mozilla.com, qiang.lu, niklas.enbom, andresp, peah-webrtc, perkj_webrtc, mflodman
Base URL:
https://chromium.googlesource.com/external/webrtc.git@master
Target Ref:
refs/pending/heads/master
Project:
webrtc
Visibility:
Public.

Description

Add a PacketOptions struct to webrtc::Transport. This allows us to pass packet meta data, such as transport sequence number, to libjingle and further down to the socket implementation. A similar struct already exist in libjingle, see rtc::PacketOptions in asyncpacketsocket.h. BUG=4173 Committed: https://crrev.com/1d8a506405734d0cef9653704b036ca4f1388960 Cr-Commit-Position: refs/heads/master@{#10144}

Patch Set 1 #

Patch Set 2 : . #

Total comments: 3

Patch Set 3 : Rename to packet_id. #

Total comments: 2

Patch Set 4 : Rebase #

Patch Set 5 : Comment added #

Unified diffs Side-by-side diffs Delta from patch set Stats (+140 lines, -61 lines) Patch
M talk/media/webrtc/webrtcvideoengine2.h View 1 chunk +3 lines, -1 line 0 comments Download
M talk/media/webrtc/webrtcvideoengine2.cc View 1 2 3 1 chunk +3 lines, -1 line 0 comments Download
M talk/media/webrtc/webrtcvoiceengine.h View 1 2 3 1 chunk +3 lines, -1 line 0 comments Download
M webrtc/call/transport_adapter.h View 1 chunk +3 lines, -1 line 0 comments Download
M webrtc/call/transport_adapter.cc View 1 chunk +4 lines, -2 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/nack_rtx_unittest.cc View 1 chunk +3 lines, -1 line 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtcp_format_remb_unittest.cc View 1 2 3 1 chunk +3 lines, -1 line 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtcp_receiver_unittest.cc View 1 2 3 1 chunk +3 lines, -1 line 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtcp_sender_unittest.cc View 1 2 3 1 chunk +3 lines, -1 line 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl_unittest.cc View 1 chunk +3 lines, -1 line 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_sender.h View 1 chunk +3 lines, -1 line 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_sender.cc View 1 2 4 chunks +16 lines, -13 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_sender_unittest.cc View 1 2 3 2 chunks +9 lines, -6 lines 0 comments Download
M webrtc/modules/rtp_rtcp/test/testAPI/test_api.h View 1 chunk +3 lines, -1 line 0 comments Download
M webrtc/modules/rtp_rtcp/test/testAPI/test_api.cc View 1 2 3 1 chunk +3 lines, -1 line 0 comments Download
M webrtc/test/channel_transport/udp_transport_impl.h View 1 chunk +3 lines, -1 line 0 comments Download
M webrtc/test/channel_transport/udp_transport_impl.cc View 1 chunk +3 lines, -1 line 0 comments Download
M webrtc/test/direct_transport.h View 1 chunk +3 lines, -1 line 0 comments Download
M webrtc/test/direct_transport.cc View 1 chunk +3 lines, -1 line 0 comments Download
M webrtc/test/layer_filtering_transport.h View 1 chunk +3 lines, -1 line 0 comments Download
M webrtc/test/layer_filtering_transport.cc View 2 chunks +5 lines, -3 lines 0 comments Download
M webrtc/test/mock_transport.h View 1 chunk +4 lines, -1 line 0 comments Download
M webrtc/test/null_transport.h View 1 chunk +3 lines, -1 line 0 comments Download
M webrtc/test/null_transport.cc View 1 chunk +3 lines, -1 line 0 comments Download
M webrtc/test/rtp_rtcp_observer.h View 2 chunks +4 lines, -2 lines 0 comments Download
M webrtc/transport.h View 1 2 3 4 1 chunk +9 lines, -1 line 0 comments Download
M webrtc/video/end_to_end_tests.cc View 1 2 3 chunks +9 lines, -3 lines 0 comments Download
M webrtc/video/video_quality_test.cc View 2 chunks +4 lines, -2 lines 0 comments Download
M webrtc/voice_engine/channel.h View 1 chunk +3 lines, -1 line 0 comments Download
M webrtc/voice_engine/channel.cc View 2 chunks +4 lines, -4 lines 0 comments Download
M webrtc/voice_engine/test/auto_test/fakes/conference_transport.h View 1 chunk +3 lines, -1 line 0 comments Download
M webrtc/voice_engine/test/auto_test/fakes/conference_transport.cc View 1 chunk +3 lines, -1 line 0 comments Download
M webrtc/voice_engine/test/auto_test/fixtures/after_initialization_fixture.h View 1 chunk +3 lines, -1 line 0 comments Download
M webrtc/voice_engine/test/auto_test/standard/rtp_rtcp_extensions.cc View 1 chunk +3 lines, -1 line 0 comments Download

Messages

Total messages: 23 (5 generated)
stefan-webrtc
5 years, 2 months ago (2015-09-29 09:41:44 UTC) #2
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1376673004/20001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1376673004/20001
5 years, 2 months ago (2015-09-29 09:44:38 UTC) #4
pbos-webrtc
lgtm https://codereview.webrtc.org/1376673004/diff/20001/webrtc/modules/rtp_rtcp/source/rtp_sender_unittest.cc File webrtc/modules/rtp_rtcp/source/rtp_sender_unittest.cc (right): https://codereview.webrtc.org/1376673004/diff/20001/webrtc/modules/rtp_rtcp/source/rtp_sender_unittest.cc#newcode886 webrtc/modules/rtp_rtcp/source/rtp_sender_unittest.cc:886: _)) cl format unless this is clean https://codereview.webrtc.org/1376673004/diff/20001/webrtc/transport.h ...
5 years, 2 months ago (2015-09-29 09:54:42 UTC) #5
stefan-webrtc
https://codereview.webrtc.org/1376673004/diff/20001/webrtc/transport.h File webrtc/transport.h (right): https://codereview.webrtc.org/1376673004/diff/20001/webrtc/transport.h#newcode21 webrtc/transport.h:21: int transport_sequence_number = -1; On 2015/09/29 09:54:42, pbos-webrtc wrote: ...
5 years, 2 months ago (2015-09-29 10:00:14 UTC) #6
pbos-webrtc
On 2015/09/29 10:00:14, stefan-webrtc (holmer) wrote: > https://codereview.webrtc.org/1376673004/diff/20001/webrtc/transport.h > File webrtc/transport.h (right): > > https://codereview.webrtc.org/1376673004/diff/20001/webrtc/transport.h#newcode21 ...
5 years, 2 months ago (2015-09-29 10:02:09 UTC) #7
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: android_rel on tryserver.webrtc (JOB_FAILED, http://build.chromium.org/p/tryserver.webrtc/builders/android_rel/builds/7972)
5 years, 2 months ago (2015-09-29 10:28:17 UTC) #9
stefan-webrtc
Also, please comment on whether you want the member in PacketOptions to be called packed_id ...
5 years, 2 months ago (2015-09-29 11:18:41 UTC) #10
the sun
On 2015/09/29 11:18:41, stefan-webrtc (holmer) wrote: > Also, please comment on whether you want the ...
5 years, 2 months ago (2015-09-29 11:50:38 UTC) #11
stefan-webrtc
On 2015/09/29 11:50:38, the sun wrote: > On 2015/09/29 11:18:41, stefan-webrtc (holmer) wrote: > > ...
5 years, 2 months ago (2015-09-29 11:56:06 UTC) #12
the sun
On 2015/09/29 11:56:06, stefan-webrtc (holmer) wrote: > On 2015/09/29 11:50:38, the sun wrote: > > ...
5 years, 2 months ago (2015-09-29 11:58:39 UTC) #13
pbos-webrtc
On 2015/09/29 11:58:39, the sun wrote: > On 2015/09/29 11:56:06, stefan-webrtc (holmer) wrote: > > ...
5 years, 2 months ago (2015-09-29 12:05:47 UTC) #14
stefan-webrtc
On 2015/09/29 12:05:47, pbos-webrtc wrote: > On 2015/09/29 11:58:39, the sun wrote: > > On ...
5 years, 2 months ago (2015-09-29 14:04:40 UTC) #15
mflodman
One comment, LGTM. https://codereview.webrtc.org/1376673004/diff/40001/webrtc/transport.h File webrtc/transport.h (right): https://codereview.webrtc.org/1376673004/diff/40001/webrtc/transport.h#newcode21 webrtc/transport.h:21: int packet_id = -1; Comment about ...
5 years, 2 months ago (2015-10-02 09:05:28 UTC) #16
stefan-webrtc
https://codereview.webrtc.org/1376673004/diff/40001/webrtc/transport.h File webrtc/transport.h (right): https://codereview.webrtc.org/1376673004/diff/40001/webrtc/transport.h#newcode21 webrtc/transport.h:21: int packet_id = -1; On 2015/10/02 09:05:28, mflodman wrote: ...
5 years, 2 months ago (2015-10-02 09:25:57 UTC) #17
stefan-webrtc
Comment added
5 years, 2 months ago (2015-10-02 09:26:21 UTC) #18
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1376673004/80001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1376673004/80001
5 years, 2 months ago (2015-10-02 09:27:38 UTC) #21
commit-bot: I haz the power
Committed patchset #5 (id:80001)
5 years, 2 months ago (2015-10-02 10:39:38 UTC) #22
commit-bot: I haz the power
5 years, 2 months ago (2015-10-02 10:39:47 UTC) #23
Message was sent while issue was closed.
Patchset 5 (id:??) landed as
https://crrev.com/1d8a506405734d0cef9653704b036ca4f1388960
Cr-Commit-Position: refs/heads/master@{#10144}

Powered by Google App Engine
This is Rietveld 408576698