Lines Matching defs:vbi
1188 headers. The vbi->p pointer points to the R_5E_SDID byte right after the SAV
1190 static int saa711x_decode_vbi_line(struct v4l2_subdev *sd, struct v4l2_decode_vbi_line *vbi)
1196 u8 *p = vbi->p;
1200 vbi->type = 0; /* mark result as a failure */
1209 vbi->p = p;
1212 vbi->is_second_field = ((id1 & 0x40) != 0);
1213 vbi->line = (id1 & 0x3f) << 3;
1214 vbi->line |= (id2 & 0x70) >> 4;
1227 vbi->type = V4L2_SLICED_TELETEXT_B;
1232 vbi->type = V4L2_SLICED_CAPTION_525;
1240 vbi->type = V4L2_SLICED_WSS_625;
1245 vbi->type = V4L2_SLICED_VPS;
1623 .vbi = &saa711x_vbi_ops,