mirror of
https://github.com/ittiam-systems/libhevc.git
synced 2026-08-15 15:22:36 +07:00
Removed few unused functions Fixed an issue in 420P output in shared mdoe Few bug fixes in handling loop filter corner cases in multi-tile multi-slice clips Renamed few elements in mv_buf_t for consistency Change-Id: I8d179b9ad3c7ee3ad27972ee02ea2658fd2c3c25
13 lines
355 B
Makefile
13 lines
355 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := hevcdec
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
LOCAL_CFLAGS := -DPROFILE_ENABLE -DARM -fPIC -DMD5_DISABLE
|
|
LOCAL_C_INCLUDES += $(LOCAL_PATH)/../decoder $(LOCAL_PATH)/../common $(LOCAL_PATH)/
|
|
LOCAL_SRC_FILES := decoder/main.c
|
|
LOCAL_STATIC_LIBRARIES := libhevcdec
|
|
|
|
include $(BUILD_EXECUTABLE)
|