From 8af957ad15a290f7c87962ea4a35890768f63340 Mon Sep 17 00:00:00 2001 From: Michael Roitzsch Date: Tue, 18 Feb 2003 18:36:30 +0000 Subject: this might help prevent problems in the future: important requests like flushes should be put on the fifo as the first element CVS patchset: 4195 CVS date: 2003/02/18 18:36:30 --- src/xine-engine/video_out.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xine-engine/video_out.c b/src/xine-engine/video_out.c index 70ce11f4c..3ef7d4f7f 100644 --- a/src/xine-engine/video_out.c +++ b/src/xine-engine/video_out.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_out.c,v 1.141 2003/02/06 10:59:02 miguelfreitas Exp $ + * $Id: video_out.c,v 1.142 2003/02/18 18:36:30 mroi Exp $ * * frame allocation / queuing / scheduling / output functions */ @@ -866,7 +866,7 @@ static void *video_out_loop (void *this_gen) { buf = stream->video_fifo->buffer_pool_try_alloc (stream->video_fifo); if( buf ) { buf->type = BUF_CONTROL_FLUSH_DECODER; - stream->video_fifo->put(stream->video_fifo, buf); + stream->video_fifo->insert(stream->video_fifo, buf); } } } -- cgit v1.2.3