OLD | NEW |
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_CALL_FLEXFEC_RECEIVE_STREAM_H_ | 11 #ifndef WEBRTC_CALL_FLEXFEC_RECEIVE_STREAM_H_ |
12 #define WEBRTC_CALL_FLEXFEC_RECEIVE_STREAM_H_ | 12 #define WEBRTC_CALL_FLEXFEC_RECEIVE_STREAM_H_ |
13 | 13 |
14 #include <memory> | 14 #include <memory> |
15 #include <string> | 15 #include <string> |
16 | 16 |
17 #include "webrtc/api/call/flexfec_receive_stream.h" | 17 #include "webrtc/api/call/flexfec_receive_stream.h" |
18 #include "webrtc/base/basictypes.h" | 18 #include "webrtc/base/basictypes.h" |
19 #include "webrtc/base/criticalsection.h" | 19 #include "webrtc/base/criticalsection.h" |
20 #include "webrtc/modules/rtp_rtcp/include/flexfec_receiver.h" | 20 #include "webrtc/modules/rtp_rtcp/include/flexfec_receiver.h" |
| 21 #include "webrtc/modules/rtp_rtcp/source/rtp_packet_received.h" |
21 | 22 |
22 namespace webrtc { | 23 namespace webrtc { |
23 | 24 |
24 namespace internal { | 25 namespace internal { |
25 | 26 |
26 class FlexfecReceiveStream : public webrtc::FlexfecReceiveStream { | 27 class FlexfecReceiveStream : public webrtc::FlexfecReceiveStream { |
27 public: | 28 public: |
28 FlexfecReceiveStream(const Config& config, | 29 FlexfecReceiveStream(const Config& config, |
29 RecoveredPacketReceiver* recovered_packet_callback); | 30 RecoveredPacketReceiver* recovered_packet_receiver); |
30 ~FlexfecReceiveStream(); | 31 ~FlexfecReceiveStream(); |
31 | 32 |
32 bool AddAndProcessReceivedPacket(const uint8_t* packet, size_t length); | 33 const Config& GetConfig() const { return config_; } |
| 34 |
| 35 bool AddAndProcessReceivedPacket(RtpPacketReceived packet); |
33 | 36 |
34 // Implements webrtc::FlexfecReceiveStream. | 37 // Implements webrtc::FlexfecReceiveStream. |
35 void Start() override; | 38 void Start() override; |
36 void Stop() override; | 39 void Stop() override; |
37 Stats GetStats() const override; | 40 Stats GetStats() const override; |
38 | 41 |
39 private: | 42 private: |
40 rtc::CriticalSection crit_; | 43 rtc::CriticalSection crit_; |
41 bool started_ GUARDED_BY(crit_); | 44 bool started_ GUARDED_BY(crit_); |
42 | 45 |
43 const Config config_; | 46 const Config config_; |
44 const std::unique_ptr<FlexfecReceiver> receiver_; | 47 const std::unique_ptr<FlexfecReceiver> receiver_; |
45 }; | 48 }; |
46 | 49 |
47 } // namespace internal | 50 } // namespace internal |
48 | 51 |
49 } // namespace webrtc | 52 } // namespace webrtc |
50 | 53 |
51 #endif // WEBRTC_CALL_FLEXFEC_RECEIVE_STREAM_H_ | 54 #endif // WEBRTC_CALL_FLEXFEC_RECEIVE_STREAM_H_ |
OLD | NEW |