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

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

Issue 1125263005: MJPEG acceleration for V4L2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add unittest and address review comments Created 5 years, 6 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/tegra_v4l2_device.cc
diff --git a/content/common/gpu/media/tegra_v4l2_device.cc b/content/common/gpu/media/tegra_v4l2_device.cc
index 21cb57f5bb4661cc38693f089210504b74f3ebf4..63b312acd9a23b3bb139081a6eb9cf9e2c596d6a 100644
--- a/content/common/gpu/media/tegra_v4l2_device.cc
+++ b/content/common/gpu/media/tegra_v4l2_device.cc
@@ -155,6 +155,9 @@ bool TegraV4L2Device::Initialize() {
case kImageProcessor:
DVLOG(1) << "Device type " << type_ << " not supported on this platform";
return false;
+ case kJpegDecoder:
+ DVLOG(1) << "Device type " << type_ << " not supported on this platform";
+ return false;
}
if (!g_tegra_function_symbol_finder_.Get().initialized()) {

Powered by Google App Engine
This is Rietveld 408576698