blob: 8a99059ec5b197629ef55f86b7ca7077732206b8 [file] [log] [blame]
Tommi1c1f5402021-06-14 08:54:201/*
2 * Copyright (c) 2021 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 CALL_RECEIVE_STREAM_H_
12#define CALL_RECEIVE_STREAM_H_
13
14#include <vector>
15
16#include "api/crypto/frame_decryptor_interface.h"
17#include "api/frame_transformer_interface.h"
18#include "api/media_types.h"
19#include "api/scoped_refptr.h"
20#include "api/transport/rtp/rtp_source.h"
21
22namespace webrtc {
23
Tommi6fb674e2022-05-18 07:34:0624// Common base interface for MediaReceiveStreamInterface based classes and
Tommi1c1f5402021-06-14 08:54:2025// FlexfecReceiveStream.
Tommi0601db92022-05-18 07:18:3726class ReceiveStreamInterface {
Tommi1c1f5402021-06-14 08:54:2027 public:
28 // Receive-stream specific RTP settings.
Tommi7a15ff32022-05-09 18:54:0229 // TODO(tommi): This struct isn't needed at this level anymore. Move it closer
30 // to where it's used.
31 struct ReceiveStreamRtpConfig {
Tommi1c1f5402021-06-14 08:54:2032 // Synchronization source (stream identifier) to be received.
Tommid3500062021-06-14 17:39:4533 // This member will not change mid-stream and can be assumed to be const
34 // post initialization.
Tommi1c1f5402021-06-14 08:54:2035 uint32_t remote_ssrc = 0;
36
37 // Sender SSRC used for sending RTCP (such as receiver reports).
Tommid3500062021-06-14 17:39:4538 // This value may change mid-stream and must be done on the same thread
39 // that the value is read on (i.e. packet delivery).
Tommi1c1f5402021-06-14 08:54:2040 uint32_t local_ssrc = 0;
Tommi1c1f5402021-06-14 08:54:2041 };
42
Tommi1c1f5402021-06-14 08:54:2043 protected:
Tommi0601db92022-05-18 07:18:3744 virtual ~ReceiveStreamInterface() {}
Tommi1c1f5402021-06-14 08:54:2045};
46
47// Either an audio or video receive stream.
Tommi6fb674e2022-05-18 07:34:0648class MediaReceiveStreamInterface : public ReceiveStreamInterface {
Tommi1c1f5402021-06-14 08:54:2049 public:
50 // Starts stream activity.
51 // When a stream is active, it can receive, process and deliver packets.
52 virtual void Start() = 0;
53
54 // Stops stream activity. Must be called to match with a previous call to
55 // `Start()`. When a stream has been stopped, it won't receive, decode,
56 // process or deliver packets to downstream objects such as callback pointers
57 // set in the config struct.
58 virtual void Stop() = 0;
59
60 virtual void SetDepacketizerToDecoderFrameTransformer(
61 rtc::scoped_refptr<webrtc::FrameTransformerInterface>
62 frame_transformer) = 0;
63
64 virtual void SetFrameDecryptor(
65 rtc::scoped_refptr<webrtc::FrameDecryptorInterface> frame_decryptor) = 0;
66
67 virtual std::vector<RtpSource> GetSources() const = 0;
68};
69
Tommi1c1f5402021-06-14 08:54:2070} // namespace webrtc
71
72#endif // CALL_RECEIVE_STREAM_H_