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

Unified Diff: webrtc/audio/audio_receive_stream.h

Issue 2886993005: Introduce RtpStreamReceiver and RtpStreamReceiverControllerInterface. (Closed)
Patch Set: Created 3 years, 7 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 | « no previous file | webrtc/audio/audio_receive_stream.cc » ('j') | webrtc/audio/audio_receive_stream.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/audio/audio_receive_stream.h
diff --git a/webrtc/audio/audio_receive_stream.h b/webrtc/audio/audio_receive_stream.h
index d0b5a4d1cbf1464fb69ac5f916ad56a88b6fef19..852317ce2806b365931f55b950d1e8b4350861fc 100644
--- a/webrtc/audio/audio_receive_stream.h
+++ b/webrtc/audio/audio_receive_stream.h
@@ -26,6 +26,8 @@ namespace webrtc {
class PacketRouter;
class RtcEventLog;
class RtpPacketReceived;
+class RtpTransportControllerReceiveInterface;
+class RtpTransportReceiver;
namespace voe {
class ChannelProxy;
@@ -39,7 +41,8 @@ class AudioReceiveStream final : public webrtc::AudioReceiveStream,
public Syncable,
public RtpPacketSinkInterface {
public:
- AudioReceiveStream(PacketRouter* packet_router,
+ AudioReceiveStream(RtpTransportControllerReceiveInterface* transport,
+ PacketRouter* packet_router,
const webrtc::AudioReceiveStream::Config& config,
const rtc::scoped_refptr<webrtc::AudioState>& audio_state,
webrtc::RtcEventLog* event_log);
@@ -87,6 +90,8 @@ class AudioReceiveStream final : public webrtc::AudioReceiveStream,
bool playing_ ACCESS_ON(worker_thread_checker_) = false;
+ std::unique_ptr<RtpTransportReceiver> rtp_transport_receiver_;
+
RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(AudioReceiveStream);
};
} // namespace internal
« no previous file with comments | « no previous file | webrtc/audio/audio_receive_stream.cc » ('j') | webrtc/audio/audio_receive_stream.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698