diff options
author | Thibaut Mattern <tmattern@users.sourceforge.net> | 2003-10-30 00:49:07 +0000 |
---|---|---|
committer | Thibaut Mattern <tmattern@users.sourceforge.net> | 2003-10-30 00:49:07 +0000 |
commit | 23aee9ab6c893f508e31e1a62466264c64df232b (patch) | |
tree | 8464b24ebfbc4a171fcf2cc07d2db9c13d0eaf53 /src/demuxers/demux_image.c | |
parent | 69e11ccd286181b6191454d59cf772c0034aa239 (diff) | |
download | xine-lib-23aee9ab6c893f508e31e1a62466264c64df232b.tar.gz xine-lib-23aee9ab6c893f508e31e1a62466264c64df232b.tar.bz2 |
use info_helper functions.
CVS patchset: 5638
CVS date: 2003/10/30 00:49:07
Diffstat (limited to 'src/demuxers/demux_image.c')
-rw-r--r-- | src/demuxers/demux_image.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/demuxers/demux_image.c b/src/demuxers/demux_image.c index 956d4aa05..db051f4ea 100644 --- a/src/demuxers/demux_image.c +++ b/src/demuxers/demux_image.c @@ -19,7 +19,7 @@ */ /* - * $Id: demux_image.c,v 1.7 2003/10/22 16:52:47 mroi Exp $ + * $Id: demux_image.c,v 1.8 2003/10/30 00:49:07 tmattern Exp $ * * image dummy demultiplexer */ @@ -90,8 +90,8 @@ static void demux_image_send_headers (demux_plugin_t *this_gen) { this->status = DEMUX_OK; - this->stream->stream_info[XINE_STREAM_INFO_HAS_VIDEO] = 1; - this->stream->stream_info[XINE_STREAM_INFO_HAS_AUDIO] = 0; + xine_set_stream_info(this->stream, XINE_STREAM_INFO_HAS_VIDEO, 1); + xine_set_stream_info(this->stream, XINE_STREAM_INFO_HAS_AUDIO, 0); this->input->seek (this->input, 0, SEEK_SET); } |