mirror of
https://github.com/torvalds/linux.git
synced 2024-12-19 01:23:20 +00:00
7f8e438b90
When encoding a video as HEVC, the allegro driver needs to generate the Non-VCL NAL units for HEVC. Do the same as for H.264 and add a module that takes C structs for the VPS/SPS/PPS and encodes the fields as RBPS as specified by "ITU-T Rec. H.265 (02/2018) high efficiency video coding". [hverkuil: add missing static for nal_hevc_write/read_start_code_prefix] [hverkuil: fix typo: pps -> vps in nal_hevc_write_vps] Signed-off-by: Michael Tretter <m.tretter@pengutronix.de> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
7 lines
177 B
Makefile
7 lines
177 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
allegro-objs := allegro-core.o allegro-mail.o
|
|
allegro-objs += nal-rbsp.o nal-h264.o nal-hevc.o
|
|
|
|
obj-$(CONFIG_VIDEO_ALLEGRO_DVT) += allegro.o
|