| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2017 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2017 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 #ifndef WEBRTC_CALL_RTP_STREAM_RECEIVER_CONTROLLER_INTERFACE_H_ | 10 #ifndef WEBRTC_CALL_RTP_STREAM_RECEIVER_CONTROLLER_INTERFACE_H_ |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 | 31 |
| 32 // This class acts as a factory for RtpStreamReceiver objects. | 32 // This class acts as a factory for RtpStreamReceiver objects. |
| 33 class RtpStreamReceiverControllerInterface { | 33 class RtpStreamReceiverControllerInterface { |
| 34 public: | 34 public: |
| 35 virtual ~RtpStreamReceiverControllerInterface() {} | 35 virtual ~RtpStreamReceiverControllerInterface() {} |
| 36 | 36 |
| 37 virtual std::unique_ptr<RtpStreamReceiverInterface> CreateReceiver( | 37 virtual std::unique_ptr<RtpStreamReceiverInterface> CreateReceiver( |
| 38 uint32_t ssrc, | 38 uint32_t ssrc, |
| 39 RtpPacketSinkInterface* sink) = 0; | 39 RtpPacketSinkInterface* sink) = 0; |
| 40 // For registering additional sinks, needed for FlexFEC. | 40 // For registering additional sinks, needed for FlexFEC. |
| 41 virtual void AddSink(uint32_t ssrc, RtpPacketSinkInterface* sink) = 0; | 41 virtual bool AddSink(uint32_t ssrc, RtpPacketSinkInterface* sink) = 0; |
| 42 virtual size_t RemoveSink(const RtpPacketSinkInterface* sink) = 0; | 42 virtual size_t RemoveSink(const RtpPacketSinkInterface* sink) = 0; |
| 43 }; | 43 }; |
| 44 | 44 |
| 45 } // namespace webrtc | 45 } // namespace webrtc |
| 46 | 46 |
| 47 #endif // WEBRTC_CALL_RTP_STREAM_RECEIVER_CONTROLLER_INTERFACE_H_ | 47 #endif // WEBRTC_CALL_RTP_STREAM_RECEIVER_CONTROLLER_INTERFACE_H_ |
| OLD | NEW |