From 5e461e6b22a4c244c5e6ab13ddeb9581a2b8216b Mon Sep 17 00:00:00 2001 From: James Stembridge Date: Mon, 9 Feb 2004 22:24:36 +0000 Subject: Always send frame duration using BUF_FLAG_FRAMERATE CVS patchset: 6128 CVS date: 2004/02/09 22:24:36 --- src/demuxers/demux_wc3movie.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/demuxers/demux_wc3movie.c') diff --git a/src/demuxers/demux_wc3movie.c b/src/demuxers/demux_wc3movie.c index 0d75ee12b..5be5212da 100644 --- a/src/demuxers/demux_wc3movie.c +++ b/src/demuxers/demux_wc3movie.c @@ -24,7 +24,7 @@ * For more information on the MVE file format, visit: * http://www.pcisys.net/~melanson/codecs/ * - * $Id: demux_wc3movie.c,v 1.50 2004/01/09 01:26:33 miguelfreitas Exp $ + * $Id: demux_wc3movie.c,v 1.51 2004/02/09 22:24:37 jstembridge Exp $ */ #ifdef HAVE_CONFIG_H @@ -312,9 +312,9 @@ static void demux_mve_send_headers(demux_plugin_t *this_gen) { /* send init info to decoders */ buf = this->video_fifo->buffer_pool_alloc (this->video_fifo); - buf->decoder_flags = BUF_FLAG_HEADER|BUF_FLAG_STDHEADER|BUF_FLAG_FRAME_END; - buf->decoder_info[0] = 0; - buf->decoder_info[1] = WC3_PTS_INC; /* initial video_step */ + buf->decoder_flags = BUF_FLAG_HEADER|BUF_FLAG_STDHEADER|BUF_FLAG_FRAMERATE| + BUF_FLAG_FRAME_END; + buf->decoder_info[0] = WC3_PTS_INC; /* initial video_step */ buf->content = (void *)&this->bih; buf->size = sizeof(this->bih); buf->type = BUF_VIDEO_WC3; -- cgit v1.2.3