diff options
author | Mike Lampard <mlampard@users.sourceforge.net> | 2004-12-01 23:09:04 +0000 |
---|---|---|
committer | Mike Lampard <mlampard@users.sourceforge.net> | 2004-12-01 23:09:04 +0000 |
commit | 575782a9f76583abd8c4374466472b376023f8dd (patch) | |
tree | b2fdeb26570450d9a46c23e03520b8d4bf5531a0 | |
parent | 589b10571d063b0ae4b0dcc12d4c3a30a3f5fc00 (diff) | |
download | xine-lib-575782a9f76583abd8c4374466472b376023f8dd.tar.gz xine-lib-575782a9f76583abd8c4374466472b376023f8dd.tar.bz2 |
make buffer a multiple of ts packet size
CVS patchset: 7184
CVS date: 2004/12/01 23:09:04
-rw-r--r-- | src/input/input_dvb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/input_dvb.c b/src/input/input_dvb.c index 0ae0da38a..93cada7f8 100644 --- a/src/input/input_dvb.c +++ b/src/input/input_dvb.c @@ -2089,7 +2089,7 @@ static int dvb_plugin_open(input_plugin_t * this_gen) _("input_dvb: cannot open dvr device '%s'\n"), this->tuner->dvr_device); return 0; } - if(ioctl(this->fd,DMX_SET_BUFFER_SIZE,262144)<0) + if(ioctl(this->fd,DMX_SET_BUFFER_SIZE,188*1024)<0) xprintf(this->class->xine,XINE_VERBOSITY_DEBUG,"input_dvb: couldn't increase buffer size for DVR: %s \n",strerror(errno)); this->curpos = 0; |