diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-02-18 18:36:30 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-02-18 18:36:30 +0000 |
commit | 8af957ad15a290f7c87962ea4a35890768f63340 (patch) | |
tree | 173746292e846cdf5e50d5a2c75961d1824f6726 | |
parent | 6481d71eceaf0f4a55cac49581fe28deadb1fc19 (diff) | |
download | xine-lib-8af957ad15a290f7c87962ea4a35890768f63340.tar.gz xine-lib-8af957ad15a290f7c87962ea4a35890768f63340.tar.bz2 |
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
-rw-r--r-- | src/xine-engine/video_out.c | 4 |
1 files 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); } } } |