Lines Matching defs:raw
376 int raw = ivtv_raw_vbi(itv);
385 if (raw)
391 A raw line takes 1443 bytes: 2 * 720 + 4 byte frame header - 1
395 if (raw) {
403 itv->vbi.enc_size = lines * (raw ? itv->vbi.raw_size : itv->vbi.sliced_size);
405 /* Note: sliced vs raw flag doesn't seem to have any effect
407 data[0] = raw | 0x02 | (0xbd << 8);
412 data[2] = raw ? 4 : 4 * (itv->vbi.raw_size / itv->vbi.enc_size);
413 /* The start/stop codes determine which VBI lines end up in the raw VBI data area.
414 The codes are from table 24 in the saa7115 datasheet. Each raw/sliced/video line
416 code. These values for raw VBI are obtained from a driver disassembly. The sliced
422 if (raw) {
432 data[6] = (raw ? itv->vbi.raw_size : itv->vbi.sliced_size);
435 if (raw) {
482 - Is mixed raw and sliced VBI possible?
483 - What's the meaning of the raw/sliced flag?