diff options
Diffstat (limited to 'src/demuxers/demux_wav.c')
-rw-r--r-- | src/demuxers/demux_wav.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/demuxers/demux_wav.c b/src/demuxers/demux_wav.c index b44996e6a..54c5b1cd9 100644 --- a/src/demuxers/demux_wav.c +++ b/src/demuxers/demux_wav.c @@ -20,7 +20,7 @@ * MS WAV File Demuxer by Mike Melanson (melanson@pcisys.net) * based on WAV specs that are available far and wide * - * $Id: demux_wav.c,v 1.30 2003/01/04 14:48:12 miguelfreitas Exp $ + * $Id: demux_wav.c,v 1.31 2003/01/08 01:02:28 miguelfreitas Exp $ * */ @@ -124,8 +124,7 @@ static int open_wav_file(demux_wav_t *this) { xine_waveformatex_le2me(this->wave); this->audio_type = formattag_to_buf_audio(this->wave->wFormatTag); if(!this->audio_type) { - xine_report_codec(this->stream, XINE_CODEC_AUDIO, this->audio_type, 0, 0); - return 0; + this->audio_type = BUF_AUDIO_UNKNOWN; } /* traverse through the chunks to find the 'data' chunk */ |