diff options
Diffstat (limited to 'src/demuxers/demux_film.c')
-rw-r--r-- | src/demuxers/demux_film.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/demuxers/demux_film.c b/src/demuxers/demux_film.c index a8ac34c91..67b3db888 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.11 2002/06/12 12:22:33 f1rmb Exp $ + * $Id: demux_film.c,v 1.12 2002/06/16 00:53:39 jcdutton Exp $ */ #ifdef HAVE_CONFIG_H @@ -424,6 +424,10 @@ printf ("************ sending new pts\n"); 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); } } |