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

Unified Diff: media/remoting/remoting_controller.h

Issue 2406483002: WIP - Add EME (Closed)
Patch Set: Add EME. Created 4 years, 2 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: media/remoting/remoting_controller.h
diff --git a/media/remoting/remoting_controller.h b/media/remoting/remoting_controller.h
new file mode 100644
index 0000000000000000000000000000000000000000..8d1e3f1e4f700f77aa2646472d555012d0f7f1d5
--- /dev/null
+++ b/media/remoting/remoting_controller.h
@@ -0,0 +1,148 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef MEDIA_REMOTING_REMOTING_CONTROLLER_H_
+#define MEDIA_REMOTING_REMOTING_CONTROLLER_H_
+
+#include "base/callback.h"
+#include "base/memory/weak_ptr.h"
+#include "media/base/media_observer.h"
+#include "media/mojo/interfaces/remoting.mojom.h"
+#include "mojo/public/cpp/bindings/binding.h"
+
+namespace base {
+class SingleThreadTaskRunner;
+}
+
+namespace media {
+struct PipelineMetadata;
+}
+
+// This class does the following:
miu 2016/10/08 01:06:16 This comment should be next to the class declarati
xjz 2016/10/20 21:25:28 Done.
+// 1) Sends/Receives messages from/to Remoter;
+// 2) Monitors player events as a MediaObserver;
+// 3) May trigger the switch of the media renderer between local playback
+// and remoting.
+//
+namespace media {
+
+class RemotingController final : public MediaObserver,
miu 2016/10/08 01:06:16 I think you should consider splitting this class u
xjz 2016/10/20 21:25:28 Done.
+ public mojom::RemotingSource {
+ public:
+ RemotingController(mojom::RemotingSourceRequest source_request,
+ mojom::RemoterPtr remoter);
+ ~RemotingController() override;
+
+ // RemotingSource implementations.
+ void OnSinkAvailable() override;
+ void OnSinkGone() override;
+ void OnStarted() override;
+ void OnStartFailed(mojom::RemotingStartFailReason reason) override;
+ void OnMessageFromSink(const std::vector<uint8_t>& message) override;
+ void OnStopped(mojom::RemotingStopReason reason) override;
+
+ // MediaObserver implementations.
+ // This is called when the video element or its ancestor enters full screen.
+ // We currently use this as an indicator for immersive playback. May add other
+ // criteria (e.g. the actual display width/height of the video element) in
+ // future.
+ void OnEnteredFullscreen() override;
+ void OnExitedFullscreen() override;
+ void OnSetCdm(CdmContext* cdm_context) override;
+ void OnMetadataChanged(const PipelineMetadata& metadata) override;
+
+ using SwitchRendererCallback = base::Callback<void()>;
+ void SetSwitchRendererCallback(const SwitchRendererCallback& cb);
+
+ base::WeakPtr<RemotingController> GetWeakPtr() {
+ return weak_factory_.GetWeakPtr();
+ }
+
+ // The callback used to tell which CDM should be created.
miu 2016/10/08 01:06:16 This comment isn't really necessary. But, the meth
xjz 2016/10/20 21:25:28 Done.
+ using CdmCheckCallback = base::Callback<void(bool is_remoting)>;
+ void ShouldCreateRemotingCdm(const CdmCheckCallback& cb);
+
+ bool is_remoting() const {
+ DCHECK(task_runner_->BelongsToCurrentThread());
+
+ if (cdm_remoting_controller_)
+ return cdm_remoting_controller_->is_remoting();
+ return is_remoting_;
+ }
+
+ bool is_remoting_failed() const {
+ DCHECK(task_runner_->BelongsToCurrentThread());
+
+ if (cdm_remoting_controller_)
+ return cdm_remoting_controller_->is_remoting_failed();
+
+ // Always false for non-encrypted contents.
+ return false;
miu 2016/10/08 01:06:16 If this is the RemotingController owned by the CDM
xjz 2016/10/20 21:25:28 Not applicable.
+ }
+
+ private:
+ bool IsVideoCodecSupported();
+ bool IsAudioCodecSupported();
+
+ // Helper to decide whether to enter or leave Remoting mode.
+ bool ShouldBeRemoting();
+
+ // Determines whether to enter or leave Remoting mode and switches if
+ // necessary.
+ void UpdateAndMaybeSwitch();
+
+ // Indicates if this media element or its ancestor enters full screen.
+ bool is_fullscreen_ = false;
+
+ // Indicates the remoting sink availablity.
+ bool is_sink_available_ = false;
+
+ // Indicates if remoting is started.
+ bool is_remoting_ = false;
miu 2016/10/08 01:06:16 This is now "sort of" true because it will be fals
xjz 2016/10/20 21:25:28 Not applicable.
+
+ // Indicates whether audio or video is encrypted.
+ bool is_encrypted_ = false;
+
+ // Indicates if remoting cdm is created.
+ bool is_remoting_cdm_ = false;
miu 2016/10/08 01:06:16 This isn't necessary, because this can always be d
xjz 2016/10/20 21:25:28 Not applicable.
+
+ // Indicates that remoting was stopped after CDM is created remotely. In this
miu 2016/10/08 01:06:16 Suggested wording: // Indicates that the video st
xjz 2016/10/20 21:25:28 Add this comment to RemotingSessionState::SESSION_
+ // case, local playing back can't continue without reloading the page.
+ bool is_remoting_failed_ = false;
miu 2016/10/08 01:06:16 Actually, do you need this bool? Wouldn't it alway
miu 2016/10/08 01:06:16 naming: How about has_terminated_permanently_.
xjz 2016/10/20 21:25:28 Not applicable.
xjz 2016/10/20 21:25:28 Not applicable.
+
+ // Current audio/video config.
+ VideoDecoderConfig video_decoder_config_;
+ AudioDecoderConfig audio_decoder_config_;
+ bool has_audio_ = false;
+ bool has_video_ = false;
+
+ // The callback to switch the media renderer.
+ SwitchRendererCallback switch_renderer_cb_;
+
+ mojo::Binding<mojom::RemotingSource> binding_;
+ mojom::RemoterPtr remoter_;
+
+ // TODO(xjz): Add a media thread task runner for the received RPC messages for
+ // remoting media renderer in the up-coming change.
+ const scoped_refptr<base::SingleThreadTaskRunner> task_runner_;
+
+ // The callback for checking whether remoting CDM should be created.
+ CdmCheckCallback cdm_check_cb_;
miu 2016/10/08 01:06:16 It seems like this is a "run once" callback. Is th
xjz 2016/10/20 21:25:28 Done.
+
+ // This is the RemotingController that was created when remoting CDM was
+ // created. It was set when OnSetCdm() is called. After it is set, the
+ // |switch_renderer_cb_| is passed to it, and the current object is only used
+ // as a proxy to pass |metadata_| and the query of |is_remoting_| to it.
+ std::unique_ptr<RemotingController> cdm_remoting_controller_;
miu 2016/10/08 01:06:16 It doesn't seem that you should be taking ownershi
xjz 2016/10/20 21:25:28 Not applicable.
+
+ PipelineMetadata metadata_;
+
+ base::WeakPtrFactory<RemotingController> weak_factory_;
+
+ DISALLOW_COPY_AND_ASSIGN(RemotingController);
+};
+
+} // namespace media
+
+#endif // MEDIA_REMOTING_REMOTING_CONTROLLER_H_

Powered by Google App Engine
This is Rietveld 408576698