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_IMPL_H_ | 11 #ifndef WEBRTC_CALL_FLEXFEC_RECEIVE_STREAM_IMPL_H_ |
12 #define WEBRTC_CALL_FLEXFEC_RECEIVE_STREAM_IMPL_H_ | 12 #define WEBRTC_CALL_FLEXFEC_RECEIVE_STREAM_IMPL_H_ |
13 | 13 |
14 #include <memory> | 14 #include <memory> |
15 | 15 |
16 #include "webrtc/base/criticalsection.h" | 16 #include "webrtc/base/criticalsection.h" |
17 #include "webrtc/call/flexfec_receive_stream.h" | 17 #include "webrtc/call/flexfec_receive_stream.h" |
| 18 #include "webrtc/call/rtp_demuxer.h" |
18 | 19 |
19 namespace webrtc { | 20 namespace webrtc { |
20 | 21 |
21 class FlexfecReceiver; | 22 class FlexfecReceiver; |
22 class ProcessThread; | 23 class ProcessThread; |
23 class ReceiveStatistics; | 24 class ReceiveStatistics; |
24 class RecoveredPacketReceiver; | 25 class RecoveredPacketReceiver; |
25 class RtcpRttStats; | 26 class RtcpRttStats; |
26 class RtpPacketReceived; | 27 class RtpPacketReceived; |
27 class RtpRtcp; | 28 class RtpRtcp; |
28 | 29 |
29 class FlexfecReceiveStreamImpl : public FlexfecReceiveStream { | 30 class FlexfecReceiveStreamImpl : public FlexfecReceiveStream, |
| 31 public RtpPacketSinkInterface { |
30 public: | 32 public: |
31 FlexfecReceiveStreamImpl(const Config& config, | 33 FlexfecReceiveStreamImpl(const Config& config, |
32 RecoveredPacketReceiver* recovered_packet_receiver, | 34 RecoveredPacketReceiver* recovered_packet_receiver, |
33 RtcpRttStats* rtt_stats, | 35 RtcpRttStats* rtt_stats, |
34 ProcessThread* process_thread); | 36 ProcessThread* process_thread); |
35 ~FlexfecReceiveStreamImpl() override; | 37 ~FlexfecReceiveStreamImpl() override; |
36 | 38 |
37 const Config& GetConfig() const { return config_; } | 39 const Config& GetConfig() const { return config_; } |
38 | 40 |
39 // TODO(nisse): Intended to be part of an RtpPacketReceiver interface. | 41 // RtpPacketSinkInterface. |
40 void OnRtpPacket(const RtpPacketReceived& packet); | 42 void OnRtpPacket(const RtpPacketReceived& packet) override; |
41 | 43 |
42 // Implements FlexfecReceiveStream. | 44 // Implements FlexfecReceiveStream. |
43 void Start() override; | 45 void Start() override; |
44 void Stop() override; | 46 void Stop() override; |
45 Stats GetStats() const override; | 47 Stats GetStats() const override; |
46 | 48 |
47 private: | 49 private: |
48 // Config. | 50 // Config. |
49 const Config config_; | 51 const Config config_; |
50 bool started_ GUARDED_BY(crit_); | 52 bool started_ GUARDED_BY(crit_); |
51 rtc::CriticalSection crit_; | 53 rtc::CriticalSection crit_; |
52 | 54 |
53 // Erasure code interfacing. | 55 // Erasure code interfacing. |
54 const std::unique_ptr<FlexfecReceiver> receiver_; | 56 const std::unique_ptr<FlexfecReceiver> receiver_; |
55 | 57 |
56 // RTCP reporting. | 58 // RTCP reporting. |
57 const std::unique_ptr<ReceiveStatistics> rtp_receive_statistics_; | 59 const std::unique_ptr<ReceiveStatistics> rtp_receive_statistics_; |
58 const std::unique_ptr<RtpRtcp> rtp_rtcp_; | 60 const std::unique_ptr<RtpRtcp> rtp_rtcp_; |
59 ProcessThread* process_thread_; | 61 ProcessThread* process_thread_; |
60 }; | 62 }; |
61 | 63 |
62 } // namespace webrtc | 64 } // namespace webrtc |
63 | 65 |
64 #endif // WEBRTC_CALL_FLEXFEC_RECEIVE_STREAM_IMPL_H_ | 66 #endif // WEBRTC_CALL_FLEXFEC_RECEIVE_STREAM_IMPL_H_ |
OLD | NEW |