mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
1a73374a04
This adds common capability parser for all supported Venus versions. Having it will help to enumerate better the supported raw formats and codecs and also the capabilities for every codec like max/min width/height, framerate, bitrate and so on. Signed-off-by: Stanimir Varbanov <stanimir.varbanov@linaro.org> Reviewed-by: Tomasz Figa <tfiga@chromium.org> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
14 lines
404 B
Makefile
14 lines
404 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Makefile for Qualcomm Venus driver
|
|
|
|
venus-core-objs += core.o helpers.o firmware.o \
|
|
hfi_venus.o hfi_msgs.o hfi_cmds.o hfi.o \
|
|
hfi_parser.o
|
|
|
|
venus-dec-objs += vdec.o vdec_ctrls.o
|
|
venus-enc-objs += venc.o venc_ctrls.o
|
|
|
|
obj-$(CONFIG_VIDEO_QCOM_VENUS) += venus-core.o
|
|
obj-$(CONFIG_VIDEO_QCOM_VENUS) += venus-dec.o
|
|
obj-$(CONFIG_VIDEO_QCOM_VENUS) += venus-enc.o
|