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

Unified Diff: content/gpu/gpu_main.cc

Issue 11198060: VDA implementation for Exynos, using V4L2 (Closed) Base URL: https://git.chromium.org/git/chromium/src@git-svn
Patch Set: Created 8 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/gpu/gpu_main.cc
diff --git a/content/gpu/gpu_main.cc b/content/gpu/gpu_main.cc
index a5cb94e13f5ee87aef9f591c4594b1ddf02597a0..5dc5484d3a6293da46b4f9d89bc38fefa4436c8f 100644
--- a/content/gpu/gpu_main.cc
+++ b/content/gpu/gpu_main.cc
@@ -34,6 +34,7 @@
#include "sandbox/win/src/sandbox.h"
#elif defined(OS_CHROMEOS) && defined(ARCH_CPU_ARMEL)
#include "content/common/gpu/media/omx_video_decode_accelerator.h"
+#include "content/common/gpu/media/exynos_video_decode_accelerator.h"
#elif defined(OS_CHROMEOS) && defined(ARCH_CPU_X86_FAMILY)
#include "content/common/gpu/media/vaapi_video_decode_accelerator.h"
#endif
@@ -271,6 +272,7 @@ void WarmUpSandbox(const content::GPUInfo& gpu_info,
#if defined(OS_CHROMEOS) && defined(ARCH_CPU_ARMEL)
OmxVideoDecodeAccelerator::PreSandboxInitialization();
+ ExynosVideoDecodeAccelerator::PreSandboxInitialization();
Ami GONE FROM CHROMIUM 2012/10/18 08:30:26 we should only load the relevant .so's.
sheu 2012/10/30 09:05:03 Done.
#elif defined(OS_CHROMEOS) && defined(ARCH_CPU_X86_FAMILY)
VaapiVideoDecodeAccelerator::PreSandboxInitialization();
#endif

Powered by Google App Engine
This is Rietveld 408576698