mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 01:49:46 +00:00
The BCM2711 and BCM2712 SoCs used on Rapsberry Pi 4 and Raspberry Pi 5 boards include an HEVC decoder block. Add a driver for it. Signed-off-by: John Cox <john.cox@raspberrypi.com> Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com> media: hevc_dec: Add in downstream single planar SAND variant Upstream will take the multi-planar SAND format, but add back in the downstream single planar variant for backwards compatibility Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com> media: hevc_dec: Add module parameter for video_nr To avoid user complaints that /dev/video0 isn't their USB webcam, add downstream patch that allows setting the preferred video device number. Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
18 lines
465 B
Plaintext
18 lines
465 B
Plaintext
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
config VIDEO_RPI_HEVC_DEC
|
|
tristate "Rasperry Pi HEVC decoder"
|
|
depends on VIDEO_DEV && VIDEO_DEV
|
|
depends on OF
|
|
select MEDIA_CONTROLLER
|
|
select MEDIA_CONTROLLER_REQUEST_API
|
|
select VIDEOBUF2_DMA_CONTIG
|
|
select V4L2_MEM2MEM_DEV
|
|
help
|
|
Support for the Raspberry Pi HEVC / H265 H/W decoder as a stateless
|
|
V4L2 decoder device.
|
|
|
|
To compile this driver as a module, choose M here: the module
|
|
will be called rpi-hevc-dec.
|
|
|