mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-15 14:50:39 +01:00
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:
parent
c0a9f35248
commit
6fb674ea5a
3 changed files with 4 additions and 4 deletions
|
@ -27,7 +27,7 @@
|
||||||
namespace webrtc {
|
namespace webrtc {
|
||||||
class AudioSinkInterface;
|
class AudioSinkInterface;
|
||||||
|
|
||||||
class AudioReceiveStream : public MediaReceiveStream {
|
class AudioReceiveStream : public MediaReceiveStreamInterface {
|
||||||
public:
|
public:
|
||||||
struct Stats {
|
struct Stats {
|
||||||
Stats();
|
Stats();
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
namespace webrtc {
|
namespace webrtc {
|
||||||
|
|
||||||
// Common base interface for MediaReceiveStream based classes and
|
// Common base interface for MediaReceiveStreamInterface based classes and
|
||||||
// FlexfecReceiveStream.
|
// FlexfecReceiveStream.
|
||||||
class ReceiveStreamInterface {
|
class ReceiveStreamInterface {
|
||||||
public:
|
public:
|
||||||
|
@ -72,7 +72,7 @@ class ReceiveStreamInterface {
|
||||||
};
|
};
|
||||||
|
|
||||||
// Either an audio or video receive stream.
|
// Either an audio or video receive stream.
|
||||||
class MediaReceiveStream : public ReceiveStreamInterface {
|
class MediaReceiveStreamInterface : public ReceiveStreamInterface {
|
||||||
public:
|
public:
|
||||||
// Starts stream activity.
|
// Starts stream activity.
|
||||||
// When a stream is active, it can receive, process and deliver packets.
|
// When a stream is active, it can receive, process and deliver packets.
|
||||||
|
|
|
@ -39,7 +39,7 @@ namespace webrtc {
|
||||||
class RtpPacketSinkInterface;
|
class RtpPacketSinkInterface;
|
||||||
class VideoDecoderFactory;
|
class VideoDecoderFactory;
|
||||||
|
|
||||||
class VideoReceiveStream : public MediaReceiveStream {
|
class VideoReceiveStream : public MediaReceiveStreamInterface {
|
||||||
public:
|
public:
|
||||||
// Class for handling moving in/out recording state.
|
// Class for handling moving in/out recording state.
|
||||||
struct RecordingState {
|
struct RecordingState {
|
||||||
|
|
Loading…
Reference in a new issue