blob: 75b3b86ff3407ae0265612727d713de8eb31e357 [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
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020016#include "common_types.h"
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +000017
18namespace webrtc {
19namespace test {
henrik.lundin@webrtc.org91d928e2014-11-26 15:50:30 +000020
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:56 +000034class RtpFileReader {
35 public:
stefan@webrtc.org48ac2262015-03-02 16:18:56 +000036 enum FileFormat { kPcap, kRtpDump, kLengthPacketInterleaved };
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +000037
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +000038 virtual ~RtpFileReader() {}
39 static RtpFileReader* Create(FileFormat format,
40 const std::string& filename);
stefanb947f282015-07-17 05:27:21 -070041 static RtpFileReader* Create(FileFormat format,
42 const std::string& filename,
43 const std::set<uint32_t>& ssrc_filter);
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +000044
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_