diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-07-17 18:17:48 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-07-17 18:17:48 +0000 |
commit | 4ba751b96f31b7cba5dd51d3f47fad6d565222f1 (patch) | |
tree | 76604d3062071397bfcdf74663d273900722b513 /src/demuxers/demux_smjpeg.c | |
parent | 4b353b8743f17453f405c3275cd34b8508d71099 (diff) | |
download | xine-lib-4ba751b96f31b7cba5dd51d3f47fad6d565222f1.tar.gz xine-lib-4ba751b96f31b7cba5dd51d3f47fad6d565222f1.tar.bz2 |
stop sending audio parameters all the time
CVS patchset: 2304
CVS date: 2002/07/17 18:17:48
Diffstat (limited to 'src/demuxers/demux_smjpeg.c')
-rw-r--r-- | src/demuxers/demux_smjpeg.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/demuxers/demux_smjpeg.c b/src/demuxers/demux_smjpeg.c index 6a55c935f..d9cc2fa0b 100644 --- a/src/demuxers/demux_smjpeg.c +++ b/src/demuxers/demux_smjpeg.c @@ -21,7 +21,7 @@ * For more information on the SMJPEG file format, visit: * http://www.lokigames.com/development/smjpeg.php3 * - * $Id: demux_smjpeg.c,v 1.3 2002/07/14 22:27:25 miguelfreitas Exp $ + * $Id: demux_smjpeg.c,v 1.4 2002/07/17 18:17:49 miguelfreitas Exp $ */ #ifdef HAVE_CONFIG_H @@ -156,9 +156,6 @@ static void *demux_smjpeg_loop (void *this_gen) { if (chunk_tag == sndD_TAG) { buf = this->audio_fifo->buffer_pool_alloc (this->audio_fifo); buf->type = this->audio_type; - buf->decoder_info[1] = this->audio_sample_rate; - buf->decoder_info[2] = this->audio_bits; - buf->decoder_info[3] = this->audio_channels; } else { buf = this->video_fifo->buffer_pool_alloc (this->video_fifo); buf->type = this->video_type; |