summaryrefslogtreecommitdiffstats
path: root/libmpdemux/network.c
diff options
context:
space:
mode:
authorbertrand <bertrand@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-02-17 00:05:08 +0000
committerbertrand <bertrand@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-02-17 00:05:08 +0000
commit63d13413b76a8451b9d305e7a37cc7e5e1d60f32 (patch)
treecb0f204e6b98efb85db3bdb7cd62e36860a7d4ff /libmpdemux/network.c
parentd6d95023860317da73a76ba040e9dbf7444cda3f (diff)
downloadmpv-63d13413b76a8451b9d305e7a37cc7e5e1d60f32.tar.bz2
mpv-63d13413b76a8451b9d305e7a37cc7e5e1d60f32.tar.xz
Changed the default prefill cache value for raw network input stream.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4731 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux/network.c')
-rw-r--r--libmpdemux/network.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpdemux/network.c b/libmpdemux/network.c
index 3c52559a09..727b06e419 100644
--- a/libmpdemux/network.c
+++ b/libmpdemux/network.c
@@ -551,7 +551,7 @@ nop_streaming_start( stream_t *stream ) {
stream->streaming_ctrl->streaming_read = nop_streaming_read;
stream->streaming_ctrl->streaming_seek = nop_streaming_seek;
- stream->streaming_ctrl->prebuffer_size = 4096; // KBytes
+ stream->streaming_ctrl->prebuffer_size = 8192; // KBytes
stream->streaming_ctrl->buffering = 1;
stream->streaming_ctrl->status = streaming_playing_e;
return 0;