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

Unified Diff: chrome/browser/media/cast_transport_host_filter.h

Issue 2307653002: Adding CastRemotingSender for media remoting. (Closed)
Patch Set: Rebased. Created 4 years, 3 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
Index: chrome/browser/media/cast_transport_host_filter.h
diff --git a/chrome/browser/media/cast_transport_host_filter.h b/chrome/browser/media/cast_transport_host_filter.h
index 1769807a3b087367cdbe5c0688ec2b5383cd4c4d..db843952f3f64ce2842797e921128bd8698ea4eb 100644
--- a/chrome/browser/media/cast_transport_host_filter.h
+++ b/chrome/browser/media/cast_transport_host_filter.h
@@ -13,6 +13,7 @@
#include "base/macros.h"
#include "base/memory/weak_ptr.h"
#include "base/time/default_tick_clock.h"
+#include "chrome/browser/media/cast_remoting_sender.h"
#include "content/public/browser/browser_message_filter.h"
#include "media/cast/cast_sender.h"
#include "media/cast/logging/logging_defines.h"
@@ -40,8 +41,12 @@ class CastTransportHostFilter : public content::BrowserMessageFilter {
bool OnMessageReceived(const IPC::Message& message) override;
// Forwarding functions.
+ // For remoting RTP streams, calling this will create a CastRemotingSender for
+ // the stream, which will be automatically destroyed when the associated
+ // chanel is deleted.
void OnInitializeStream(int32_t channel_id,
const media::cast::CastTransportRtpConfig& config);
+
void OnInsertFrame(int32_t channel_id,
uint32_t ssrc,
const media::cast::EncodedFrame& frame);
@@ -93,6 +98,14 @@ class CastTransportHostFilter : public content::BrowserMessageFilter {
// remoting content.
std::unique_ptr<device::PowerSaveBlocker> power_save_blocker_;
+ // This map records all active remoting senders. It uses the unique RTP
+ // stream ID as the key.
+ IDMap<CastRemotingSender, IDMapOwnPointer> remoting_sender_map_;
+
+ // This map stores all active remoting streams for each channel. It uses the
+ // channel ID as the key.
+ std::multimap<int32_t, int32_t> stream_id_map_;
+
base::WeakPtrFactory<CastTransportHostFilter> weak_factory_;
DISALLOW_COPY_AND_ASSIGN(CastTransportHostFilter);

Powered by Google App Engine
This is Rietveld 408576698