diff options
Diffstat (limited to 'src/demuxers/demux_iff.c')
-rw-r--r-- | src/demuxers/demux_iff.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/demuxers/demux_iff.c b/src/demuxers/demux_iff.c index de0ecc7a9..e37ff8032 100644 --- a/src/demuxers/demux_iff.c +++ b/src/demuxers/demux_iff.c @@ -34,7 +34,7 @@ * * ILBM (Bitmap Picturs) * - simple pictures work, nothing more (most work is done in bitmap-decoder) * - * $Id: demux_iff.c,v 1.5 2004/02/02 22:22:51 manfredtremmel Exp $ + * $Id: demux_iff.c,v 1.6 2004/02/09 22:24:36 jstembridge Exp $ */ #ifdef HAVE_CONFIG_H @@ -1104,9 +1104,9 @@ static void demux_iff_send_headers(demux_plugin_t *this_gen) { buf = this->video_fifo->buffer_pool_alloc(this->video_fifo); buf->type = this->video_type; buf->size = sizeof(xine_bmiheader); - buf->decoder_flags = BUF_FLAG_HEADER|BUF_FLAG_STDHEADER|BUF_FLAG_FRAME_END; - buf->decoder_info[0] = 0; - buf->decoder_info[1] = this->video_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] = this->video_pts_inc; /* initial video_step */ buf->decoder_info[2] = this->bmhd_xaspect; buf->decoder_info[3] = this->bmhd_yaspect; memcpy(buf->content, &this->bih, sizeof(this->bih)); |