summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/demuxers/demux_qt.c6
1 files changed, 3 insertions, 3 deletions
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);