1From 33a1bf159037a7ba9ff0d099641029f277ce1d9b Mon Sep 17 00:00:00 2001
2From: Jeffy Chen <jeffy.chen@rock-chips.com>
3Date: Tue, 6 Sep 2022 18:24:32 +0800
4Subject: [PATCH 14/17] libgav1: Enable parser on arm32 as well
5
6Signed-off-by: Jeffy Chen <jeffy.chen@rock-chips.com>
7---
8 third_party/libgav1/options.gni | 2 +-
9 1 file changed, 1 insertion(+), 1 deletion(-)
10
11diff --git a/third_party/libgav1/options.gni b/third_party/libgav1/options.gni
12index 5e0fe7ea3..bd6a4a572 100644
13--- a/third_party/libgav1/options.gni
14+++ b/third_party/libgav1/options.gni
15@@ -13,5 +13,5 @@ declare_args() {
16   use_libgav1_parser =
17       (is_chromeos || is_linux || is_win) &&
18       (target_cpu == "x86" || target_cpu == "x64" ||
19-      target_cpu == "arm64" || target_cpu == "ppc64")
20+      target_cpu == "arm" || target_cpu == "arm64" || target_cpu == "ppc64")
21 }
22--
232.20.1
24
25