Rename MediaReceiveStream to MediaReceiveStreamInterface

Bug: webrtc:7484
Change-Id: I0bc4bc57e8c4450c503ae4d5a41f9bbe243b00e6
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/262768
Commit-Queue: Tomas Gunnarsson <tommi@webrtc.org>
Reviewed-by: Niels Moller <nisse@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#36947}
This commit is contained in:
Tommi 2022-05-18 09:34:06 +02:00 committed by WebRTC LUCI CQ
parent c0a9f35248
commit 6fb674ea5a
3 changed files with 4 additions and 4 deletions

View file

@ -27,7 +27,7 @@
namespace webrtc {
class AudioSinkInterface;
class AudioReceiveStream : public MediaReceiveStream {
class AudioReceiveStream : public MediaReceiveStreamInterface {
public:
struct Stats {
Stats();

View file

@ -22,7 +22,7 @@
namespace webrtc {
// Common base interface for MediaReceiveStream based classes and
// Common base interface for MediaReceiveStreamInterface based classes and
// FlexfecReceiveStream.
class ReceiveStreamInterface {
public:
@ -72,7 +72,7 @@ class ReceiveStreamInterface {
};
// Either an audio or video receive stream.
class MediaReceiveStream : public ReceiveStreamInterface {
class MediaReceiveStreamInterface : public ReceiveStreamInterface {
public:
// Starts stream activity.
// When a stream is active, it can receive, process and deliver packets.

View file

@ -39,7 +39,7 @@ namespace webrtc {
class RtpPacketSinkInterface;
class VideoDecoderFactory;
class VideoReceiveStream : public MediaReceiveStream {
class VideoReceiveStream : public MediaReceiveStreamInterface {
public:
// Class for handling moving in/out recording state.
struct RecordingState {