packet_source.h (1351B)
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 */ 10 11 #ifndef MODULES_AUDIO_CODING_NETEQ_TOOLS_PACKET_SOURCE_H_ 12 #define MODULES_AUDIO_CODING_NETEQ_TOOLS_PACKET_SOURCE_H_ 13 14 #include <bitset> 15 #include <cstdint> 16 #include <memory> 17 18 #include "modules/rtp_rtcp/source/rtp_packet_received.h" 19 20 namespace webrtc { 21 namespace test { 22 23 // Interface class for an object delivering RTP packets to test applications. 24 class PacketSource { 25 public: 26 PacketSource(); 27 virtual ~PacketSource(); 28 29 PacketSource(const PacketSource&) = delete; 30 PacketSource& operator=(const PacketSource&) = delete; 31 32 // Returns next packet. Returns nullptr if the source is depleted, or if an 33 // error occurred. 34 virtual std::unique_ptr<RtpPacketReceived> NextPacket() = 0; 35 36 virtual void FilterOutPayloadType(uint8_t payload_type); 37 38 protected: 39 std::bitset<128> filter_; // Payload type is 7 bits in the RFC. 40 }; 41 42 } // namespace test 43 } // namespace webrtc 44 #endif // MODULES_AUDIO_CODING_NETEQ_TOOLS_PACKET_SOURCE_H_