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

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

Issue 1432963003: [Ozone] Extends the lifetime of VaapiWrapper (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
Index: content/common/gpu/media/vaapi_drm_picture.cc
diff --git a/content/common/gpu/media/vaapi_drm_picture.cc b/content/common/gpu/media/vaapi_drm_picture.cc
index 6751c9edd138efd65dbcb53286e3d80edf5ecd7e..59cf4fdc761100d35066abf4ca473556fe8d5d35 100644
--- a/content/common/gpu/media/vaapi_drm_picture.cc
+++ b/content/common/gpu/media/vaapi_drm_picture.cc
@@ -8,7 +8,6 @@
#include "content/common/gpu/media/vaapi_wrapper.h"
#include "third_party/libva/va/drm/va_drm.h"
#include "third_party/libva/va/va.h"
-#include "third_party/libva/va/va_drmcommon.h"
#include "ui/gfx/gpu_memory_buffer.h"
#include "ui/gl/gl_bindings.h"
#include "ui/gl/gl_image_ozone_native_pixmap.h"
@@ -22,45 +21,19 @@ namespace {
// to BGRX_8888.
const gfx::BufferFormat kPictureForGLImageFormat = gfx::BufferFormat::BGRX_8888;
-uint32_t BufferFormatToVAFourCC(gfx::BufferFormat fmt) {
- switch (fmt) {
- case gfx::BufferFormat::BGRX_8888:
- return VA_FOURCC_BGRX;
- case gfx::BufferFormat::UYVY_422:
- return VA_FOURCC_UYVY;
- default:
- NOTREACHED();
- return 0;
- }
-}
-
-uint32_t BufferFormatToVARTFormat(gfx::BufferFormat fmt) {
- switch (fmt) {
- case gfx::BufferFormat::UYVY_422:
- return VA_RT_FORMAT_YUV422;
- case gfx::BufferFormat::BGRX_8888:
- return VA_RT_FORMAT_RGB32;
- default:
- NOTREACHED();
- return 0;
- }
-}
-
} // namespace
namespace content {
VaapiDrmPicture::VaapiDrmPicture(
- VaapiWrapper* vaapi_wrapper,
+ const scoped_refptr<VaapiWrapper>& vaapi_wrapper,
const base::Callback<bool(void)>& make_context_current,
int32 picture_buffer_id,
uint32 texture_id,
const gfx::Size& size)
: VaapiPicture(picture_buffer_id, texture_id, size),
vaapi_wrapper_(vaapi_wrapper),
- make_context_current_(make_context_current),
- weak_this_factory_(this) {
-}
+ make_context_current_(make_context_current) {}
VaapiDrmPicture::~VaapiDrmPicture() {
if (gl_image_ && make_context_current_.Run()) {
@@ -71,89 +44,28 @@ VaapiDrmPicture::~VaapiDrmPicture() {
}
}
-scoped_refptr<VASurface> VaapiDrmPicture::CreateVASurfaceForPixmap(
- scoped_refptr<ui::NativePixmap> pixmap,
- gfx::Size pixmap_size) {
- // Get the dmabuf of the created buffer.
- int dmabuf_fd = pixmap->GetDmaBufFd();
- if (dmabuf_fd < 0) {
- LOG(ERROR) << "Failed to get dmabuf from an Ozone NativePixmap";
- return nullptr;
- }
- int dmabuf_pitch = pixmap->GetDmaBufPitch();
-
- // Create a VASurface out of the created buffer using the dmabuf.
- VASurfaceAttribExternalBuffers va_attrib_extbuf;
- memset(&va_attrib_extbuf, 0, sizeof(va_attrib_extbuf));
- va_attrib_extbuf.pixel_format =
- BufferFormatToVAFourCC(pixmap->GetBufferFormat());
- va_attrib_extbuf.width = pixmap_size.width();
- va_attrib_extbuf.height = pixmap_size.height();
- va_attrib_extbuf.data_size = pixmap_size.height() * dmabuf_pitch;
- va_attrib_extbuf.num_planes = 1;
- va_attrib_extbuf.pitches[0] = dmabuf_pitch;
- va_attrib_extbuf.offsets[0] = 0;
- va_attrib_extbuf.buffers = reinterpret_cast<unsigned long*>(&dmabuf_fd);
- va_attrib_extbuf.num_buffers = 1;
- va_attrib_extbuf.flags = 0;
- va_attrib_extbuf.private_data = NULL;
-
- std::vector<VASurfaceAttrib> va_attribs;
- va_attribs.resize(2);
-
- va_attribs[0].type = VASurfaceAttribMemoryType;
- va_attribs[0].flags = VA_SURFACE_ATTRIB_SETTABLE;
- va_attribs[0].value.type = VAGenericValueTypeInteger;
- va_attribs[0].value.value.i = VA_SURFACE_ATTRIB_MEM_TYPE_DRM_PRIME;
-
- va_attribs[1].type = VASurfaceAttribExternalBufferDescriptor;
- va_attribs[1].flags = VA_SURFACE_ATTRIB_SETTABLE;
- va_attribs[1].value.type = VAGenericValueTypePointer;
- va_attribs[1].value.value.p = &va_attrib_extbuf;
-
- scoped_refptr<VASurface> va_surface = vaapi_wrapper_->CreateUnownedSurface(
- BufferFormatToVARTFormat(pixmap->GetBufferFormat()), pixmap_size,
- va_attribs);
- if (!va_surface) {
- LOG(ERROR) << "Failed to create VASurface for an Ozone NativePixmap";
- return nullptr;
- }
-
- return va_surface;
-}
-
-scoped_refptr<ui::NativePixmap> VaapiDrmPicture::CreateNativePixmap(
- gfx::Size size,
- gfx::BufferFormat format) {
- ui::OzonePlatform* platform = ui::OzonePlatform::GetInstance();
- ui::SurfaceFactoryOzone* factory = platform->GetSurfaceFactoryOzone();
-
- // Create a buffer from Ozone.
- return factory->CreateNativePixmap(gfx::kNullAcceleratedWidget, size, format,
- gfx::BufferUsage::SCANOUT);
-}
-
bool VaapiDrmPicture::Initialize() {
// We want to create a VASurface and an EGLImage out of the same
// memory buffer, so we can output decoded pictures to it using
// VAAPI and also use it to paint with GL.
- pixmap_ = CreateNativePixmap(size(), kPictureForGLImageFormat);
+ ui::OzonePlatform* platform = ui::OzonePlatform::GetInstance();
+ ui::SurfaceFactoryOzone* factory = platform->GetSurfaceFactoryOzone();
+ pixmap_ = factory->CreateNativePixmap(gfx::kNullAcceleratedWidget, size(),
+ kPictureForGLImageFormat,
+ gfx::BufferUsage::SCANOUT);
if (!pixmap_) {
LOG(ERROR) << "Failed creating an Ozone NativePixmap";
return false;
}
- va_surface_ = CreateVASurfaceForPixmap(pixmap_, size());
+ va_surface_ = vaapi_wrapper_->CreateVASurfaceForPixmap(pixmap_);
if (!va_surface_) {
LOG(ERROR) << "Failed creating VASurface for NativePixmap";
return false;
}
- // Weak pointers can only bind to methods without return values,
- // hence we cannot bind ProcessPixmap here. Instead we use a
- // static function to solve this problem.
- pixmap_->SetProcessingCallback(base::Bind(&VaapiDrmPicture::CallProcessPixmap,
- weak_this_factory_.GetWeakPtr()));
+ pixmap_->SetProcessingCallback(
+ base::Bind(&VaapiWrapper::ProcessPixmap, vaapi_wrapper_));
if (!make_context_current_.Run())
return false;
@@ -180,54 +92,6 @@ bool VaapiDrmPicture::DownloadFromSurface(
return vaapi_wrapper_->BlitSurface(va_surface, va_surface_);
}
-// static
-scoped_refptr<ui::NativePixmap> VaapiDrmPicture::CallProcessPixmap(
- base::WeakPtr<VaapiDrmPicture> weak_ptr,
- gfx::Size target_size,
- gfx::BufferFormat target_format) {
- if (!weak_ptr.get()) {
- LOG(ERROR) << "Failed processing NativePixmap as processing "
- "unit(VaapiDrmPicture) is deleted";
- return nullptr;
- }
- return weak_ptr->ProcessPixmap(target_size, target_format);
-}
-
-scoped_refptr<ui::NativePixmap> VaapiDrmPicture::ProcessPixmap(
- gfx::Size target_size,
- gfx::BufferFormat target_format) {
- if (!processed_va_surface_.get() ||
- processed_va_surface_->size() != target_size ||
- processed_va_surface_->format() !=
- BufferFormatToVARTFormat(target_format)) {
- processed_pixmap_ = CreateNativePixmap(target_size, target_format);
- if (!processed_pixmap_) {
- LOG(ERROR) << "Failed creating an Ozone NativePixmap for processing";
- processed_va_surface_ = nullptr;
- return nullptr;
- }
- processed_va_surface_ =
- CreateVASurfaceForPixmap(processed_pixmap_, target_size);
- if (!processed_va_surface_) {
- LOG(ERROR) << "Failed creating VA Surface for pixmap";
- processed_pixmap_ = nullptr;
- return nullptr;
- }
- }
-
- DCHECK(processed_pixmap_);
- bool vpp_result =
- vaapi_wrapper_->BlitSurface(va_surface_, processed_va_surface_);
- if (!vpp_result) {
- LOG(ERROR) << "Failed scaling NativePixmap";
- processed_pixmap_ = nullptr;
- processed_va_surface_ = nullptr;
- return nullptr;
- }
-
- return processed_pixmap_;
-}
-
scoped_refptr<gl::GLImage> VaapiDrmPicture::GetImageToBind() {
return gl_image_;
}
« no previous file with comments | « content/common/gpu/media/vaapi_drm_picture.h ('k') | content/common/gpu/media/vaapi_jpeg_decode_accelerator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698