# HG changeset patch # User nicodvb # Date 1161120390 0 # Node ID 385f4a815e75a583091238585e4faab06be97d5f # Parent e39dcb20ed236ca432dac40baf34398084f0011f fixed corner case previously mishandled: don't play an audio only stream when -nosound is specified diff -r e39dcb20ed23 -r 385f4a815e75 libmpdemux/demux_ts.c --- a/libmpdemux/demux_ts.c Tue Oct 17 19:21:22 2006 +0000 +++ b/libmpdemux/demux_ts.c Tue Oct 17 21:26:30 2006 +0000 @@ -580,7 +580,7 @@ { //Non PES-aligned A52 audio may escape detection if PMT is not present; //in this case we try to find at least 3 A52 syncwords - if((es.type == PES_PRIVATE1) && (! audio_found)) + if((es.type == PES_PRIVATE1) && (! audio_found) && req_apid > -2) { pptr = &pes_priv1[es.pid]; if(pptr->pos < 64*1024) @@ -608,6 +608,8 @@ if((! is_audio) && (! is_video) && (! is_sub)) continue; + if(is_audio && req_apid==-2) + continue; if(is_video) {