diff options
Diffstat (limited to 'src/demuxers/demux_ts.c')
-rw-r--r-- | src/demuxers/demux_ts.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/demuxers/demux_ts.c b/src/demuxers/demux_ts.c index e10da8208..42f4b7e45 100644 --- a/src/demuxers/demux_ts.c +++ b/src/demuxers/demux_ts.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: demux_ts.c,v 1.91 2003/10/20 06:19:02 jcdutton Exp $ + * $Id: demux_ts.c,v 1.92 2003/10/31 22:56:21 tmattern Exp $ * * Demultiplexer for MPEG2 Transport Streams. * @@ -1774,8 +1774,8 @@ static void demux_ts_send_headers (demux_plugin_t *this_gen) { this->current_spu_channel = this->stream->spu_channel; /* FIXME ? */ - this->stream->stream_info[XINE_STREAM_INFO_HAS_VIDEO] = 1; - this->stream->stream_info[XINE_STREAM_INFO_HAS_AUDIO] = 1; + xine_set_stream_info(this->stream, XINE_STREAM_INFO_HAS_VIDEO, 1); + xine_set_stream_info(this->stream, XINE_STREAM_INFO_HAS_AUDIO, 1); } static int demux_ts_seek (demux_plugin_t *this_gen, |