Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Intel media 22.6.6 branch #60

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
cmake_minimum_required(VERSION 3.5)
project(IntelMediaDriver)

set(MEDIA_VERSION "22.6.5${MEDIA_VERSION_EXTRA}" CACHE STRING "" FORCE)
set(MEDIA_VERSION "22.6.6${MEDIA_VERSION_EXTRA}" CACHE STRING "" FORCE)

include(os_release_info.cmake)

Expand Down
84 changes: 84 additions & 0 deletions cmrtlib/Android.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
# 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)/proprietary/share \
$(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)
85 changes: 85 additions & 0 deletions cmrtlib/Android.mk.bak
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
# 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)/proprietary/share \
$(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)
1 change: 1 addition & 0 deletions cmrtlib/linux/hardware/cm_device.h
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,7 @@ class CmDevice_RT : public CmDevice
static pfVAGetDisplayDRM m_vaGetDisplayDrm;
#else
Display* m_display;
int32_t m_driFileDescriptor;
#endif

L3ConfigRegisterValues m_l3Config;
Expand Down
Loading