mirror of
https://github.com/hardkernel/kernel_common_drivers.git
synced 2026-06-25 12:03:48 +09:00
a2da5907e0
PD#SWPL-137630 Problem: codec mm adds the interface for dmabuf status dumping. Solution: The dmabuf infos interface is mainly used to view the status of dmabuf and track the status that dmabuf is referenced by a process. It can provide a convenient way for memory leakage and find the leaking process. Verify: ohm Change-Id: Ib2acf59ae1cc52e5b21c19afc1053fdf3b5e4bd7 Signed-off-by: Nanxin Qin <nanxin.qin@amlogic.com>
21 lines
881 B
Makefile
21 lines
881 B
Makefile
# SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
|
################################
|
|
# Amlogic codec memory manager #
|
|
################################
|
|
|
|
####################################
|
|
# The order of directories matter. #
|
|
# Do not change. #
|
|
####################################
|
|
|
|
ccflags-y += -I$(srctree)/$(COMMON_DRIVERS_DIR)/drivers/dvb/
|
|
|
|
$(MEDIA_MODULE_NAME)-$(CONFIG_AMLOGIC_MEDIA_CODEC_MM) += common/codec_mm/codec_mm.o
|
|
$(MEDIA_MODULE_NAME)-$(CONFIG_AMLOGIC_MEDIA_CODEC_MM) += common/codec_mm/codec_mm_scatter.o
|
|
$(MEDIA_MODULE_NAME)-$(CONFIG_AMLOGIC_MEDIA_CODEC_MM) += common/codec_mm/codec_mm_keeper.o
|
|
$(MEDIA_MODULE_NAME)-$(CONFIG_AMLOGIC_MEDIA_CODEC_MM) += common/codec_mm/dmabuf_manage.o
|
|
$(MEDIA_MODULE_NAME)-$(CONFIG_AMLOGIC_MEDIA_CODEC_MM) += common/codec_mm/codec_mm_track.o
|
|
|
|
include $(COMMON_DRIVERS_DIR)/drivers/media/common/codec_mm/configs/Makefile
|
|
|