Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

Unified Diff: webrtc/video/audio_receive_stream.h

Issue 1226123005: Define Stream base classes (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Code review follow-up 3 Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/stream.h ('k') | webrtc/video/audio_receive_stream.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/video/audio_receive_stream.h
diff --git a/webrtc/video/audio_receive_stream.h b/webrtc/video/audio_receive_stream.h
index 9935117d0f565dc1a7698a9d587146765ba6ae98..08d929adb32620904cc8eafc054f402399a4a510 100644
--- a/webrtc/video/audio_receive_stream.h
+++ b/webrtc/video/audio_receive_stream.h
@@ -26,11 +26,16 @@ class AudioReceiveStream : public webrtc::AudioReceiveStream {
const webrtc::AudioReceiveStream::Config& config);
~AudioReceiveStream() override {}
+ // webrtc::ReceiveStream implementation.
+ void Start() override;
+ void Stop() override;
+ void SignalNetworkState(NetworkState state) override;
+ bool DeliverRtcp(const uint8_t* packet, size_t length) override;
+ bool DeliverRtp(const uint8_t* packet, size_t length) override;
+
+ // webrtc::AudioReceiveStream implementation.
webrtc::AudioReceiveStream::Stats GetStats() const override;
- bool DeliverRtcp(const uint8_t* packet, size_t length);
- bool DeliverRtp(const uint8_t* packet, size_t length);
-
const webrtc::AudioReceiveStream::Config& config() const {
return config_;
}
« no previous file with comments | « webrtc/stream.h ('k') | webrtc/video/audio_receive_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698