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