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 | |
Ali Tofigh | 714e3cb | 2022-07-20 10:53:07 | [diff] [blame] | 16 | #include "absl/strings/string_view.h" |
| 17 | |
pbos@webrtc.org | 4b5625e | 2014-08-06 16:26:56 | [diff] [blame] | 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; |
Artem Titov | 1ee563d | 2021-07-27 10:46:29 | [diff] [blame] | 27 | // The length the packet had on wire. Will be different from `length` when |
henrik.lundin@webrtc.org | 91d928e | 2014-11-26 15:50:30 | [diff] [blame] | 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() {} |
Benjamin Wright | 47dbcab | 2019-03-14 22:01:30 | [diff] [blame] | 39 | static RtpFileReader* Create(FileFormat format, |
| 40 | const uint8_t* data, |
| 41 | size_t size, |
| 42 | const std::set<uint32_t>& ssrc_filter); |
Ali Tofigh | 714e3cb | 2022-07-20 10:53:07 | [diff] [blame] | 43 | static RtpFileReader* Create(FileFormat format, absl::string_view filename); |
stefan | b947f28 | 2015-07-17 12:27:21 | [diff] [blame] | 44 | static RtpFileReader* Create(FileFormat format, |
Ali Tofigh | 714e3cb | 2022-07-20 10:53:07 | [diff] [blame] | 45 | absl::string_view filename, |
stefan | b947f28 | 2015-07-17 12:27:21 | [diff] [blame] | 46 | const std::set<uint32_t>& ssrc_filter); |
henrik.lundin@webrtc.org | 91d928e | 2014-11-26 15:50:30 | [diff] [blame] | 47 | virtual bool NextPacket(RtpPacket* packet) = 0; |
pbos@webrtc.org | 4b5625e | 2014-08-06 16:26:56 | [diff] [blame] | 48 | }; |
| 49 | } // namespace test |
| 50 | } // namespace webrtc |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 51 | #endif // TEST_RTP_FILE_READER_H_ |