From eafb4f823a16426e7b2b30ada1b3cca47d8eeb3c Mon Sep 17 00:00:00 2001 From: Ewald Snel Date: Sat, 21 Dec 2002 10:21:29 +0000 Subject: Don't use indirect pointer for stsd atoms, conform to buffer.h description CVS patchset: 3602 CVS date: 2002/12/21 10:21:29 --- src/demuxers/demux_qt.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/demuxers/demux_qt.c b/src/demuxers/demux_qt.c index c429d24f4..586a2ad08 100644 --- a/src/demuxers/demux_qt.c +++ b/src/demuxers/demux_qt.c @@ -30,7 +30,7 @@ * build_frame_table * free_qt_info * - * $Id: demux_qt.c,v 1.130 2002/12/21 03:03:16 tmmm Exp $ + * $Id: demux_qt.c,v 1.131 2002/12/21 10:21:29 esnel Exp $ * */ @@ -2086,7 +2086,7 @@ static void demux_qt_send_headers(demux_plugin_t *this_gen) { buf->decoder_flags = BUF_FLAG_SPECIAL; buf->decoder_info[1] = BUF_SPECIAL_STSD_ATOM; buf->decoder_info[2] = this->qt->video_stsd_size; - buf->decoder_info[3] = (unsigned int)&this->qt->video_stsd; + buf->decoder_info[3] = (unsigned int)this->qt->video_stsd; buf->size = 0; buf->type = this->qt->video_type; this->video_fifo->put (this->video_fifo, buf); @@ -2120,7 +2120,7 @@ static void demux_qt_send_headers(demux_plugin_t *this_gen) { buf->decoder_flags = BUF_FLAG_SPECIAL; buf->decoder_info[1] = BUF_SPECIAL_STSD_ATOM; buf->decoder_info[2] = this->qt->audio_stsd_size; - buf->decoder_info[3] = (unsigned int)&this->qt->audio_stsd; + buf->decoder_info[3] = (unsigned int)this->qt->audio_stsd; buf->size = 0; buf->type = this->qt->audio_type; this->audio_fifo->put (this->audio_fifo, buf); -- cgit v1.2.3