summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEwald Snel <esnel@users.sourceforge.net>2002-12-21 10:21:29 +0000
committerEwald Snel <esnel@users.sourceforge.net>2002-12-21 10:21:29 +0000
commiteafb4f823a16426e7b2b30ada1b3cca47d8eeb3c (patch)
tree29ac6ab2ce876641fd4b4f1dee74081e28891073 /src
parent572235f10ee2895be3d7a5b3ef4bfd4b3601046f (diff)
downloadxine-lib-eafb4f823a16426e7b2b30ada1b3cca47d8eeb3c.tar.gz
xine-lib-eafb4f823a16426e7b2b30ada1b3cca47d8eeb3c.tar.bz2
Don't use indirect pointer for stsd atoms, conform to buffer.h description
CVS patchset: 3602 CVS date: 2002/12/21 10:21:29
Diffstat (limited to 'src')
-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);