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

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

Issue 490233002: VaapiVideoAccelerator: make Vaapi accelerator work with ozone (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More VaapiPictureProviderDrm cleanup Created 6 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: content/common/gpu/media/vaapi_picture_provider_drm.h
diff --git a/content/common/gpu/media/vaapi_picture_provider_drm.h b/content/common/gpu/media/vaapi_picture_provider_drm.h
new file mode 100644
index 0000000000000000000000000000000000000000..4188859402e84823a48af47949a65709b07c1eeb
--- /dev/null
+++ b/content/common/gpu/media/vaapi_picture_provider_drm.h
@@ -0,0 +1,45 @@
+// 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 VaapiPictureProvider to produce output
+// pictures.
+
+#ifndef CONTENT_COMMON_GPU_MEDIA_VAAPI_PICTURE_PROVIDER_DRM_H_
+#define CONTENT_COMMON_GPU_MEDIA_VAAPI_PICTURE_PROVIDER_DRM_H_
+
+#include "base/callback.h"
+#include "content/common/gpu/media/vaapi_picture_provider.h"
+#include "third_party/libva/va/va.h"
+#include "ui/gfx/size.h"
+
+namespace content {
+
+class VaapiWrapper;
+
+class DrmVaapiPictureProvider : public VaapiPictureProvider {
+ public:
+ DrmVaapiPictureProvider(
+ scoped_refptr<VaapiWrapper> vaapi_wrapper,
+ const base::Callback<bool(void)> make_context_current);
+ virtual ~DrmVaapiPictureProvider();
+
+ virtual linked_ptr<VaapiPictureProvider::Picture> CreatePicture(
+ int32 picture_buffer_id,
+ uint32 texture_id,
+ const gfx::Size& size) OVERRIDE;
+
+ private:
+ virtual bool Initialize() OVERRIDE;
+
+ base::Callback<bool(void)> make_context_current_;
+
+ scoped_refptr<VaapiWrapper> vaapi_wrapper_;
+
+ DISALLOW_COPY_AND_ASSIGN(DrmVaapiPictureProvider);
+};
+
+} // namespace content
+
+#endif // CONTENT_COMMON_GPU_MEDIA_VAAPI_PICTURE_PROVIDER_DRM_H_

Powered by Google App Engine
This is Rietveld 408576698