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_film.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_film.c')
-rw-r--r-- | src/demuxers/demux_film.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/demuxers/demux_film.c b/src/demuxers/demux_film.c index 0fd986dbf..f4aa0fd92 100644 --- a/src/demuxers/demux_film.c +++ b/src/demuxers/demux_film.c @@ -21,7 +21,7 @@ * For more information on the FILM file format, visit: * http://www.pcisys.net/~melanson/codecs/ * - * $Id: demux_film.c,v 1.18 2002/07/14 22:27:25 miguelfreitas Exp $ + * $Id: demux_film.c,v 1.19 2002/07/17 18:17:48 miguelfreitas Exp $ */ #ifdef HAVE_CONFIG_H @@ -458,9 +458,6 @@ static void *demux_film_loop (void *this_gen) { if (!remaining_sample_bytes) buf->decoder_flags |= BUF_FLAG_FRAME_END; - buf->decoder_info[1] = this->sample_rate; - buf->decoder_info[2] = this->audio_bits; - buf->decoder_info[3] = this->audio_channels; this->audio_fifo->put(this->audio_fifo, buf); } } |