[MPlayer-cvslog] r32824 - trunk/mplayer.c

reimar subversion at mplayerhq.hu
Thu Jan 27 21:39:01 CET 2011


Author: reimar
Date: Thu Jan 27 21:39:01 2011
New Revision: 32824

Log:
Continue playing even if we reached video EOF if there is still audio
data to play.
Fixes playback of http://samples.mplayerhq.hu/mov/audio_with_still.m4a

Modified:
   trunk/mplayer.c

Modified: trunk/mplayer.c
==============================================================================
--- trunk/mplayer.c	Thu Jan 27 21:37:51 2011	(r32823)
+++ trunk/mplayer.c	Thu Jan 27 21:39:01 2011	(r32824)
@@ -3660,7 +3660,7 @@ if (mpctx->stream->type == STREAMTYPE_DV
 }
 #endif
 
-while(!mpctx->eof){
+while(!mpctx->eof || (mpctx->sh_audio && !mpctx->d_audio->eof)){
     float aq_sleep_time=0;
 
 if(dvd_last_chapter>0) {


More information about the MPlayer-cvslog mailing list