diff options
Diffstat (limited to 'src/demuxers/demux_snd.c')
-rw-r--r-- | src/demuxers/demux_snd.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/demuxers/demux_snd.c b/src/demuxers/demux_snd.c index 679c4ca01..bc4bdf2dc 100644 --- a/src/demuxers/demux_snd.c +++ b/src/demuxers/demux_snd.c @@ -19,7 +19,7 @@ * * SND/AU File Demuxer by Mike Melanson (melanson@pcisys.net) * - * $Id: demux_snd.c,v 1.13 2002/10/26 22:03:58 tmmm Exp $ + * $Id: demux_snd.c,v 1.14 2002/10/27 16:14:29 tmmm Exp $ * */ @@ -275,6 +275,8 @@ static void demux_snd_send_headers(demux_plugin_t *this_gen) { this->status = DEMUX_OK; /* load stream information */ + this->stream->stream_info[XINE_STREAM_INFO_HAS_VIDEO] = 0; + this->stream->stream_info[XINE_STREAM_INFO_HAS_AUDIO] = 1; this->stream->stream_info[XINE_STREAM_INFO_AUDIO_CHANNELS] = this->audio_channels; this->stream->stream_info[XINE_STREAM_INFO_AUDIO_SAMPLERATE] = |