mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-17 07:54:54 +08:00
b50a64fc54
The amphion vpu codec ip contains encoder and decoder. Windsor is the encoder, it supports to encode H.264. Malone is the decoder, it features a powerful video processing unit able to decode many formats, such as H.264, HEVC, and other formats. This Driver is for this IP that is based on the v4l2 mem2mem framework. Supported SoCs are: IMX8QXP, IMX8QM Signed-off-by: Ming Qian <ming.qian@nxp.com> Signed-off-by: Shijie Qin <shijie.qin@nxp.com> Signed-off-by: Zhou Peng <eagle.zhou@nxp.com> Reported-by: kernel test robot <lkp@intel.com> Tested-by: Nicolas Dufresne <nicolas.dufresne@collabora.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
21 lines
371 B
Makefile
21 lines
371 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Makefile for NXP VPU driver
|
|
|
|
amphion-vpu-objs += vpu_drv.o \
|
|
vpu_core.o \
|
|
vpu_mbox.o \
|
|
vpu_v4l2.o \
|
|
vpu_helpers.o \
|
|
vpu_cmds.o \
|
|
vpu_msgs.o \
|
|
vpu_rpc.o \
|
|
vpu_imx8q.o \
|
|
vpu_windsor.o \
|
|
vpu_malone.o \
|
|
vpu_color.o \
|
|
vdec.o \
|
|
venc.o \
|
|
vpu_dbg.o
|
|
|
|
obj-$(CONFIG_VIDEO_AMPHION_VPU) += amphion-vpu.o
|