diff options
author | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2004-06-01 22:05:47 +0000 |
---|---|---|
committer | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2004-06-01 22:05:47 +0000 |
commit | 35186d86089cdfee3f4bd18a7df6278cdc84b2c6 (patch) | |
tree | ad70c977827b48dac3c6deb8e9dc29dc22c46684 /src | |
parent | 7709868335e28c3acc25658a8d0a501ae8b8aec1 (diff) | |
download | xine-lib-35186d86089cdfee3f4bd18a7df6278cdc84b2c6.tar.gz xine-lib-35186d86089cdfee3f4bd18a7df6278cdc84b2c6.tar.bz2 |
Add FIXME comment.
CVS patchset: 6629
CVS date: 2004/06/01 22:05:47
Diffstat (limited to 'src')
-rw-r--r-- | src/demuxers/demux_qt.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/demuxers/demux_qt.c b/src/demuxers/demux_qt.c index 01e3967a9..0e2c38781 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.184 2004/06/01 04:34:01 tmmm Exp $ + * $Id: demux_qt.c,v 1.185 2004/06/01 22:05:47 jcdutton Exp $ * */ @@ -2592,6 +2592,8 @@ static void demux_qt_send_headers(demux_plugin_t *this_gen) { buf->decoder_info[1] = audio_trak->properties->audio.sample_rate; buf->decoder_info[2] = audio_trak->properties->audio.bits; buf->decoder_info[3] = audio_trak->properties->audio.channels; + /* FIXME from jcdutton: Shouldn't this be a memcpy ? */ + /* I don't know enough about this Quicktime demuxer to be sure */ buf->content = (void *)&audio_trak->properties->audio.wave; buf->size = sizeof(audio_trak->properties->audio.wave); this->audio_fifo->put (this->audio_fifo, buf); |