Home | History | Annotate | Download | only in src

Lines Matching refs:pix

743   capture->form.fmt.pix.pixelformat = requestedPixelFormat;
744 capture->form.fmt.pix.field = V4L2_FIELD_ANY;
745 capture->form.fmt.pix.width = capture->width;
746 capture->form.fmt.pix.height = capture->height;
753 if (requestedPixelFormat != capture->form.fmt.pix.pixelformat) {
763 min = capture->form.fmt.pix.width * 2;
765 if (capture->form.fmt.pix.bytesperline < min)
766 capture->form.fmt.pix.bytesperline = min;
768 min = capture->form.fmt.pix.bytesperline * capture->form.fmt.pix.height;
770 if (capture->form.fmt.pix.sizeimage < min)
771 capture->form.fmt.pix.sizeimage = min;
1294 if(((unsigned long)capture->frame.width != capture->form.fmt.pix.width)
1295 || ((unsigned long)capture->frame.height != capture->form.fmt.pix.height)) {
1298 cvSize( capture->form.fmt.pix.width,
1299 capture->form.fmt.pix.height ),
1378 return (property_id == CV_CAP_PROP_FRAME_WIDTH)?capture->form.fmt.pix.width:capture->form.fmt.pix.height;
1539 capture->form.fmt.pix.width = w;
1540 capture->form.fmt.pix.height = h;
1545 capture->form.fmt.pix.field = V4L2_FIELD_ANY;