Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(564)

Side by Side Diff: webrtc/modules/rtp_rtcp/include/flexfec_receiver.h

Issue 2390823009: Add path for recovered packets from internal::Call to RtpStreamReceiver. (Closed)
Patch Set: holmer@ feedback 1. Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/call/call.cc ('k') | webrtc/video/video_receive_stream.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 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 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 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 #ifndef WEBRTC_MODULES_RTP_RTCP_INCLUDE_FLEXFEC_RECEIVER_H_ 11 #ifndef WEBRTC_MODULES_RTP_RTCP_INCLUDE_FLEXFEC_RECEIVER_H_
12 #define WEBRTC_MODULES_RTP_RTCP_INCLUDE_FLEXFEC_RECEIVER_H_ 12 #define WEBRTC_MODULES_RTP_RTCP_INCLUDE_FLEXFEC_RECEIVER_H_
13 13
14 #include <memory> 14 #include <memory>
15 15
16 #include "webrtc/base/basictypes.h" 16 #include "webrtc/base/basictypes.h"
17 #include "webrtc/modules/rtp_rtcp/include/fec_receiver.h" 17 #include "webrtc/modules/rtp_rtcp/include/fec_receiver.h"
18 18
19 namespace webrtc { 19 namespace webrtc {
20 20
21 // Callback interface for packets recovered by FlexFEC. 21 // Callback interface for packets recovered by FlexFEC. The implementation
22 // should be able to demultiplex the recovered RTP packets based on SSRC.
22 class RecoveredPacketReceiver { 23 class RecoveredPacketReceiver {
23 public: 24 public:
24 virtual bool OnRecoveredPacket(const uint8_t* packet, size_t length) = 0; 25 virtual bool OnRecoveredPacket(const uint8_t* packet, size_t length) = 0;
25 26
26 protected: 27 protected:
27 virtual ~RecoveredPacketReceiver() = default; 28 virtual ~RecoveredPacketReceiver() = default;
28 }; 29 };
29 30
30 class FlexfecReceiver { 31 class FlexfecReceiver {
31 public: 32 public:
32 static std::unique_ptr<FlexfecReceiver> Create( 33 static std::unique_ptr<FlexfecReceiver> Create(
33 uint32_t flexfec_ssrc, 34 uint32_t flexfec_ssrc,
34 uint32_t protected_media_ssrc, 35 uint32_t protected_media_ssrc,
35 RecoveredPacketReceiver* callback); 36 RecoveredPacketReceiver* callback);
36 virtual ~FlexfecReceiver(); 37 virtual ~FlexfecReceiver();
37 38
38 // Inserts a received packet (can be either media or FlexFEC) into the 39 // Inserts a received packet (can be either media or FlexFEC) into the
39 // internal buffer, and sends the received packets to the erasure code. 40 // internal buffer, and sends the received packets to the erasure code.
40 // All newly recovered packets are sent back through the callback. 41 // All newly recovered packets are sent back through the callback.
41 virtual bool AddAndProcessReceivedPacket(const uint8_t* packet, 42 virtual bool AddAndProcessReceivedPacket(const uint8_t* packet,
42 size_t packet_length) = 0; 43 size_t packet_length) = 0;
43 44
44 // Returns a counter describing the added and recovered packets. 45 // Returns a counter describing the added and recovered packets.
45 virtual FecPacketCounter GetPacketCounter() const = 0; 46 virtual FecPacketCounter GetPacketCounter() const = 0;
46 }; 47 };
47 48
48 } // namespace webrtc 49 } // namespace webrtc
49 50
50 #endif // WEBRTC_MODULES_RTP_RTCP_INCLUDE_FLEXFEC_RECEIVER_H_ 51 #endif // WEBRTC_MODULES_RTP_RTCP_INCLUDE_FLEXFEC_RECEIVER_H_
OLDNEW
« no previous file with comments | « webrtc/call/call.cc ('k') | webrtc/video/video_receive_stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698