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

Unified Diff: webrtc/video/replay.cc

Issue 1273363005: Add send transports to individual webrtc::Call streams. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: rebase+comment Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/video/rampup_tests.cc ('k') | webrtc/video/rtc_event_log_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/video/replay.cc
diff --git a/webrtc/video/replay.cc b/webrtc/video/replay.cc
index fa61257bbfefc16b5b31fd444ddcdf2e2f245b7c..2a8a0a878e101cc0db66edfa10e8abc3ee2852fe 100644
--- a/webrtc/video/replay.cc
+++ b/webrtc/video/replay.cc
@@ -214,13 +214,10 @@ void RtpReplay() {
FileRenderPassthrough file_passthrough(flags::OutBase(),
playback_video.get());
- // TODO(pbos): Might be good to have a transport that prints keyframe requests
- // etc.
- test::NullTransport transport;
- Call::Config call_config(&transport);
- rtc::scoped_ptr<Call> call(Call::Create(call_config));
+ rtc::scoped_ptr<Call> call(Call::Create(Call::Config()));
- VideoReceiveStream::Config receive_config;
+ test::NullTransport transport;
+ VideoReceiveStream::Config receive_config(&transport);
receive_config.rtp.remote_ssrc = flags::Ssrc();
receive_config.rtp.local_ssrc = kReceiverLocalSsrc;
receive_config.rtp.fec.ulpfec_payload_type = flags::FecPayloadType();
« no previous file with comments | « webrtc/video/rampup_tests.cc ('k') | webrtc/video/rtc_event_log_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698