Lines Matching defs:field
63 pixfmt->field = V4L2_FIELD_INTERLACED;
117 pixfmt->field = V4L2_FIELD_INTERLACED;
173 /* Check if VBI services are allowed on the (field, line) for the video std */
174 static int valid_service_line(int field, int line, int is_pal)
177 ((field == 0 && line <= 23) || (field == 1 && line <= 22))) ||
182 * For a (field, line, std) and inbound potential set of services for that line,
188 static u16 select_service_from_set(int field, int line, u16 set, int is_pal)
194 if (set == 0 || !valid_service_line(field, line, is_pal))
200 if (line == 16 && field == 0 && (set & V4L2_SLICED_VPS))
202 if (line == 23 && field == 0 && (set & V4L2_SLICED_WSS_625))