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 rtc::CriticalSection crit_; |
| 43 bool started_ GUARDED_BY(crit_); |
| 44 |
| 45 Config config_; |
| 46 RecoveredPacketReceiver* const recovered_packet_callback_; |
| 47 std::unique_ptr<FlexfecReceiver> receiver_; |
| 48 }; |
| 49 |
| 50 } // namespace internal |
| 51 |
| 52 } // namespace webrtc |
| 53 |
| 54 #endif // WEBRTC_CALL_FLEXFEC_RECEIVE_STREAM_H_ |
OLD | NEW |