[media] gspca: store current mode instead of individual parameters
Store complete current mode (struct v4l2_pix_format) in struct gspca_dev instead of separate pixfmt, width and height parameters. This is a preparation for variable resolution support. Signed-off-by: Ondrej Zary <linux@rainbow-software.org> Signed-off-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
This commit is contained in:

committed by
Mauro Carvalho Chehab

parent
08149ecf2c
commit
1966bc2a48
@@ -378,11 +378,12 @@ static int sd_start(struct gspca_dev *gspca_dev)
|
||||
struct sd *dev = (struct sd *) gspca_dev;
|
||||
|
||||
/* create the JPEG header */
|
||||
jpeg_define(dev->jpeg_hdr, gspca_dev->height, gspca_dev->width,
|
||||
jpeg_define(dev->jpeg_hdr, gspca_dev->pixfmt.height,
|
||||
gspca_dev->pixfmt.width,
|
||||
0x21); /* JPEG 422 */
|
||||
jpeg_set_qual(dev->jpeg_hdr, dev->quality);
|
||||
PDEBUG(D_STREAM, "Start streaming at %dx%d",
|
||||
gspca_dev->height, gspca_dev->width);
|
||||
gspca_dev->pixfmt.height, gspca_dev->pixfmt.width);
|
||||
jlj_start(gspca_dev);
|
||||
return gspca_dev->usb_err;
|
||||
}
|
||||
|
Reference in New Issue
Block a user