1From 90bc7e00c221853ebc23ab794f4fba11f0cf016c Mon Sep 17 00:00:00 2001 2From: Jeffy Chen <jeffy.chen@rock-chips.com> 3Date: Wed, 1 Apr 2020 09:17:45 +0800 4Subject: [PATCH 12/14] Enable v4l2 stuff by default 5 6Signed-off-by: Jeffy Chen <jeffy.chen@rock-chips.com> 7--- 8 chromium/media/gpu/args.gni | 6 +++--- 9 1 file changed, 3 insertions(+), 3 deletions(-) 10 11diff --git a/chromium/media/gpu/args.gni b/chromium/media/gpu/args.gni 12index 7e905aebb..14bf4a3d4 100644 13--- a/chromium/media/gpu/args.gni 14+++ b/chromium/media/gpu/args.gni 15@@ -4,15 +4,15 @@ 16 17 declare_args() { 18 # Indicates if V4L plugin is used. 19- use_v4lplugin = false 20+ use_v4lplugin = true 21 22 # Indicates if Video4Linux2 codec is used. This is used for all CrOS 23 # platforms which have v4l2 hardware encoder / decoder. 24- use_v4l2_codec = false 25+ use_v4l2_codec = true 26 27 # Indicates that only definitions available in the mainline linux kernel 28 # will be used. 29- use_linux_v4l2_only = false 30+ use_linux_v4l2_only = true 31 32 # Indicates if Video4Linux2 AML encoder is used. This is used for AML 33 # platforms which have v4l2 hardware encoder 34-- 352.20.1 36 37