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

Side by Side Diff: webrtc/call/flexfec_receive_stream.h

Issue 2535173008: Clean up FlexfecReceiveStream ctor signatures. (CL0) (Closed)
Patch Set: Rebase. Created 4 years 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/call/flexfec_receive_stream.cc » ('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_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 21
22 namespace webrtc { 22 namespace webrtc {
23 23
24 namespace internal { 24 namespace internal {
25 25
26 class FlexfecReceiveStream : public webrtc::FlexfecReceiveStream { 26 class FlexfecReceiveStream : public webrtc::FlexfecReceiveStream {
27 public: 27 public:
28 FlexfecReceiveStream(Config configuration, 28 FlexfecReceiveStream(const Config& config,
29 RecoveredPacketReceiver* recovered_packet_callback); 29 RecoveredPacketReceiver* recovered_packet_callback);
30 ~FlexfecReceiveStream(); 30 ~FlexfecReceiveStream();
31 31
32 const Config& config() const { return config_; }
33
34 bool AddAndProcessReceivedPacket(const uint8_t* packet, size_t length); 32 bool AddAndProcessReceivedPacket(const uint8_t* packet, size_t length);
35 33
36 // Implements webrtc::FlexfecReceiveStream. 34 // Implements webrtc::FlexfecReceiveStream.
37 void Start() override; 35 void Start() override;
38 void Stop() override; 36 void Stop() override;
39 Stats GetStats() const override; 37 Stats GetStats() const override;
40 38
41 private: 39 private:
42 rtc::CriticalSection crit_; 40 rtc::CriticalSection crit_;
43 bool started_ GUARDED_BY(crit_); 41 bool started_ GUARDED_BY(crit_);
44 42
45 const Config config_; 43 const Config config_;
46 const std::unique_ptr<FlexfecReceiver> receiver_; 44 const std::unique_ptr<FlexfecReceiver> receiver_;
47 }; 45 };
48 46
49 } // namespace internal 47 } // namespace internal
50 48
51 } // namespace webrtc 49 } // namespace webrtc
52 50
53 #endif // WEBRTC_CALL_FLEXFEC_RECEIVE_STREAM_H_ 51 #endif // WEBRTC_CALL_FLEXFEC_RECEIVE_STREAM_H_
OLDNEW
« no previous file with comments | « webrtc/call/call.cc ('k') | webrtc/call/flexfec_receive_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698