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

Unified Diff: content/common/gpu/media/vaapi_drm_picture.h

Issue 490233002: VaapiVideoAccelerator: make Vaapi accelerator work with ozone (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase on ToT Created 6 years 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 | « content/common/gpu/media/va_x11.sigs ('k') | content/common/gpu/media/vaapi_drm_picture.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/gpu/media/vaapi_drm_picture.h
diff --git a/content/common/gpu/media/vaapi_drm_picture.h b/content/common/gpu/media/vaapi_drm_picture.h
new file mode 100644
index 0000000000000000000000000000000000000000..5f8913eb36d4c78130ba2c138a7ce8d77c3edc69
--- /dev/null
+++ b/content/common/gpu/media/vaapi_drm_picture.h
@@ -0,0 +1,57 @@
+// Copyright 2014 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.
+//
+// This file contains an implementation of picture allocation for the
+// Ozone window system used by VaapiVideoDecodeAccelerator to produce
+// output pictures.
+
+#ifndef CONTENT_COMMON_GPU_MEDIA_VAAPI_DRM_PICTURE_H_
+#define CONTENT_COMMON_GPU_MEDIA_VAAPI_DRM_PICTURE_H_
+
+#include "base/callback.h"
+#include "base/memory/ref_counted.h"
+#include "content/common/gpu/media/vaapi_picture.h"
+#include "ui/gfx/size.h"
+
+namespace gfx {
+class GLImageLinuxDMABuffer;
+}
+
+namespace ui {
+class NativePixmap;
+}
+
+namespace content {
+
+class VaapiWrapper;
+
+// Implementation of VaapiPicture for the ozone/drm backed chromium.
+class VaapiDrmPicture : public VaapiPicture {
+ public:
+ VaapiDrmPicture(scoped_refptr<VaapiWrapper>& vaapi_wrapper,
Pawel Osciak 2014/12/10 01:15:40 All these still need consts please.
+ const base::Callback<bool(void)> make_context_current,
+ int32 picture_buffer_id,
+ uint32 texture_id,
+ const gfx::Size& size);
+
+ virtual ~VaapiDrmPicture();
+
+ bool Initialize() override;
+
+ virtual bool DownloadFromSurface(
+ const scoped_refptr<VASurface>& va_surface) override;
+
+ private:
+ scoped_refptr<VaapiWrapper> vaapi_wrapper_;
+ base::Callback<bool(void)> make_context_current_;
+ scoped_refptr<VASurface> va_surface_;
+ scoped_refptr<ui::NativePixmap> pixmap_;
+ scoped_refptr<gfx::GLImageLinuxDMABuffer> egl_image_;
+
+ DISALLOW_COPY_AND_ASSIGN(VaapiDrmPicture);
+};
+
+} // namespace content
+
+#endif // CONTENT_COMMON_GPU_MEDIA_VAAPI_DRM_PICTURE_H_
« no previous file with comments | « content/common/gpu/media/va_x11.sigs ('k') | content/common/gpu/media/vaapi_drm_picture.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698