diff options
author | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2001-08-02 20:38:42 +0000 |
---|---|---|
committer | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2001-08-02 20:38:42 +0000 |
commit | e73ba6a14235e5da00f3fff8e53e5274ed869468 (patch) | |
tree | c970622585c874498d6b231dd012dd501aee2b53 /src/xine-engine/video_decoder.c | |
parent | 59b09567fdf67c87f8f1efabaa75a3a51938ae96 (diff) | |
download | xine-lib-e73ba6a14235e5da00f3fff8e53e5274ed869468.tar.gz xine-lib-e73ba6a14235e5da00f3fff8e53e5274ed869468.tar.bz2 |
Fixed Video fifo buffer overflow.
CVS patchset: 381
CVS date: 2001/08/02 20:38:42
Diffstat (limited to 'src/xine-engine/video_decoder.c')
-rw-r--r-- | src/xine-engine/video_decoder.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xine-engine/video_decoder.c b/src/xine-engine/video_decoder.c index 6ffb1edd7..c71b4a51f 100644 --- a/src/xine-engine/video_decoder.c +++ b/src/xine-engine/video_decoder.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: video_decoder.c,v 1.32 2001/07/30 19:21:29 guenter Exp $ + * $Id: video_decoder.c,v 1.33 2001/08/02 20:38:42 jcdutton Exp $ * */ @@ -177,8 +177,8 @@ void *video_decoder_loop (void *this_gen) { } void video_decoder_init (xine_t *this) { - - this->video_fifo = fifo_buffer_new (1500, 4096); + + this->video_fifo = fifo_buffer_new (500, 65536); pthread_create (&this->video_thread, NULL, video_decoder_loop, this) ; } |