brandtr | a8b3855 | 2016-10-10 16:44:57 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2016 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 WEBRTC_MODULES_RTP_RTCP_INCLUDE_FLEXFEC_RECEIVER_H_ |
| 12 | #define WEBRTC_MODULES_RTP_RTCP_INCLUDE_FLEXFEC_RECEIVER_H_ |
| 13 | |
| 14 | #include <memory> |
| 15 | |
| 16 | #include "webrtc/base/basictypes.h" |
brandtr | d55c3f6 | 2016-10-31 04:51:33 -0700 | [diff] [blame^] | 17 | #include "webrtc/modules/rtp_rtcp/include/ulpfec_receiver.h" |
brandtr | a8b3855 | 2016-10-10 16:44:57 -0700 | [diff] [blame] | 18 | |
| 19 | namespace webrtc { |
| 20 | |
brandtr | 4e52386 | 2016-10-18 23:50:45 -0700 | [diff] [blame] | 21 | // Callback interface for packets recovered by FlexFEC. The implementation |
| 22 | // should be able to demultiplex the recovered RTP packets based on SSRC. |
brandtr | a8b3855 | 2016-10-10 16:44:57 -0700 | [diff] [blame] | 23 | class RecoveredPacketReceiver { |
| 24 | public: |
| 25 | virtual bool OnRecoveredPacket(const uint8_t* packet, size_t length) = 0; |
| 26 | |
| 27 | protected: |
| 28 | virtual ~RecoveredPacketReceiver() = default; |
| 29 | }; |
| 30 | |
| 31 | class FlexfecReceiver { |
| 32 | public: |
| 33 | static std::unique_ptr<FlexfecReceiver> Create( |
| 34 | uint32_t flexfec_ssrc, |
| 35 | uint32_t protected_media_ssrc, |
| 36 | RecoveredPacketReceiver* callback); |
| 37 | virtual ~FlexfecReceiver(); |
| 38 | |
| 39 | // Inserts a received packet (can be either media or FlexFEC) into the |
| 40 | // internal buffer, and sends the received packets to the erasure code. |
| 41 | // All newly recovered packets are sent back through the callback. |
| 42 | virtual bool AddAndProcessReceivedPacket(const uint8_t* packet, |
| 43 | size_t packet_length) = 0; |
| 44 | |
| 45 | // Returns a counter describing the added and recovered packets. |
| 46 | virtual FecPacketCounter GetPacketCounter() const = 0; |
| 47 | }; |
| 48 | |
| 49 | } // namespace webrtc |
| 50 | |
| 51 | #endif // WEBRTC_MODULES_RTP_RTCP_INCLUDE_FLEXFEC_RECEIVER_H_ |