pbos@webrtc.org | 4b5625e | 2014-08-06 16:26:56 | [diff] [blame] | 1 | /* |
| 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 Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 10 | #ifndef TEST_RTP_FILE_READER_H_ |
| 11 | #define TEST_RTP_FILE_READER_H_ |
pbos@webrtc.org | 4b5625e | 2014-08-06 16:26:56 | [diff] [blame] | 12 | |
stefan | b947f28 | 2015-07-17 12:27:21 | [diff] [blame] | 13 | #include <set> |
pbos@webrtc.org | 4b5625e | 2014-08-06 16:26:56 | [diff] [blame] | 14 | #include <string> |
| 15 | |
Mirko Bonadei | 7120742 | 2017-09-15 11:58:09 | [diff] [blame] | 16 | #include "common_types.h" // NOLINT(build/include) |
pbos@webrtc.org | 4b5625e | 2014-08-06 16:26:56 | [diff] [blame] | 17 | |
| 18 | namespace webrtc { |
| 19 | namespace test { |
henrik.lundin@webrtc.org | 91d928e | 2014-11-26 15:50:30 | [diff] [blame] | 20 | |
| 21 | struct 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.org | 4b5625e | 2014-08-06 16:26:56 | [diff] [blame] | 34 | class RtpFileReader { |
| 35 | public: |
stefan@webrtc.org | 48ac226 | 2015-03-02 16:18:56 | [diff] [blame] | 36 | enum FileFormat { kPcap, kRtpDump, kLengthPacketInterleaved }; |
pbos@webrtc.org | 4b5625e | 2014-08-06 16:26:56 | [diff] [blame] | 37 | |
pbos@webrtc.org | 4b5625e | 2014-08-06 16:26:56 | [diff] [blame] | 38 | virtual ~RtpFileReader() {} |
Yves Gerey | 665174f | 2018-06-19 13:03:05 | [diff] [blame] | 39 | static RtpFileReader* Create(FileFormat format, const std::string& filename); |
stefan | b947f28 | 2015-07-17 12:27:21 | [diff] [blame] | 40 | static RtpFileReader* Create(FileFormat format, |
| 41 | const std::string& filename, |
| 42 | const std::set<uint32_t>& ssrc_filter); |
pbos@webrtc.org | 4b5625e | 2014-08-06 16:26:56 | [diff] [blame] | 43 | |
henrik.lundin@webrtc.org | 91d928e | 2014-11-26 15:50:30 | [diff] [blame] | 44 | virtual bool NextPacket(RtpPacket* packet) = 0; |
pbos@webrtc.org | 4b5625e | 2014-08-06 16:26:56 | [diff] [blame] | 45 | }; |
| 46 | } // namespace test |
| 47 | } // namespace webrtc |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 48 | #endif // TEST_RTP_FILE_READER_H_ |