blob: 4913522ba701a6ad8100477b5ce3ce959bc80bf3 [file] [log] [blame]
pbos@webrtc.org4b5625e2014-08-06 16:26:561/*
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 */
Mirko Bonadei92ea95e2017-09-15 04:47:3110#ifndef TEST_RTP_FILE_READER_H_
11#define TEST_RTP_FILE_READER_H_
pbos@webrtc.org4b5625e2014-08-06 16:26:5612
stefanb947f282015-07-17 12:27:2113#include <set>
pbos@webrtc.org4b5625e2014-08-06 16:26:5614#include <string>
15
Mirko Bonadei71207422017-09-15 11:58:0916#include "common_types.h" // NOLINT(build/include)
pbos@webrtc.org4b5625e2014-08-06 16:26:5617
18namespace webrtc {
19namespace test {
henrik.lundin@webrtc.org91d928e2014-11-26 15:50:3020
21struct RtpPacket {
22 // Accommodate for 50 ms packets of 32 kHz PCM16 samples (3200 bytes) plus
23 // some overhead.
24 static const size_t kMaxPacketBufferSize = 3500;
25 uint8_t data[kMaxPacketBufferSize];
26 size_t length;
27 // The length the packet had on wire. Will be different from |length| when
28 // reading a header-only RTP dump.
29 size_t original_length;
30
31 uint32_t time_ms;
32};
33
pbos@webrtc.org4b5625e2014-08-06 16:26:5634class RtpFileReader {
35 public:
stefan@webrtc.org48ac2262015-03-02 16:18:5636 enum FileFormat { kPcap, kRtpDump, kLengthPacketInterleaved };
pbos@webrtc.org4b5625e2014-08-06 16:26:5637
pbos@webrtc.org4b5625e2014-08-06 16:26:5638 virtual ~RtpFileReader() {}
Yves Gerey665174f2018-06-19 13:03:0539 static RtpFileReader* Create(FileFormat format, const std::string& filename);
stefanb947f282015-07-17 12:27:2140 static RtpFileReader* Create(FileFormat format,
41 const std::string& filename,
42 const std::set<uint32_t>& ssrc_filter);
pbos@webrtc.org4b5625e2014-08-06 16:26:5643
henrik.lundin@webrtc.org91d928e2014-11-26 15:50:3044 virtual bool NextPacket(RtpPacket* packet) = 0;
pbos@webrtc.org4b5625e2014-08-06 16:26:5645};
46} // namespace test
47} // namespace webrtc
Mirko Bonadei92ea95e2017-09-15 04:47:3148#endif // TEST_RTP_FILE_READER_H_