| Index: webrtc/call/flexfec_receive_stream_impl.h
|
| diff --git a/webrtc/call/flexfec_receive_stream_impl.h b/webrtc/call/flexfec_receive_stream_impl.h
|
| index 6a4eeae3e317e7f52cd1fdae5eec2bf3802a0bdf..681fc7f93417916b77382dbd302680e6451fb8d7 100644
|
| --- a/webrtc/call/flexfec_receive_stream_impl.h
|
| +++ b/webrtc/call/flexfec_receive_stream_impl.h
|
| @@ -15,7 +15,6 @@
|
|
|
| #include "webrtc/base/criticalsection.h"
|
| #include "webrtc/call/flexfec_receive_stream.h"
|
| -#include "webrtc/call/rtp_packet_sink_interface.h"
|
|
|
| namespace webrtc {
|
|
|
| @@ -29,8 +28,7 @@ class RtpRtcp;
|
| class RtpStreamReceiverControllerInterface;
|
| class RtpStreamReceiverInterface;
|
|
|
| -class FlexfecReceiveStreamImpl : public FlexfecReceiveStream,
|
| - public RtpPacketSinkInterface {
|
| +class FlexfecReceiveStreamImpl : public FlexfecReceiveStream {
|
| public:
|
| FlexfecReceiveStreamImpl(
|
| RtpStreamReceiverControllerInterface* receiver_controller,
|
| @@ -53,6 +51,8 @@ class FlexfecReceiveStreamImpl : public FlexfecReceiveStream,
|
| private:
|
| // Config.
|
| const Config config_;
|
| + // TODO(eladalon): This critical section, which only protects crit_, is odd.
|
| + // We should probably just use an atomic-bool.
|
| bool started_ GUARDED_BY(crit_);
|
| rtc::CriticalSection crit_;
|
|
|
|
|