summaryrefslogtreecommitdiff
path: root/src/demuxers/demux_smjpeg.c
diff options
context:
space:
mode:
authorJames Stembridge <jstembridge@users.sourceforge.net>2004-02-09 22:24:36 +0000
committerJames Stembridge <jstembridge@users.sourceforge.net>2004-02-09 22:24:36 +0000
commit5e461e6b22a4c244c5e6ab13ddeb9581a2b8216b (patch)
treec37224a2fdd4f6fbd100d3dbfa0d2bf36c71f02c /src/demuxers/demux_smjpeg.c
parentca689b36373e820c26caa4c1b34679ca1a6038be (diff)
downloadxine-lib-5e461e6b22a4c244c5e6ab13ddeb9581a2b8216b.tar.gz
xine-lib-5e461e6b22a4c244c5e6ab13ddeb9581a2b8216b.tar.bz2
Always send frame duration using BUF_FLAG_FRAMERATE
CVS patchset: 6128 CVS date: 2004/02/09 22:24:36
Diffstat (limited to 'src/demuxers/demux_smjpeg.c')
-rw-r--r--src/demuxers/demux_smjpeg.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/demuxers/demux_smjpeg.c b/src/demuxers/demux_smjpeg.c
index 3e40576d4..d4fa0a9c1 100644
--- a/src/demuxers/demux_smjpeg.c
+++ b/src/demuxers/demux_smjpeg.c
@@ -23,7 +23,7 @@
* For more information on the SMJPEG file format, visit:
* http://www.lokigames.com/development/smjpeg.php3
*
- * $Id: demux_smjpeg.c,v 1.48 2004/01/09 01:26:33 miguelfreitas Exp $
+ * $Id: demux_smjpeg.c,v 1.49 2004/02/09 22:24:37 jstembridge Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -331,9 +331,9 @@ static void demux_smjpeg_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] = 3000; /* initial video_step */
+ buf->decoder_flags = BUF_FLAG_HEADER|BUF_FLAG_STDHEADER|BUF_FLAG_FRAMERATE|
+ BUF_FLAG_FRAME_END;
+ buf->decoder_info[0] = 3000; /* initial video_step */
memcpy(buf->content, &this->bih, sizeof(this->bih));
buf->size = sizeof(this->bih);
buf->type = this->video_type;