-
Notifications
You must be signed in to change notification settings - Fork 249
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
98 additions
and
0 deletions.
There are no files selected for viewing
98 changes: 98 additions & 0 deletions
98
...as/vendor/intel/external/project-celadon/camera-vhal/0001-move-to-32-bit-for-trying.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
From 9e405466eaed2944878d6b9c2a0439b082a510ed Mon Sep 17 00:00:00 2001 | ||
From: gkdeepa <[email protected]> | ||
Date: Wed, 8 Dec 2021 11:41:02 +0530 | ||
Subject: [PATCH] move to 32 bit for trying | ||
|
||
Tracked-On: | ||
--- | ||
Android.mk | 18 +++++++++--------- | ||
1 file changed, 9 insertions(+), 9 deletions(-) | ||
|
||
diff --git a/Android.mk b/Android.mk | ||
index 3e14dca..d33c89a 100644 | ||
--- a/Android.mk | ||
+++ b/Android.mk | ||
@@ -26,7 +26,7 @@ FFMPEG_LIB_PATH := ${FFMPEG_PREBUILD}/lib | ||
include $(CLEAR_VARS) | ||
LOCAL_CHECK_ELF_FILES := false | ||
LOCAL_MODULE := libavcodec | ||
-LOCAL_MULTILIB := 64 | ||
+LOCAL_MULTILIB := 32 | ||
LOCAL_SRC_FILES := $(FFMPEG_LIB_PATH)/$(LOCAL_MODULE).so | ||
LOCAL_PROPRIETARY_MODULE := true | ||
LOCAL_MODULE_SUFFIX := .so | ||
@@ -36,7 +36,7 @@ include $(BUILD_PREBUILT) | ||
include $(CLEAR_VARS) | ||
LOCAL_CHECK_ELF_FILES := false | ||
LOCAL_MODULE := libswresample | ||
-LOCAL_MULTILIB := 64 | ||
+LOCAL_MULTILIB := 32 | ||
LOCAL_SRC_FILES := $(FFMPEG_LIB_PATH)/$(LOCAL_MODULE).so | ||
LOCAL_PROPRIETARY_MODULE := true | ||
LOCAL_MODULE_SUFFIX := .so | ||
@@ -46,7 +46,7 @@ include $(BUILD_PREBUILT) | ||
include $(CLEAR_VARS) | ||
LOCAL_MODULE := libavutil | ||
LOCAL_CHECK_ELF_FILES := false | ||
-LOCAL_MULTILIB := 64 | ||
+LOCAL_MULTILIB := 32 | ||
LOCAL_SRC_FILES := $(FFMPEG_LIB_PATH)/$(LOCAL_MODULE).so | ||
LOCAL_PROPRIETARY_MODULE := true | ||
LOCAL_MODULE_SUFFIX := .so | ||
@@ -56,7 +56,7 @@ include $(BUILD_PREBUILT) | ||
include $(CLEAR_VARS) | ||
LOCAL_CHECK_ELF_FILES := false | ||
LOCAL_MODULE := libavdevice | ||
-LOCAL_MULTILIB := 64 | ||
+LOCAL_MULTILIB := 32 | ||
LOCAL_SRC_FILES := $(FFMPEG_LIB_PATH)/$(LOCAL_MODULE).so | ||
LOCAL_PROPRIETARY_MODULE := true | ||
LOCAL_MODULE_SUFFIX := .so | ||
@@ -66,7 +66,7 @@ include $(BUILD_PREBUILT) | ||
include $(CLEAR_VARS) | ||
LOCAL_CHECK_ELF_FILES := false | ||
LOCAL_MODULE := libavfilter | ||
-LOCAL_MULTILIB := 64 | ||
+LOCAL_MULTILIB := 32 | ||
LOCAL_SRC_FILES := $(FFMPEG_LIB_PATH)/$(LOCAL_MODULE).so | ||
LOCAL_PROPRIETARY_MODULE := true | ||
LOCAL_MODULE_SUFFIX := .so | ||
@@ -76,7 +76,7 @@ include $(BUILD_PREBUILT) | ||
include $(CLEAR_VARS) | ||
LOCAL_CHECK_ELF_FILES := false | ||
LOCAL_MODULE := libavformat | ||
-LOCAL_MULTILIB := 64 | ||
+LOCAL_MULTILIB := 32 | ||
LOCAL_SRC_FILES := $(FFMPEG_LIB_PATH)/$(LOCAL_MODULE).so | ||
LOCAL_PROPRIETARY_MODULE := true | ||
LOCAL_MODULE_SUFFIX := .so | ||
@@ -86,7 +86,7 @@ include $(BUILD_PREBUILT) | ||
include $(CLEAR_VARS) | ||
LOCAL_CHECK_ELF_FILES := false | ||
LOCAL_MODULE := libswscale | ||
-LOCAL_MULTILIB := 64 | ||
+LOCAL_MULTILIB := 32 | ||
LOCAL_SRC_FILES := $(FFMPEG_LIB_PATH)/$(LOCAL_MODULE).so | ||
LOCAL_PROPRIETARY_MODULE := true | ||
LOCAL_MODULE_SUFFIX := .so | ||
@@ -105,7 +105,7 @@ else | ||
LOCAL_MODULE := camera.$(TARGET_PRODUCT) | ||
endif | ||
|
||
-LOCAL_MULTILIB := 64 | ||
+LOCAL_MULTILIB := 32 | ||
LOCAL_VENDOR_MODULE := true | ||
|
||
camera_vhal_src := \ | ||
@@ -205,7 +205,7 @@ include $(CLEAR_VARS) | ||
################ Build JPEG Library ################# | ||
|
||
LOCAL_VENDOR_MODULE := true | ||
-LOCAL_MULTILIB := 64 | ||
+LOCAL_MULTILIB := 32 | ||
|
||
jpeg_module_relative_path := hw | ||
jpeg_cflags := -fno-short-enums -DREMOTE_HARDWARE | ||
-- | ||
2.17.1 | ||
|