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

Issue 2452163004: Stop using VoEVideoSync in Call/VideoReceiveStream. (Closed)

Created:
4 years, 1 month ago by the sun
Modified:
3 years, 10 months ago
Reviewers:
stefan-webrtc
CC:
webrtc-reviews_webrtc.org, video-team_agora.io, yujie_mao (webrtc), Andrew MacDonald, zhengzhonghou_agora.io, henrika_webrtc, stefan-webrtc, tlegrand-webrtc, tterriberry_mozilla.com, audio-team_agora.io, hlundin-webrtc, peah-webrtc, minyue-webrtc, the sun, mflodman
Target Ref:
refs/heads/master
Project:
webrtc
Visibility:
Public.

Description

Stop using VoEVideoSync in Call/VideoReceiveStream. BUG=webrtc:4690 Review-Url: https://codereview.webrtc.org/2452163004 Cr-Commit-Position: refs/heads/master@{#16375} Committed: https://chromium.googlesource.com/external/webrtc/+/3ebbcb528b7eb0d2de58b3e6c99055ca3cd3e7f6

Patch Set 1 #

Patch Set 2 : more works #

Patch Set 3 : rebase #

Patch Set 4 : fixed thread checks #

Patch Set 5 : fixed build error #

Total comments: 3

Patch Set 6 : Don't expose RtpRtcp module in Syncable #

Total comments: 10

Patch Set 7 : Implement Syncable on VideoReceiveStream #

Patch Set 8 : Get rid of unnecessary Clock* #

Total comments: 5

Patch Set 9 : rebase #

Total comments: 4

Patch Set 10 : rebase #

Patch Set 11 : comments #

Patch Set 12 : comment #

Unified diffs Side-by-side diffs Delta from patch set Stats (+341 lines, -192 lines) Patch
M webrtc/audio/audio_receive_stream.h View 1 2 3 4 5 6 4 chunks +19 lines, -11 lines 0 comments Download
M webrtc/audio/audio_receive_stream.cc View 1 2 3 4 5 6 7 8 9 10 11 11 chunks +78 lines, -28 lines 0 comments Download
M webrtc/call/BUILD.gn View 1 2 3 4 5 6 7 8 9 1 chunk +2 lines, -0 lines 0 comments Download
M webrtc/call/call.cc View 1 2 3 4 5 6 7 8 9 5 chunks +7 lines, -17 lines 0 comments Download
A webrtc/call/syncable.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +43 lines, -0 lines 0 comments Download
A webrtc/call/syncable.cc View 1 2 3 1 chunk +17 lines, -0 lines 0 comments Download
M webrtc/test/mock_voe_channel_proxy.h View 1 2 1 chunk +6 lines, -0 lines 0 comments Download
M webrtc/video/rtp_streams_synchronizer.h View 1 2 3 4 5 6 7 8 9 10 3 chunks +7 lines, -17 lines 0 comments Download
M webrtc/video/rtp_streams_synchronizer.cc View 1 2 3 4 5 6 7 8 9 10 11 4 chunks +38 lines, -91 lines 0 comments Download
M webrtc/video/stream_synchronization.h View 1 2 3 4 5 6 7 8 9 10 2 chunks +3 lines, -3 lines 0 comments Download
M webrtc/video/stream_synchronization.cc View 1 2 3 4 5 6 7 8 9 10 3 chunks +7 lines, -7 lines 0 comments Download
M webrtc/video/video_receive_stream.h View 1 2 3 4 5 6 7 8 9 10 5 chunks +14 lines, -4 lines 0 comments Download
M webrtc/video/video_receive_stream.cc View 1 2 3 4 5 6 7 8 9 10 11 12 chunks +56 lines, -14 lines 0 comments Download
M webrtc/voice_engine/channel_proxy.h View 1 2 3 4 5 6 7 8 9 2 chunks +8 lines, -0 lines 0 comments Download
M webrtc/voice_engine/channel_proxy.cc View 1 2 3 4 5 6 7 8 9 1 chunk +36 lines, -0 lines 0 comments Download

Messages

