2017-06-21 01:05:22 -07:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2017 The WebRTC project authors. All Rights Reserved.
|
|
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by a BSD-style license
|
|
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
|
|
|
|
* in the file PATENTS. All contributing project authors may
|
|
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
|
|
|
*/
|
2017-09-15 06:47:31 +02:00
|
|
|
#ifndef CALL_RTP_STREAM_RECEIVER_CONTROLLER_INTERFACE_H_
|
|
|
|
|
#define CALL_RTP_STREAM_RECEIVER_CONTROLLER_INTERFACE_H_
|
2017-06-21 01:05:22 -07:00
|
|
|
|
2024-09-02 20:55:52 +00:00
|
|
|
#include <cstdint>
|
2017-06-21 01:05:22 -07:00
|
|
|
#include <memory>
|
|
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#include "call/rtp_packet_sink_interface.h"
|
2017-06-21 01:05:22 -07:00
|
|
|
|
|
|
|
|
namespace webrtc {
|
|
|
|
|
|
|
|
|
|
// An RtpStreamReceiver is responsible for the rtp-specific but
|
|
|
|
|
// media-independent state needed for receiving an RTP stream.
|
2022-07-05 15:44:48 +02:00
|
|
|
// TODO(bugs.webrtc.org/7135): Currently, only owns the association between ssrc
|
|
|
|
|
// and the stream's RtpPacketSinkInterface. Ownership of corresponding objects
|
|
|
|
|
// from modules/rtp_rtcp/ should move to this class (or rather, the
|
|
|
|
|
// corresponding implementation class). We should add methods for getting rtp
|
|
|
|
|
// receive stats, and for sending RTCP messages related to the receive stream.
|
2017-06-21 01:05:22 -07:00
|
|
|
class RtpStreamReceiverInterface {
|
|
|
|
|
public:
|
|
|
|
|
virtual ~RtpStreamReceiverInterface() {}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// This class acts as a factory for RtpStreamReceiver objects.
|
|
|
|
|
class RtpStreamReceiverControllerInterface {
|
|
|
|
|
public:
|
|
|
|
|
virtual ~RtpStreamReceiverControllerInterface() {}
|
|
|
|
|
|
|
|
|
|
virtual std::unique_ptr<RtpStreamReceiverInterface> CreateReceiver(
|
|
|
|
|
uint32_t ssrc,
|
|
|
|
|
RtpPacketSinkInterface* sink) = 0;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace webrtc
|
|
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#endif // CALL_RTP_STREAM_RECEIVER_CONTROLLER_INTERFACE_H_
|