diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2004-01-09 01:26:32 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2004-01-09 01:26:32 +0000 |
commit | c0641405dec6fb244e7d3104035f64f6e535731c (patch) | |
tree | ebde21ba846624ff2ed4e0682b0b31a6a4dd1c0d /src/demuxers/demux_iff.c | |
parent | d1c62ab2512fa23f7bf510396bf5bce28e05b5f9 (diff) | |
download | xine-lib-c0641405dec6fb244e7d3104035f64f6e535731c.tar.gz xine-lib-c0641405dec6fb244e7d3104035f64f6e535731c.tar.bz2 |
- rework semantics of some buffer flags. check buffer.h for details.
- increase demux and decoder apis
- fix runtime changing of ogg/ogm audio channels
note: i hope i haven't broken any demux->decoder data exchange. please report any problems.
CVS patchset: 6014
CVS date: 2004/01/09 01:26:32
Diffstat (limited to 'src/demuxers/demux_iff.c')
-rw-r--r-- | src/demuxers/demux_iff.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/demuxers/demux_iff.c b/src/demuxers/demux_iff.c index 1526330ea..44bab6b39 100644 --- a/src/demuxers/demux_iff.c +++ b/src/demuxers/demux_iff.c @@ -32,7 +32,7 @@ * (no examples found and description isn't as clear as it should) * * 16SV, the same support as 8SVX * - * $Id: demux_iff.c,v 1.2 2004/01/04 00:41:33 manfredtremmel Exp $ + * $Id: demux_iff.c,v 1.3 2004/01/09 01:26:33 miguelfreitas Exp $ */ #ifdef HAVE_CONFIG_H @@ -743,7 +743,7 @@ static void demux_iff_send_headers(demux_plugin_t *this_gen) { if (this->audio_fifo && this->audio_type) { buf = this->audio_fifo->buffer_pool_alloc (this->audio_fifo); buf->type = this->audio_type; - buf->decoder_flags = BUF_FLAG_HEADER; + buf->decoder_flags = BUF_FLAG_HEADER|BUF_FLAG_STDHEADER|BUF_FLAG_FRAME_END; buf->decoder_info[0] = 0; buf->decoder_info[1] = this->vhdr_samplesPerSec; buf->decoder_info[2] = this->audio_bits; |