-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade to release tag: intel-media-22.6.6
Release tag: https://github.com/intel/media-driver/releases/tag/intel-media-22.6.6 Update Android.mk for 22.6.6 Add ANDROID MACRO with LINUX according to Tianmi and Dong's patch Dong: 3df71ee fix build error for enabling _DEBUG Tianmi: d083601 Minor fix to make media driver compile and run on Android Signed-off-by: Shaofeng Tang <[email protected]>
- Loading branch information
Showing
18 changed files
with
2,115 additions
and
23 deletions.
There are no files selected for viewing
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,83 @@ | ||
# Copyright(c) 2018 Intel Corporation | ||
|
||
# Permission is hereby granted, free of charge, to any person obtaining a | ||
# copy of this software and associated documentation files(the "Software"), | ||
# to deal in the Software without restriction, including without limitation | ||
# the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
# and / or sell copies of the Software, and to permit persons to whom the | ||
# Software is furnished to do so, subject to the following conditions: | ||
|
||
# The above copyright notice and this permission notice shall be included | ||
# in all copies or substantial portions of the Software. | ||
|
||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS | ||
# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR | ||
# OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, | ||
# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR | ||
# OTHER DEALINGS IN THE SOFTWARE. | ||
|
||
LOCAL_PATH:= $(call my-dir) | ||
|
||
|
||
$(info value of CMRT_BUILD_TYPE is: $(CMRT_BUILD_TYPE)) | ||
$(info value of CMRT_ARCH is: $(CMRT_ARCH)) | ||
|
||
include $(CLEAR_VARS) | ||
|
||
LOCAL_SRC_FILES := \ | ||
agnostic/hardware/cm_device.cpp \ | ||
agnostic/hardware/cm_device_export.cpp \ | ||
agnostic/hardware/cm_kernel_debugger.cpp \ | ||
agnostic/hardware/cm_perf_statistics.cpp \ | ||
agnostic/hardware/cm_queue.cpp \ | ||
agnostic/hardware/cm_surface_manager.cpp \ | ||
agnostic/hardware/cm_timer.cpp \ | ||
agnostic/share/cm_avs_state_msg_ex.cpp \ | ||
agnostic/share/cm_printf_host.cpp \ | ||
agnostic/share/cm_rt_helpers.cpp \ | ||
linux/hardware/cm_device_export_os.cpp \ | ||
linux/hardware/cm_device_os.cpp \ | ||
linux/hardware/cm_surface_manager_os.cpp \ | ||
linux/hardware/cm_timer_os.cpp \ | ||
linux/share/cm_performance.cpp \ | ||
|
||
LOCAL_C_INCLUDES += \ | ||
$(LOCAL_PATH)/agnostic/share \ | ||
$(LOCAL_PATH)/agnostic/hardware \ | ||
$(LOCAL_PATH)/linux/share \ | ||
$(LOCAL_PATH)/linux/hardware | ||
|
||
LOCAL_CFLAGS += \ | ||
-Wno-error \ | ||
-Wno-unused-variable \ | ||
-Wno-unused-parameter \ | ||
-Wno-unused-private-field \ | ||
-Wno-non-virtual-dtor \ | ||
-DANDROID=1 \ | ||
-DCM_RT_EXPORTS \ | ||
-DISTDLIB_UMD \ | ||
-DVPHAL \ | ||
-D__CT__ \ | ||
-Digfxcmrt_EXPORTS | ||
|
||
ifeq ($(CMRT_BUILD_TYPE), debug) | ||
LOCAL_CFLAGS += \ | ||
-D_DEBUG \ | ||
-D__DEBUG \ | ||
-O0 | ||
else | ||
LOCAL_CFLAGS += \ | ||
-fno-strict-aliasing \ | ||
-D_FORTIFY_SOURCE=2 | ||
endif | ||
|
||
|
||
LOCAL_MODULE := libigfxcmrt | ||
LOCAL_PROPRIETARY_MODULE := true | ||
|
||
LOCAL_LDLIBS := -lc -lva -lva-android | ||
LOCAL_SHARED_LIBRARIES := libc libdl libcutils liblog libutils libm libva libva-android | ||
|
||
include $(BUILD_SHARED_LIBRARY) |
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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