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

Unified Diff: media/mojo/services/mojo_video_decoder.h

Issue 1899363002: Finish plumbing MojoVideoDecoder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Windows needs some more headers, apaprently. Created 4 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 | « media/mojo/services/mojo_media_client.cc ('k') | media/mojo/services/mojo_video_decoder.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/mojo/services/mojo_video_decoder.h
diff --git a/media/mojo/services/mojo_video_decoder.h b/media/mojo/services/mojo_video_decoder.h
index 2002667c057a8ec1f5a4488abaf428e2cff689a9..017859b0a358b7f6e33da31196d0d7f44999e297 100644
--- a/media/mojo/services/mojo_video_decoder.h
+++ b/media/mojo/services/mojo_video_decoder.h
@@ -8,6 +8,9 @@
#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "media/base/video_decoder.h"
+#include "media/mojo/interfaces/video_decoder.mojom.h"
+#include "mojo/public/cpp/bindings/binding.h"
+#include "mojo/public/cpp/system/data_pipe.h"
namespace base {
class SingleThreadTaskRunner;
@@ -15,10 +18,18 @@ class SingleThreadTaskRunner;
namespace media {
-// A VideoDecoder that proxies to a mojom::VideoDecoder.
-class MojoVideoDecoder : public VideoDecoder {
+class GpuVideoAcceleratorFactories;
+
+// A VideoDecoder, for use in the renderer process, that proxies to a
+// mojom::VideoDecoder. It is assumed that the other side will be implemented by
+// MojoVideoDecoderService, running in the GPU process, and that the remote
+// decoder will be hardware accelerated.
+class MojoVideoDecoder final : public VideoDecoder,
+ public mojom::VideoDecoderClient {
public:
- MojoVideoDecoder();
+ MojoVideoDecoder(scoped_refptr<base::SingleThreadTaskRunner> task_runner,
+ GpuVideoAcceleratorFactories* gpu_factories,
+ mojom::VideoDecoderPtr remote_decoder);
~MojoVideoDecoder() final;
// VideoDecoder implementation.
@@ -35,8 +46,34 @@ class MojoVideoDecoder : public VideoDecoder {
bool CanReadWithoutStalling() const final;
int GetMaxDecodeRequests() const final;
+ // mojom::VideoDecoderClient implementation.
+ void OnVideoFrameDecoded(mojom::VideoFramePtr frame) final;
+
private:
+ void OnInitializeDone(bool status);
+ void OnDecodeDone(mojom::DecodeStatus status);
+ void OnResetDone();
+
+ void BindRemoteDecoder();
+ void OnConnectionError();
+
scoped_refptr<base::SingleThreadTaskRunner> task_runner_;
+ GpuVideoAcceleratorFactories* gpu_factories_;
+
+ // Used to pass the remote decoder from the constructor (on the main thread)
+ // to Initialize() (on the media thread).
+ mojom::VideoDecoderPtrInfo remote_decoder_info_;
+
+ InitCB init_cb_;
+ OutputCB output_cb_;
+ DecodeCB decode_cb_;
+ base::Closure reset_cb_;
+
+ mojom::VideoDecoderPtr remote_decoder_;
+ mojo::ScopedDataPipeProducerHandle decoder_buffer_pipe_;
+ bool remote_decoder_bound_ = false;
+ bool has_connection_error_ = false;
+ mojo::Binding<VideoDecoderClient> binding_;
DISALLOW_COPY_AND_ASSIGN(MojoVideoDecoder);
};
« no previous file with comments | « media/mojo/services/mojo_media_client.cc ('k') | media/mojo/services/mojo_video_decoder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698