Home | History | Annotate | Download | only in bktr

Lines Matching defs:video

7  * This is part of the Driver for Video Capture Cards (Frame grabbers)
261 * There are 16 VBI lines in a PAL video field (32 in a frame),
268 #define MAX_VBI_LINES 16 /* Maximum for all video formats */
452 * ioctls common to both video & tuner.
1062 bktr->video.addr = 0;
1063 bktr->video.width = 0;
1064 bktr->video.banksize = 0;
1065 bktr->video.ramsize = 0;
1299 * video ioctls
1316 struct meteor_video *video;
1498 video = (struct meteor_video *)arg;
1499 video->addr = bktr->video.addr;
1500 video->width = bktr->video.width;
1501 video->banksize = bktr->video.banksize;
1502 video->ramsize = bktr->video.ramsize;
1506 video = (struct meteor_video *)arg;
1507 bktr->video.addr = video->addr;
1508 bktr->video.width = video->width;
1509 bktr->video.banksize = video->banksize;
1510 bktr->video.ramsize = video->ramsize;
1777 && bktr->video.addr == 0) {
1885 case BT848_SCAPAREA: /* set capture area of each video frame */
1900 case BT848_GCAPAREA: /* get capture area of each video frame */
2355 /* Tuner is MUX0, RCA is MUX1, S-Video is MUX2 */
2363 /* this is the RCA video input */
2746 * Generate the RISC instructions to capture both VBI and video images
2796 if (bktr->video.addr) {
2797 target_buffer = (u_int) bktr->video.addr;
2798 pitch = bktr->video.width;
2826 /* store the Odd field video image */
2877 /* store the video image */
2969 if (bktr->video.addr) {
2970 target_buffer = (u_int) bktr->video.addr;
2971 pitch = bktr->video.width;
2980 /* construct sync : for video packet format */
3128 if (bktr->video.addr)
3129 target_buffer = (u_int) bktr->video.addr;
3135 /* construct sync : for video packet format */
3249 if (bktr->video.addr)
3250 target_buffer = (u_int) bktr->video.addr;
3258 /* construct sync : for video packet format */
3353 if (bktr->video.addr)
3354 target_buffer = (u_int) bktr->video.addr;
3461 /* set video parameters */
3560 /* end of video params */
3645 * video & video capture specific routines:
3661 if (bktr->clr_on_start && (bktr->video.addr == 0)) {