blob: a0621aac57d8cddb0cec4b76e226ef3e2e9fe04e [file] [log] [blame]
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +00001/*
2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11#include <stdio.h>
12
Benjamin Wright90ab76d2018-08-23 11:33:29 -070013#include <fstream>
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +000014#include <map>
kwiberg27f982b2016-03-01 11:52:33 -080015#include <memory>
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +000016
Steve Anton40d55332019-01-07 10:21:47 -080017#include "absl/memory/memory.h"
Danil Chapovalov99b71df2018-10-26 15:57:48 +020018#include "api/test/video/function_video_decoder_factory.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020019#include "api/video_codecs/video_decoder.h"
20#include "call/call.h"
21#include "common_video/libyuv/include/webrtc_libyuv.h"
22#include "logging/rtc_event_log/rtc_event_log.h"
Steve Anton10542f22019-01-11 09:11:00 -080023#include "media/engine/internal_decoder_factory.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020024#include "modules/rtp_rtcp/include/rtp_header_parser.h"
25#include "rtc_base/checks.h"
26#include "rtc_base/flags.h"
27#include "rtc_base/string_to_number.h"
Sam Zackrissonb45bdb52018-10-02 16:25:59 +020028#include "rtc_base/strings/json.h"
Steve Anton10542f22019-01-11 09:11:00 -080029#include "rtc_base/time_utils.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020030#include "system_wrappers/include/clock.h"
31#include "system_wrappers/include/sleep.h"
Benjamin Wright8efafdf2019-01-11 10:48:42 -080032#include "test/call_config_utils.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020033#include "test/call_test.h"
34#include "test/encoder_settings.h"
35#include "test/fake_decoder.h"
36#include "test/gtest.h"
37#include "test/null_transport.h"
38#include "test/rtp_file_reader.h"
39#include "test/run_loop.h"
40#include "test/run_test.h"
Sebastian Janssonf1f363f2018-08-13 14:24:58 +020041#include "test/test_video_capturer.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020042#include "test/testsupport/frame_writer.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020043#include "test/video_renderer.h"
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +000044
oprypin6e09d872017-08-31 03:21:39 -070045namespace {
46
47static bool ValidatePayloadType(int32_t payload_type) {
48 return payload_type > 0 && payload_type <= 127;
49}
50
51static bool ValidateSsrc(const char* ssrc_string) {
52 return rtc::StringToNumber<uint32_t>(ssrc_string).has_value();
53}
54
55static bool ValidateOptionalPayloadType(int32_t payload_type) {
56 return payload_type == -1 || ValidatePayloadType(payload_type);
57}
58
59static bool ValidateRtpHeaderExtensionId(int32_t extension_id) {
60 return extension_id >= -1 && extension_id < 15;
61}
62
63bool ValidateInputFilenameNotEmpty(const std::string& string) {
64 return !string.empty();
65}
66
67} // namespace
68
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +000069namespace webrtc {
70namespace flags {
71
72// TODO(pbos): Multiple receivers.
73
74// Flag for payload type.
Mirko Bonadei2dfa9982018-10-18 11:35:32 +020075WEBRTC_DEFINE_int(media_payload_type,
76 test::CallTest::kPayloadTypeVP8,
77 "Media payload type");
philipel752968e2017-12-05 12:40:28 +010078static int MediaPayloadType() {
79 return static_cast<int>(FLAG_media_payload_type);
80}
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +000081
philipel752968e2017-12-05 12:40:28 +010082// Flag for RED payload type.
Mirko Bonadei2dfa9982018-10-18 11:35:32 +020083WEBRTC_DEFINE_int(red_payload_type,
84 test::CallTest::kRedPayloadType,
85 "RED payload type");
philipel752968e2017-12-05 12:40:28 +010086static int RedPayloadType() {
87 return static_cast<int>(FLAG_red_payload_type);
88}
89
90// Flag for ULPFEC payload type.
Mirko Bonadei2dfa9982018-10-18 11:35:32 +020091WEBRTC_DEFINE_int(ulpfec_payload_type,
92 test::CallTest::kUlpfecPayloadType,
93 "ULPFEC payload type");
philipel752968e2017-12-05 12:40:28 +010094static int UlpfecPayloadType() {
95 return static_cast<int>(FLAG_ulpfec_payload_type);
96}
97
Mirko Bonadei2dfa9982018-10-18 11:35:32 +020098WEBRTC_DEFINE_int(media_payload_type_rtx,
99 test::CallTest::kSendRtxPayloadType,
100 "Media over RTX payload type");
philipel752968e2017-12-05 12:40:28 +0100101static int MediaPayloadTypeRtx() {
102 return static_cast<int>(FLAG_media_payload_type_rtx);
103}
104
Mirko Bonadei2dfa9982018-10-18 11:35:32 +0200105WEBRTC_DEFINE_int(red_payload_type_rtx,
106 test::CallTest::kRtxRedPayloadType,
107 "RED over RTX payload type");
philipel752968e2017-12-05 12:40:28 +0100108static int RedPayloadTypeRtx() {
109 return static_cast<int>(FLAG_red_payload_type_rtx);
ilnik863f03b2017-07-11 02:38:36 -0700110}
ilnik863f03b2017-07-11 02:38:36 -0700111
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +0000112// Flag for SSRC.
oprypin6e09d872017-08-31 03:21:39 -0700113const std::string& DefaultSsrc() {
Yves Gerey665174f2018-06-19 15:03:05 +0200114 static const std::string ssrc =
115 std::to_string(test::CallTest::kVideoSendSsrcs[0]);
oprypin6e09d872017-08-31 03:21:39 -0700116 return ssrc;
117}
Mirko Bonadei2dfa9982018-10-18 11:35:32 +0200118WEBRTC_DEFINE_string(ssrc, DefaultSsrc().c_str(), "Incoming SSRC");
oprypin6e09d872017-08-31 03:21:39 -0700119static uint32_t Ssrc() {
120 return rtc::StringToNumber<uint32_t>(FLAG_ssrc).value();
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +0000121}
122
oprypin6e09d872017-08-31 03:21:39 -0700123const std::string& DefaultSsrcRtx() {
Yves Gerey665174f2018-06-19 15:03:05 +0200124 static const std::string ssrc_rtx =
125 std::to_string(test::CallTest::kSendRtxSsrcs[0]);
oprypin6e09d872017-08-31 03:21:39 -0700126 return ssrc_rtx;
127}
Mirko Bonadei2dfa9982018-10-18 11:35:32 +0200128WEBRTC_DEFINE_string(ssrc_rtx, DefaultSsrcRtx().c_str(), "Incoming RTX SSRC");
ilnik863f03b2017-07-11 02:38:36 -0700129static uint32_t SsrcRtx() {
oprypin6e09d872017-08-31 03:21:39 -0700130 return rtc::StringToNumber<uint32_t>(FLAG_ssrc_rtx).value();
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +0000131}
132
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +0000133// Flag for abs-send-time id.
Mirko Bonadei2dfa9982018-10-18 11:35:32 +0200134WEBRTC_DEFINE_int(abs_send_time_id, -1, "RTP extension ID for abs-send-time");
Yves Gerey665174f2018-06-19 15:03:05 +0200135static int AbsSendTimeId() {
136 return static_cast<int>(FLAG_abs_send_time_id);
137}
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +0000138
139// Flag for transmission-offset id.
Mirko Bonadei2dfa9982018-10-18 11:35:32 +0200140WEBRTC_DEFINE_int(transmission_offset_id,
141 -1,
142 "RTP extension ID for transmission-offset");
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +0000143static int TransmissionOffsetId() {
oprypin6e09d872017-08-31 03:21:39 -0700144 return static_cast<int>(FLAG_transmission_offset_id);
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +0000145}
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +0000146
147// Flag for rtpdump input file.
Mirko Bonadei2dfa9982018-10-18 11:35:32 +0200148WEBRTC_DEFINE_string(input_file, "", "input file");
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +0000149static std::string InputFile() {
oprypin6e09d872017-08-31 03:21:39 -0700150 return static_cast<std::string>(FLAG_input_file);
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +0000151}
152
Mirko Bonadei2dfa9982018-10-18 11:35:32 +0200153WEBRTC_DEFINE_string(config_file, "", "config file");
Benjamin Wright90ab76d2018-08-23 11:33:29 -0700154static std::string ConfigFile() {
155 return static_cast<std::string>(FLAG_config_file);
156}
157
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +0000158// Flag for raw output files.
Mirko Bonadei2dfa9982018-10-18 11:35:32 +0200159WEBRTC_DEFINE_string(out_base, "", "Basename (excluding .jpg) for raw output");
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +0000160static std::string OutBase() {
oprypin6e09d872017-08-31 03:21:39 -0700161 return static_cast<std::string>(FLAG_out_base);
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +0000162}
163
Mirko Bonadei2dfa9982018-10-18 11:35:32 +0200164WEBRTC_DEFINE_string(decoder_bitstream_filename,
165 "",
166 "Decoder bitstream output file");
stefan@webrtc.org48ac2262015-03-02 16:18:56 +0000167static std::string DecoderBitstreamFilename() {
oprypin6e09d872017-08-31 03:21:39 -0700168 return static_cast<std::string>(FLAG_decoder_bitstream_filename);
stefan@webrtc.org48ac2262015-03-02 16:18:56 +0000169}
170
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +0000171// Flag for video codec.
Mirko Bonadei2dfa9982018-10-18 11:35:32 +0200172WEBRTC_DEFINE_string(codec, "VP8", "Video codec");
Yves Gerey665174f2018-06-19 15:03:05 +0200173static std::string Codec() {
174 return static_cast<std::string>(FLAG_codec);
175}
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +0000176
Mirko Bonadei2dfa9982018-10-18 11:35:32 +0200177WEBRTC_DEFINE_bool(help, false, "Print this message.");
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +0000178} // namespace flags
179
180static const uint32_t kReceiverLocalSsrc = 0x123456;
181
nisse7ade7b32016-03-23 04:48:10 -0700182class FileRenderPassthrough : public rtc::VideoSinkInterface<VideoFrame> {
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +0000183 public:
nisse7ade7b32016-03-23 04:48:10 -0700184 FileRenderPassthrough(const std::string& basename,
185 rtc::VideoSinkInterface<VideoFrame>* renderer)
philipel99b63452017-08-25 07:24:21 -0700186 : basename_(basename), renderer_(renderer), file_(nullptr), count_(0) {}
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +0000187
Mirko Bonadeife055c12019-01-29 22:53:28 +0100188 ~FileRenderPassthrough() override {
Peter Boström74f6e9e2016-04-04 17:56:10 +0200189 if (file_)
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +0000190 fclose(file_);
191 }
192
193 private:
nisseeb83a1a2016-03-21 01:27:56 -0700194 void OnFrame(const VideoFrame& video_frame) override {
Peter Boström74f6e9e2016-04-04 17:56:10 +0200195 if (renderer_)
nisseeb83a1a2016-03-21 01:27:56 -0700196 renderer_->OnFrame(video_frame);
philipel99b63452017-08-25 07:24:21 -0700197
pbosbb36fdf2015-07-09 07:48:14 -0700198 if (basename_.empty())
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +0000199 return;
philipel99b63452017-08-25 07:24:21 -0700200
201 std::stringstream filename;
202 filename << basename_ << count_++ << "_" << video_frame.timestamp()
203 << ".jpg";
204
philipel99b63452017-08-25 07:24:21 -0700205 test::JpegFrameWriter frame_writer(filename.str());
206 RTC_CHECK(frame_writer.WriteFrame(video_frame, 100));
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +0000207 }
208
209 const std::string basename_;
nisse7ade7b32016-03-23 04:48:10 -0700210 rtc::VideoSinkInterface<VideoFrame>* const renderer_;
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +0000211 FILE* file_;
212 size_t count_;
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +0000213};
214
Niels Möllerf88a22c2018-06-19 17:05:03 +0200215class DecoderBitstreamFileWriter : public test::FakeDecoder {
stefan@webrtc.org48ac2262015-03-02 16:18:56 +0000216 public:
217 explicit DecoderBitstreamFileWriter(const char* filename)
218 : file_(fopen(filename, "wb")) {
Peter Boström74f6e9e2016-04-04 17:56:10 +0200219 RTC_DCHECK(file_);
stefan@webrtc.org48ac2262015-03-02 16:18:56 +0000220 }
Mirko Bonadeife055c12019-01-29 22:53:28 +0100221 ~DecoderBitstreamFileWriter() override { fclose(file_); }
stefan@webrtc.org48ac2262015-03-02 16:18:56 +0000222
Niels Möllerf88a22c2018-06-19 17:05:03 +0200223 int32_t Decode(const EncodedImage& encoded_frame,
Benjamin Wright8efafdf2019-01-11 10:48:42 -0800224 bool /* missing_frames */,
225 const CodecSpecificInfo* /* codec_specific_info */,
226 int64_t /* render_time_ms */) override {
Niels Möller77536a22019-01-15 08:50:01 +0100227 if (fwrite(encoded_frame.data(), 1, encoded_frame.size(), file_) <
228 encoded_frame.size()) {
Niels Möllerf88a22c2018-06-19 17:05:03 +0200229 RTC_LOG_ERR(LS_ERROR) << "fwrite of encoded frame failed.";
230 return WEBRTC_VIDEO_CODEC_ERROR;
231 }
232 return WEBRTC_VIDEO_CODEC_OK;
stefan@webrtc.org48ac2262015-03-02 16:18:56 +0000233 }
234
235 private:
236 FILE* file_;
237};
238
Benjamin Wright90ab76d2018-08-23 11:33:29 -0700239// The RtpReplayer is responsible for parsing the configuration provided by the
240// user, setting up the windows, recieve streams and decoders and then replaying
241// the provided RTP dump.
242class RtpReplayer final {
243 public:
244 // Replay a rtp dump with an optional json configuration.
245 static void Replay(const std::string& replay_config_path,
246 const std::string& rtp_dump_path) {
247 webrtc::RtcEventLogNullImpl event_log;
248 Call::Config call_config(&event_log);
Mirko Bonadei05cf6be2019-01-31 21:38:12 +0100249 std::unique_ptr<Call> call(Call::Create(call_config));
Benjamin Wright90ab76d2018-08-23 11:33:29 -0700250 std::unique_ptr<StreamState> stream_state;
251 // Attempt to load the configuration
252 if (replay_config_path.empty()) {
253 stream_state = ConfigureFromFlags(rtp_dump_path, call.get());
254 } else {
255 stream_state = ConfigureFromFile(replay_config_path, call.get());
256 }
257 if (stream_state == nullptr) {
258 return;
259 }
260 // Attempt to create an RtpReader from the input file.
261 std::unique_ptr<test::RtpFileReader> rtp_reader =
262 CreateRtpReader(rtp_dump_path);
263 if (rtp_reader == nullptr) {
264 return;
265 }
266 // Start replaying the provided stream now that it has been configured.
267 for (const auto& receive_stream : stream_state->receive_streams) {
268 receive_stream->Start();
269 }
270 ReplayPackets(call.get(), rtp_reader.get());
271 for (const auto& receive_stream : stream_state->receive_streams) {
272 call->DestroyVideoReceiveStream(receive_stream);
273 }
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +0000274 }
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +0000275
Benjamin Wright90ab76d2018-08-23 11:33:29 -0700276 private:
277 // Holds all the shared memory structures required for a recieve stream. This
278 // structure is used to prevent members being deallocated before the replay
279 // has been finished.
280 struct StreamState {
281 test::NullTransport transport;
282 std::vector<std::unique_ptr<rtc::VideoSinkInterface<VideoFrame>>> sinks;
283 std::vector<VideoReceiveStream*> receive_streams;
Niels Möllercbcbc222018-09-28 09:07:24 +0200284 std::unique_ptr<VideoDecoderFactory> decoder_factory;
Benjamin Wright90ab76d2018-08-23 11:33:29 -0700285 };
286
287 // Loads multiple configurations from the provided configuration file.
288 static std::unique_ptr<StreamState> ConfigureFromFile(
289 const std::string& config_path,
290 Call* call) {
291 auto stream_state = absl::make_unique<StreamState>();
292 // Parse the configuration file.
293 std::ifstream config_file(config_path);
294 std::stringstream raw_json_buffer;
295 raw_json_buffer << config_file.rdbuf();
296 std::string raw_json = raw_json_buffer.str();
297 Json::Reader json_reader;
298 Json::Value json_configs;
299 if (!json_reader.parse(raw_json, json_configs)) {
300 fprintf(stderr, "Error parsing JSON config\n");
301 fprintf(stderr, "%s\n", json_reader.getFormatedErrorMessages().c_str());
302 return nullptr;
303 }
304
Niels Möllercbcbc222018-09-28 09:07:24 +0200305 stream_state->decoder_factory = absl::make_unique<InternalDecoderFactory>();
Benjamin Wright90ab76d2018-08-23 11:33:29 -0700306 size_t config_count = 0;
307 for (const auto& json : json_configs) {
308 // Create the configuration and parse the JSON into the config.
Benjamin Wright8efafdf2019-01-11 10:48:42 -0800309 auto receive_config =
310 ParseVideoReceiveStreamJsonConfig(&(stream_state->transport), json);
Benjamin Wright90ab76d2018-08-23 11:33:29 -0700311 // Instantiate the underlying decoder.
312 for (auto& decoder : receive_config.decoders) {
Niels Möllercbcbc222018-09-28 09:07:24 +0200313 decoder = test::CreateMatchingDecoder(decoder.payload_type,
314 decoder.video_format.name);
315 decoder.decoder_factory = stream_state->decoder_factory.get();
Benjamin Wright90ab76d2018-08-23 11:33:29 -0700316 }
317 // Create a window for this config.
318 std::stringstream window_title;
319 window_title << "Playback Video (" << config_count++ << ")";
320 stream_state->sinks.emplace_back(
321 test::VideoRenderer::Create(window_title.str().c_str(), 640, 480));
322 // Create a receive stream for this config.
323 receive_config.renderer = stream_state->sinks.back().get();
324 stream_state->receive_streams.emplace_back(
325 call->CreateVideoReceiveStream(std::move(receive_config)));
326 }
327 return stream_state;
stefan@webrtc.org48ac2262015-03-02 16:18:56 +0000328 }
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +0000329
Benjamin Wright90ab76d2018-08-23 11:33:29 -0700330 // Loads the base configuration from flags passed in on the commandline.
331 static std::unique_ptr<StreamState> ConfigureFromFlags(
332 const std::string& rtp_dump_path,
333 Call* call) {
334 auto stream_state = absl::make_unique<StreamState>();
335 // Create the video renderers. We must add both to the stream state to keep
336 // them from deallocating.
337 std::stringstream window_title;
338 window_title << "Playback Video (" << rtp_dump_path << ")";
339 std::unique_ptr<test::VideoRenderer> playback_video(
340 test::VideoRenderer::Create(window_title.str().c_str(), 640, 480));
341 auto file_passthrough = absl::make_unique<FileRenderPassthrough>(
342 flags::OutBase(), playback_video.get());
343 stream_state->sinks.push_back(std::move(playback_video));
344 stream_state->sinks.push_back(std::move(file_passthrough));
345 // Setup the configuration from the flags.
346 VideoReceiveStream::Config receive_config(&(stream_state->transport));
347 receive_config.rtp.remote_ssrc = flags::Ssrc();
348 receive_config.rtp.local_ssrc = kReceiverLocalSsrc;
349 receive_config.rtp.rtx_ssrc = flags::SsrcRtx();
350 receive_config.rtp
351 .rtx_associated_payload_types[flags::MediaPayloadTypeRtx()] =
352 flags::MediaPayloadType();
353 receive_config.rtp
354 .rtx_associated_payload_types[flags::RedPayloadTypeRtx()] =
355 flags::RedPayloadType();
356 receive_config.rtp.ulpfec_payload_type = flags::UlpfecPayloadType();
357 receive_config.rtp.red_payload_type = flags::RedPayloadType();
358 receive_config.rtp.nack.rtp_history_ms = 1000;
359 if (flags::TransmissionOffsetId() != -1) {
360 receive_config.rtp.extensions.push_back(RtpExtension(
361 RtpExtension::kTimestampOffsetUri, flags::TransmissionOffsetId()));
362 }
363 if (flags::AbsSendTimeId() != -1) {
364 receive_config.rtp.extensions.push_back(
365 RtpExtension(RtpExtension::kAbsSendTimeUri, flags::AbsSendTimeId()));
366 }
367 receive_config.renderer = stream_state->sinks.back().get();
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +0000368
Benjamin Wright90ab76d2018-08-23 11:33:29 -0700369 // Setup the receiving stream
370 VideoReceiveStream::Decoder decoder;
371 decoder =
372 test::CreateMatchingDecoder(flags::MediaPayloadType(), flags::Codec());
Niels Möllercbcbc222018-09-28 09:07:24 +0200373 if (flags::DecoderBitstreamFilename().empty()) {
374 stream_state->decoder_factory =
375 absl::make_unique<InternalDecoderFactory>();
376 } else {
Benjamin Wright90ab76d2018-08-23 11:33:29 -0700377 // Replace decoder with file writer if we're writing the bitstream to a
378 // file instead.
Niels Möllercbcbc222018-09-28 09:07:24 +0200379 stream_state->decoder_factory =
380 absl::make_unique<test::FunctionVideoDecoderFactory>([]() {
381 return absl::make_unique<DecoderBitstreamFileWriter>(
382 flags::DecoderBitstreamFilename().c_str());
383 });
Benjamin Wright90ab76d2018-08-23 11:33:29 -0700384 }
Niels Möllercbcbc222018-09-28 09:07:24 +0200385 decoder.decoder_factory = stream_state->decoder_factory.get();
Benjamin Wright90ab76d2018-08-23 11:33:29 -0700386 receive_config.decoders.push_back(decoder);
387
388 stream_state->receive_streams.emplace_back(
389 call->CreateVideoReceiveStream(std::move(receive_config)));
390 return stream_state;
391 }
392
393 static std::unique_ptr<test::RtpFileReader> CreateRtpReader(
394 const std::string& rtp_dump_path) {
395 std::unique_ptr<test::RtpFileReader> rtp_reader(test::RtpFileReader::Create(
396 test::RtpFileReader::kRtpDump, rtp_dump_path));
Peter Boström74f6e9e2016-04-04 17:56:10 +0200397 if (!rtp_reader) {
Benjamin Wright90ab76d2018-08-23 11:33:29 -0700398 rtp_reader.reset(test::RtpFileReader::Create(test::RtpFileReader::kPcap,
399 rtp_dump_path));
Peter Boström74f6e9e2016-04-04 17:56:10 +0200400 if (!rtp_reader) {
Benjamin Wright90ab76d2018-08-23 11:33:29 -0700401 fprintf(
402 stderr,
403 "Couldn't open input file as either a rtpdump or .pcap. Note "
404 "that .pcapng is not supported.\nTrying to interpret the file as "
405 "length/packet interleaved.\n");
406 rtp_reader.reset(test::RtpFileReader::Create(
407 test::RtpFileReader::kLengthPacketInterleaved, rtp_dump_path));
408 if (!rtp_reader) {
409 fprintf(stderr,
410 "Unable to open input file with any supported format\n");
411 return nullptr;
412 }
stefan@webrtc.org48ac2262015-03-02 16:18:56 +0000413 }
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +0000414 }
Benjamin Wright90ab76d2018-08-23 11:33:29 -0700415 return rtp_reader;
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +0000416 }
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +0000417
Benjamin Wright90ab76d2018-08-23 11:33:29 -0700418 static void ReplayPackets(Call* call, test::RtpFileReader* rtp_reader) {
419 int64_t replay_start_ms = -1;
420 int num_packets = 0;
421 std::map<uint32_t, int> unknown_packets;
422 while (true) {
423 int64_t now_ms = rtc::TimeMillis();
424 if (replay_start_ms == -1) {
425 replay_start_ms = now_ms;
426 }
philipel02f03962018-01-11 17:28:35 +0100427
Benjamin Wright90ab76d2018-08-23 11:33:29 -0700428 test::RtpPacket packet;
429 if (!rtp_reader->NextPacket(&packet)) {
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +0000430 break;
431 }
Benjamin Wright90ab76d2018-08-23 11:33:29 -0700432
433 int64_t deliver_in_ms = replay_start_ms + packet.time_ms - now_ms;
434 if (deliver_in_ms > 0) {
435 SleepMs(deliver_in_ms);
436 }
437
438 ++num_packets;
439 switch (call->Receiver()->DeliverPacket(
440 webrtc::MediaType::VIDEO,
441 rtc::CopyOnWriteBuffer(packet.data, packet.length),
442 /* packet_time_us */ -1)) {
443 case PacketReceiver::DELIVERY_OK:
444 break;
445 case PacketReceiver::DELIVERY_UNKNOWN_SSRC: {
446 RTPHeader header;
447 std::unique_ptr<RtpHeaderParser> parser(RtpHeaderParser::Create());
448 parser->Parse(packet.data, packet.length, &header);
449 if (unknown_packets[header.ssrc] == 0)
450 fprintf(stderr, "Unknown SSRC: %u!\n", header.ssrc);
451 ++unknown_packets[header.ssrc];
452 break;
453 }
454 case PacketReceiver::DELIVERY_PACKET_ERROR: {
455 fprintf(stderr,
456 "Packet error, corrupt packets or incorrect setup?\n");
457 RTPHeader header;
458 std::unique_ptr<RtpHeaderParser> parser(RtpHeaderParser::Create());
459 parser->Parse(packet.data, packet.length, &header);
460 fprintf(stderr, "Packet len=%zu pt=%u seq=%u ts=%u ssrc=0x%8x\n",
461 packet.length, header.payloadType, header.sequenceNumber,
462 header.timestamp, header.ssrc);
463 break;
464 }
philipp.hancke7b589602017-01-26 04:54:04 -0800465 }
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +0000466 }
Benjamin Wright90ab76d2018-08-23 11:33:29 -0700467 fprintf(stderr, "num_packets: %d\n", num_packets);
468
469 for (std::map<uint32_t, int>::const_iterator it = unknown_packets.begin();
470 it != unknown_packets.end(); ++it) {
471 fprintf(stderr, "Packets for unknown ssrc '%u': %d\n", it->first,
472 it->second);
473 }
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +0000474 }
Benjamin Wright90ab76d2018-08-23 11:33:29 -0700475}; // class RtpReplayer
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +0000476
Benjamin Wright90ab76d2018-08-23 11:33:29 -0700477void RtpReplay() {
478 RtpReplayer::Replay(flags::ConfigFile(), flags::InputFile());
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +0000479}
Benjamin Wright90ab76d2018-08-23 11:33:29 -0700480
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +0000481} // namespace webrtc
482
483int main(int argc, char* argv[]) {
484 ::testing::InitGoogleTest(&argc, argv);
oprypin6e09d872017-08-31 03:21:39 -0700485 if (rtc::FlagList::SetFlagsFromCommandLine(&argc, argv, true)) {
486 return 1;
487 }
488 if (webrtc::flags::FLAG_help) {
489 rtc::FlagList::Print(nullptr, false);
490 return 0;
491 }
492
philipel752968e2017-12-05 12:40:28 +0100493 RTC_CHECK(ValidatePayloadType(webrtc::flags::FLAG_media_payload_type));
494 RTC_CHECK(ValidatePayloadType(webrtc::flags::FLAG_media_payload_type_rtx));
495 RTC_CHECK(ValidateOptionalPayloadType(webrtc::flags::FLAG_red_payload_type));
496 RTC_CHECK(
497 ValidateOptionalPayloadType(webrtc::flags::FLAG_red_payload_type_rtx));
498 RTC_CHECK(
499 ValidateOptionalPayloadType(webrtc::flags::FLAG_ulpfec_payload_type));
oprypin6e09d872017-08-31 03:21:39 -0700500 RTC_CHECK(ValidateSsrc(webrtc::flags::FLAG_ssrc));
501 RTC_CHECK(ValidateSsrc(webrtc::flags::FLAG_ssrc_rtx));
oprypin6e09d872017-08-31 03:21:39 -0700502 RTC_CHECK(ValidateRtpHeaderExtensionId(webrtc::flags::FLAG_abs_send_time_id));
Yves Gerey665174f2018-06-19 15:03:05 +0200503 RTC_CHECK(
504 ValidateRtpHeaderExtensionId(webrtc::flags::FLAG_transmission_offset_id));
oprypin6e09d872017-08-31 03:21:39 -0700505 RTC_CHECK(ValidateInputFilenameNotEmpty(webrtc::flags::FLAG_input_file));
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +0000506
507 webrtc::test::RunTest(webrtc::RtpReplay);
508 return 0;
509}