blob: 1fa6f72f066dc15b748da11ff9dfd282b9d557b2 [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 */
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020010#ifndef TEST_RTP_FILE_READER_H_
11#define TEST_RTP_FILE_READER_H_
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +000012
stefanb947f282015-07-17 05:27:21 -070013#include <set>
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +000014#include <string>
15
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +000016namespace webrtc {
17namespace test {
henrik.lundin@webrtc.org91d928e2014-11-26 15:50:30 +000018
19struct RtpPacket {
20 // Accommodate for 50 ms packets of 32 kHz PCM16 samples (3200 bytes) plus
21 // some overhead.
22 static const size_t kMaxPacketBufferSize = 3500;
23 uint8_t data[kMaxPacketBufferSize];
24 size_t length;
25 // The length the packet had on wire. Will be different from |length| when
26 // reading a header-only RTP dump.
27 size_t original_length;
28
29 uint32_t time_ms;
30};
31
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +000032class RtpFileReader {
33 public:
stefan@webrtc.org48ac2262015-03-02 16:18:56 +000034 enum FileFormat { kPcap, kRtpDump, kLengthPacketInterleaved };
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +000035
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +000036 virtual ~RtpFileReader() {}
Benjamin Wright47dbcab2019-03-14 15:01:30 -070037 static RtpFileReader* Create(FileFormat format,
38 const uint8_t* data,
39 size_t size,
40 const std::set<uint32_t>& ssrc_filter);
Yves Gerey665174f2018-06-19 15:03:05 +020041 static RtpFileReader* Create(FileFormat format, const std::string& filename);
stefanb947f282015-07-17 05:27:21 -070042 static RtpFileReader* Create(FileFormat format,
43 const std::string& filename,
44 const std::set<uint32_t>& ssrc_filter);
henrik.lundin@webrtc.org91d928e2014-11-26 15:50:30 +000045 virtual bool NextPacket(RtpPacket* packet) = 0;
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +000046};
47} // namespace test
48} // namespace webrtc
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020049#endif // TEST_RTP_FILE_READER_H_