Lines Matching +full:720 +full:p
375 /* hsize low (input), 0x02d0 = 720 */
401 /* 0x02d0 = 720 */
413 /* hwindow 0x02d0 = 720 */
450 /* hsize low (input), 0x02d0 = 720 */
479 /* hsize 0x02d0 = 720 */
491 /* hsize 0x02d0 = 720 */
676 static int saa711x_decode_vps(u8 *dst, u8 *p) in saa711x_decode_vps() argument
716 err |= biphase_tbl[p[i]] | biphase_tbl[p[i + 1]]; in saa711x_decode_vps()
717 c = (biphase_tbl[p[i + 1]] & 0xf) | ((biphase_tbl[p[i]] & 0xf) << 4); in saa711x_decode_vps()
723 static int saa711x_decode_wss(u8 *p) in saa711x_decode_wss() argument
733 int b1 = wss_bits[p[i] & 7]; in saa711x_decode_wss()
734 int b2 = wss_bits[(p[i] >> 3) & 7]; in saa711x_decode_wss()
882 /* Decoder only supports 720 columns and 480 or 576 lines */ in saa711x_set_size()
883 if (width != 720) in saa711x_set_size()
919 HPSC = (int)(720 / width); in saa711x_set_size()
922 HFSC = (int)((1024 * 720) / (HPSC * width)); in saa711x_set_size()
997 saa711x_set_size(sd, 720, 480); in saa711x_set_v4lstd()
1007 saa711x_set_size(sd, 720, 576); in saa711x_set_v4lstd()
1188 headers. The vbi->p pointer points to the R_5E_SDID byte right after the SAV
1196 u8 *p = vbi->p; in saa711x_decode_vbi_line() local
1201 id1 = p[2]; in saa711x_decode_vbi_line()
1202 id2 = p[3]; in saa711x_decode_vbi_line()
1207 /* Skip internal header, p now points to the start of the payload */ in saa711x_decode_vbi_line()
1208 p += 4; in saa711x_decode_vbi_line()
1209 vbi->p = p; in saa711x_decode_vbi_line()
1221 if (!memcmp(p, vbi_no_data_pattern, sizeof(vbi_no_data_pattern))) in saa711x_decode_vbi_line()
1230 if (!saa711x_odd_parity(p[0]) || !saa711x_odd_parity(p[1])) in saa711x_decode_vbi_line()
1235 wss = saa711x_decode_wss(p); in saa711x_decode_vbi_line()
1238 p[0] = wss & 0xff; in saa711x_decode_vbi_line()
1239 p[1] = wss >> 8; in saa711x_decode_vbi_line()
1243 if (saa711x_decode_vps(p, p) != 0) in saa711x_decode_vbi_line()