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

Unified Diff: content/renderer/render_view_impl.cc

Issue 9814001: Add VAVDA, the VAAPI Video Decode Accelerator for Intel CPUs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 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/renderer/render_view_impl.cc
diff --git a/content/renderer/render_view_impl.cc b/content/renderer/render_view_impl.cc
index b46b4795ae64de486f578b8f94dac3c94b58d119..02a4cdc7c83027d6eb262a2f84200b059ff29899 100644
--- a/content/renderer/render_view_impl.cc
+++ b/content/renderer/render_view_impl.cc
@@ -2229,11 +2229,11 @@ WebMediaPlayer* RenderViewImpl::createMediaPlayer(
collection->AddAudioRenderer(audio_renderer);
}
- // Currently only cros/arm has any HW video decode support in
+ // Currently only cros has any HW video decode support in
// GpuVideoDecodeAccelerator so we don't even try to use it on other
// platforms. This is a startup-time optimization. When new VDA
- // implementations are added, relax the #if above.
-#if defined(OS_CHROMEOS) && defined(ARCH_CPU_ARMEL)
+ // implementations are added, relax the #if below.
+#if defined(OS_CHROMEOS)
// Note we don't actually use the result of this blind down-cast unless it's
// valid (not NULL and of the right type).
WebGraphicsContext3DCommandBufferImpl* context3d =

Powered by Google App Engine
This is Rietveld 408576698