mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-14 16:36:55 +07:00
1bf5842fe3
The initial version of this patch (commit d5976931639176bb6777755d96b9f8d959f79e9e) had some issues: * It didn't correctly calculate the size of the YUV buffer for 4:2:2, resulting in capture sometimes being offset by 1/3rd of a picture. * There were a lot of variables duplicating information the driver already knew, which have been removed. * There was an in-kernel format conversion - libv4l can do this one, and is the right place to do format conversions anyway. * Some magic numbers weren't properly explained. Fix all these issues, leaving just the move from videobuf to videobuf2 to do. Signed-off-by: Simon Farnsworth <simon.farnsworth@onelan.co.uk> Acked-by: Andy Walls <awalls@md.metrocast.net> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
36 lines
1.1 KiB
Plaintext
36 lines
1.1 KiB
Plaintext
config VIDEO_CX18
|
|
tristate "Conexant cx23418 MPEG encoder support"
|
|
depends on VIDEO_V4L2 && DVB_CORE && PCI && I2C && EXPERIMENTAL
|
|
select I2C_ALGOBIT
|
|
select VIDEOBUF_VMALLOC
|
|
depends on RC_CORE
|
|
select VIDEO_TUNER
|
|
select VIDEO_TVEEPROM
|
|
select VIDEO_CX2341X
|
|
select VIDEO_CS5345
|
|
select DVB_S5H1409 if !DVB_FE_CUSTOMISE
|
|
select MEDIA_TUNER_MXL5005S if !MEDIA_TUNER_CUSTOMISE
|
|
select DVB_S5H1411 if !DVB_FE_CUSTOMISE
|
|
select MEDIA_TUNER_TDA18271 if !MEDIA_TUNER_CUSTOMISE
|
|
select MEDIA_TUNER_TDA8290 if !MEDIA_TUNER_CUSTOMISE
|
|
---help---
|
|
This is a video4linux driver for Conexant cx23418 based
|
|
PCI combo video recorder devices.
|
|
|
|
This is used in devices such as the Hauppauge HVR-1600
|
|
cards.
|
|
|
|
To compile this driver as a module, choose M here: the
|
|
module will be called cx18.
|
|
|
|
config VIDEO_CX18_ALSA
|
|
tristate "Conexant 23418 DMA audio support"
|
|
depends on VIDEO_CX18 && SND && EXPERIMENTAL
|
|
select SND_PCM
|
|
---help---
|
|
This is a video4linux driver for direct (DMA) audio on
|
|
Conexant 23418 based TV cards using ALSA.
|
|
|
|
To compile this driver as a module, choose M here: the
|
|
module will be called cx18-alsa.
|