diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-08-14 08:01:03 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-08-14 08:01:03 -0300 |
commit | 77a54391749b0582d1b897410f89f29a97d65c0e (patch) | |
tree | c90f69a1d41a47472e2d865e427d739b1fb272b0 /linux/drivers/media/video/ivtv/ivtv-streams.c | |
parent | 7fd7d21d543d90ecf1086f9c5909bd4c01cf69ae (diff) | |
parent | ae60401740721009d74b54741f77637b64907bdc (diff) | |
download | mediapointer-dvb-s2-77a54391749b0582d1b897410f89f29a97d65c0e.tar.gz mediapointer-dvb-s2-77a54391749b0582d1b897410f89f29a97d65c0e.tar.bz2 |
merge: http://linuxtv.org/hg/~mkrufky/cxusb
From: Mauro Carvalho Chehab <mchehab@infradead.org>
Priority: normal
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'linux/drivers/media/video/ivtv/ivtv-streams.c')
-rw-r--r-- | linux/drivers/media/video/ivtv/ivtv-streams.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/video/ivtv/ivtv-streams.c b/linux/drivers/media/video/ivtv/ivtv-streams.c index 54d2023b2..730e85d86 100644 --- a/linux/drivers/media/video/ivtv/ivtv-streams.c +++ b/linux/drivers/media/video/ivtv/ivtv-streams.c @@ -363,7 +363,7 @@ static void ivtv_vbi_setup(struct ivtv *itv) /* Every X number of frames a VBI interrupt arrives (frames as in 25 or 30 fps) */ data[1] = 1; /* The VBI frames are stored in a ringbuffer with this size (with a VBI frame as unit) */ - data[2] = raw ? 4 : 8; + data[2] = raw ? 4 : 4 * (itv->vbi.raw_size / itv->vbi.enc_size); /* The start/stop codes determine which VBI lines end up in the raw VBI data area. The codes are from table 24 in the saa7115 datasheet. Each raw/sliced/video line is framed with codes FF0000XX where XX is the SAV/EAV (Start/End of Active Video) |