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

Side by Side Diff: content/common/gpu/media/gpu_video_decode_accelerator.cc

Issue 122233002: vda: Rename Exynos VDA to V4L2 VDA (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 11 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/common/gpu/media/gpu_video_decode_accelerator.h" 5 #include "content/common/gpu/media/gpu_video_decode_accelerator.h"
6 6
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/command_line.h" 10 #include "base/command_line.h"
11 #include "base/logging.h" 11 #include "base/logging.h"
12 #include "base/message_loop/message_loop_proxy.h" 12 #include "base/message_loop/message_loop_proxy.h"
13 #include "base/stl_util.h" 13 #include "base/stl_util.h"
14 14
15 #include "content/common/gpu/gpu_channel.h" 15 #include "content/common/gpu/gpu_channel.h"
16 #include "content/common/gpu/gpu_messages.h" 16 #include "content/common/gpu/gpu_messages.h"
17 #include "content/public/common/content_switches.h" 17 #include "content/public/common/content_switches.h"
18 #include "gpu/command_buffer/common/command_buffer.h" 18 #include "gpu/command_buffer/common/command_buffer.h"
19 #include "ipc/ipc_message_macros.h" 19 #include "ipc/ipc_message_macros.h"
20 #include "ipc/ipc_message_utils.h" 20 #include "ipc/ipc_message_utils.h"
21 #include "media/base/limits.h" 21 #include "media/base/limits.h"
22 #include "ui/gl/gl_context.h" 22 #include "ui/gl/gl_context.h"
23 #include "ui/gl/gl_surface_egl.h" 23 #include "ui/gl/gl_surface_egl.h"
24 24
25 #if defined(OS_WIN) 25 #if defined(OS_WIN)
26 #include "base/win/windows_version.h" 26 #include "base/win/windows_version.h"
27 #include "content/common/gpu/media/dxva_video_decode_accelerator.h" 27 #include "content/common/gpu/media/dxva_video_decode_accelerator.h"
28 #elif defined(OS_CHROMEOS) && defined(ARCH_CPU_ARMEL) && defined(USE_X11) 28 #elif defined(OS_CHROMEOS) && defined(ARCH_CPU_ARMEL) && defined(USE_X11)
29 #include "content/common/gpu/media/exynos_video_decode_accelerator.h" 29 #include "content/common/gpu/media/v4l2_video_decode_accelerator.h"
30 #elif defined(OS_CHROMEOS) && defined(ARCH_CPU_X86_FAMILY) && defined(USE_X11) 30 #elif defined(OS_CHROMEOS) && defined(ARCH_CPU_X86_FAMILY) && defined(USE_X11)
31 #include "ui/gl/gl_context_glx.h" 31 #include "ui/gl/gl_context_glx.h"
32 #include "content/common/gpu/media/vaapi_video_decode_accelerator.h" 32 #include "content/common/gpu/media/vaapi_video_decode_accelerator.h"
33 #elif defined(OS_ANDROID) 33 #elif defined(OS_ANDROID)
34 #include "content/common/gpu/media/android_video_decode_accelerator.h" 34 #include "content/common/gpu/media/android_video_decode_accelerator.h"
35 #endif 35 #endif
36 36
37 #include "ui/gfx/size.h" 37 #include "ui/gfx/size.h"
38 38
39 namespace content { 39 namespace content {
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 #if defined(OS_WIN) 264 #if defined(OS_WIN)
265 if (base::win::GetVersion() < base::win::VERSION_WIN7) { 265 if (base::win::GetVersion() < base::win::VERSION_WIN7) {
266 NOTIMPLEMENTED() << "HW video decode acceleration not available."; 266 NOTIMPLEMENTED() << "HW video decode acceleration not available.";
267 NotifyError(media::VideoDecodeAccelerator::PLATFORM_FAILURE); 267 NotifyError(media::VideoDecodeAccelerator::PLATFORM_FAILURE);
268 return; 268 return;
269 } 269 }
270 DVLOG(0) << "Initializing DXVA HW decoder for windows."; 270 DVLOG(0) << "Initializing DXVA HW decoder for windows.";
271 video_decode_accelerator_.reset(new DXVAVideoDecodeAccelerator( 271 video_decode_accelerator_.reset(new DXVAVideoDecodeAccelerator(
272 this, make_context_current_)); 272 this, make_context_current_));
273 #elif defined(OS_CHROMEOS) && defined(ARCH_CPU_ARMEL) && defined(USE_X11) 273 #elif defined(OS_CHROMEOS) && defined(ARCH_CPU_ARMEL) && defined(USE_X11)
274 video_decode_accelerator_.reset(new ExynosVideoDecodeAccelerator( 274 video_decode_accelerator_.reset(new V4L2VideoDecodeAccelerator(
275 gfx::GLSurfaceEGL::GetHardwareDisplay(), 275 gfx::GLSurfaceEGL::GetHardwareDisplay(),
276 this, 276 this,
277 weak_factory_for_io_.GetWeakPtr(), 277 weak_factory_for_io_.GetWeakPtr(),
278 make_context_current_, 278 make_context_current_,
279 io_message_loop_)); 279 io_message_loop_));
280 #elif defined(OS_CHROMEOS) && defined(ARCH_CPU_X86_FAMILY) && defined(USE_X11) 280 #elif defined(OS_CHROMEOS) && defined(ARCH_CPU_X86_FAMILY) && defined(USE_X11)
281 gfx::GLContextGLX* glx_context = 281 gfx::GLContextGLX* glx_context =
282 static_cast<gfx::GLContextGLX*>(stub_->decoder()->GetGLContext()); 282 static_cast<gfx::GLContextGLX*>(stub_->decoder()->GetGLContext());
283 video_decode_accelerator_.reset(new VaapiVideoDecodeAccelerator( 283 video_decode_accelerator_.reset(new VaapiVideoDecodeAccelerator(
284 glx_context->display(), this, make_context_current_)); 284 glx_context->display(), this, make_context_current_));
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
496 scoped_refptr<gpu::gles2::TextureRef> texture_ref = it->second; 496 scoped_refptr<gpu::gles2::TextureRef> texture_ref = it->second;
497 GLenum target = texture_ref->texture()->target(); 497 GLenum target = texture_ref->texture()->target();
498 gpu::gles2::TextureManager* texture_manager = 498 gpu::gles2::TextureManager* texture_manager =
499 stub_->decoder()->GetContextGroup()->texture_manager(); 499 stub_->decoder()->GetContextGroup()->texture_manager();
500 DCHECK(!texture_ref->texture()->IsLevelCleared(target, 0)); 500 DCHECK(!texture_ref->texture()->IsLevelCleared(target, 0));
501 texture_manager->SetLevelCleared(texture_ref, target, 0, true); 501 texture_manager->SetLevelCleared(texture_ref, target, 0, true);
502 uncleared_textures_.erase(it); 502 uncleared_textures_.erase(it);
503 } 503 }
504 504
505 } // namespace content 505 } // namespace content
OLDNEW
« no previous file with comments | « content/common/gpu/media/exynos_video_decode_accelerator.cc ('k') | content/common/gpu/media/v4l2_video_decode_accelerator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698