mirror of
https://github.com/torvalds/linux.git
synced 2024-12-04 18:13:04 +00:00
media: usbtv: Use V4L2 defines to select capture resolution
Make use of the V4L2_STD_525_60 and V4L2_STD_625_50 defines to determine the vertical resolution to use when capturing. V4L2_STD_525_60 (resp. V4L2_STD_625_50) is the set of standards using 525 (resp. 625) lines per frame, independently of the color encoding. Signed-off-by: Hugo Grostabussiat <bonstra@bonstra.fr.eu.org> Signed-off-by: Hans Verkuil <hansverk@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
This commit is contained in:
parent
c41e20d9cb
commit
8c42d2763c
@ -54,12 +54,7 @@ static struct usbtv_norm_params norm_params[] = {
|
||||
.cap_height = 480,
|
||||
},
|
||||
{
|
||||
.norm = V4L2_STD_PAL,
|
||||
.cap_width = 720,
|
||||
.cap_height = 576,
|
||||
},
|
||||
{
|
||||
.norm = V4L2_STD_SECAM,
|
||||
.norm = V4L2_STD_625_50,
|
||||
.cap_width = 720,
|
||||
.cap_height = 576,
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user