Total messages: 16 (4 generated)
the sun
3 years, 11 months ago (2017-01-13 14:33:08 UTC) #2
stefan-webrtc
https://codereview.webrtc.org/2452163004/diff/80001/webrtc/video/rtp_streams_synchronizer.cc File webrtc/video/rtp_streams_synchronizer.cc (right): https://codereview.webrtc.org/2452163004/diff/80001/webrtc/video/rtp_streams_synchronizer.cc#newcode81 webrtc/video/rtp_streams_synchronizer.cc:81: syncable_->GetRtpRtcp(&audio_rtp_rtcp_, &audio_rtp_receiver_); Maybe we take the opportunity to change ...
3 years, 11 months ago (2017-01-13 16:21:05 UTC) #3
the sun
https://codereview.webrtc.org/2452163004/diff/80001/webrtc/video/rtp_streams_synchronizer.cc File webrtc/video/rtp_streams_synchronizer.cc (right): https://codereview.webrtc.org/2452163004/diff/80001/webrtc/video/rtp_streams_synchronizer.cc#newcode81 webrtc/video/rtp_streams_synchronizer.cc:81: syncable_->GetRtpRtcp(&audio_rtp_rtcp_, &audio_rtp_receiver_); On 2017/01/13 16:21:04, stefan-webrtc wrote: > Maybe ...
3 years, 11 months ago (2017-01-19 11:45:29 UTC) #4
stefan-webrtc
https://codereview.webrtc.org/2452163004/diff/80001/webrtc/video/rtp_streams_synchronizer.cc File webrtc/video/rtp_streams_synchronizer.cc (right): https://codereview.webrtc.org/2452163004/diff/80001/webrtc/video/rtp_streams_synchronizer.cc#newcode81 webrtc/video/rtp_streams_synchronizer.cc:81: syncable_->GetRtpRtcp(&audio_rtp_rtcp_, &audio_rtp_receiver_); On 2017/01/19 11:45:29, the sun wrote: > ...
3 years, 11 months ago (2017-01-19 11:59:59 UTC) #5
the sun
https://codereview.webrtc.org/2452163004/diff/100001/webrtc/audio/audio_receive_stream.cc File webrtc/audio/audio_receive_stream.cc (right): https://codereview.webrtc.org/2452163004/diff/100001/webrtc/audio/audio_receive_stream.cc#newcode249 webrtc/audio/audio_receive_stream.cc:249: rtc::Optional<Syncable::Info> AudioReceiveStream::GetInfo() const { On 2017/01/19 11:59:59, stefan-webrtc wrote: ...
3 years, 11 months ago (2017-01-19 13:15:36 UTC) #6
stefan-webrtc
lg! just a few more comments https://codereview.webrtc.org/2452163004/diff/100001/webrtc/call/syncable.h File webrtc/call/syncable.h (right): https://codereview.webrtc.org/2452163004/diff/100001/webrtc/call/syncable.h#newcode27 webrtc/call/syncable.h:27: uint32_t latest_timestamp = ...
3 years, 11 months ago (2017-01-26 08:40:50 UTC) #7
the sun
https://codereview.webrtc.org/2452163004/diff/100001/webrtc/call/syncable.h File webrtc/call/syncable.h (right): https://codereview.webrtc.org/2452163004/diff/100001/webrtc/call/syncable.h#newcode27 webrtc/call/syncable.h:27: uint32_t latest_timestamp = 0; On 2017/01/26 08:40:50, stefan-webrtc wrote: ...
3 years, 10 months ago (2017-01-30 15:43:12 UTC) #8
stefan-webrtc
https://codereview.webrtc.org/2452163004/diff/100001/webrtc/call/syncable.h File webrtc/call/syncable.h (right): https://codereview.webrtc.org/2452163004/diff/100001/webrtc/call/syncable.h#newcode30 webrtc/call/syncable.h:30: uint32_t rtp_timestamp = 0; On 2017/01/30 15:43:12, the sun ...
3 years, 10 months ago (2017-01-30 16:11:11 UTC) #9
the sun
https://codereview.webrtc.org/2452163004/diff/100001/webrtc/call/syncable.h File webrtc/call/syncable.h (right): https://codereview.webrtc.org/2452163004/diff/100001/webrtc/call/syncable.h#newcode30 webrtc/call/syncable.h:30: uint32_t rtp_timestamp = 0; On 2017/01/30 16:11:11, stefan-webrtc wrote: ...
3 years, 10 months ago (2017-01-31 10:00:32 UTC) #10
stefan-webrtc
lgtm
3 years, 10 months ago (2017-01-31 10:44:31 UTC) #11
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/2452163004/220001
3 years, 10 months ago (2017-01-31 10:47:01 UTC) #13
commit-bot: I haz the power
3 years, 10 months ago (2017-01-31 11:58:45 UTC) #16
Message was sent while issue was closed.
Committed patchset #12 (id:220001) as
https://chromium.googlesource.com/external/webrtc/+/3ebbcb528b7eb0d2de58b3e6c...

Powered by Google App Engine
This is Rietveld 408576698