From 8434b64bf82e3f111ca461a9789707558dff5dd3 Mon Sep 17 00:00:00 2001 From: Michael Roitzsch Date: Thu, 31 Oct 2002 16:58:12 +0000 Subject: new syntax for MRLs basic changes: - MRLs are a subset of URIs - important new delimiter is # - everything before the # will be passed to the input plugin - after the # you can add several ;-separated stream parameters: novideo - video will be ignored noaudio - audio will be ignored nospu - spus will be ignored demux:... - specify the demuxer to use (e.g. demux:mpeg_block) entry:value - assign any config entry a new value CVS patchset: 3112 CVS date: 2002/10/31 16:58:12 --- src/xine-engine/audio_decoder.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/xine-engine/audio_decoder.c') diff --git a/src/xine-engine/audio_decoder.c b/src/xine-engine/audio_decoder.c index 890298251..82dc22baf 100644 --- a/src/xine-engine/audio_decoder.c +++ b/src/xine-engine/audio_decoder.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: audio_decoder.c,v 1.87 2002/10/29 16:02:43 mroi Exp $ + * $Id: audio_decoder.c,v 1.88 2002/10/31 16:58:14 mroi Exp $ * * * functions that implement audio decoding @@ -173,6 +173,9 @@ void *audio_decoder_loop (void *stream_gen) { default: + if (stream->stream_info[XINE_STREAM_INFO_IGNORE_AUDIO]) + break; + xine_profiler_start_count (prof_audio_decode); if ( (buf->type & 0xFF000000) == BUF_AUDIO_BASE ) { -- cgit v1.2.3