# HG changeset patch # User reimar # Date 1262641125 0 # Node ID 6fb92182aff3dfbd48b220e17674b3340e38c100 # Parent b7bb4a899a6b03c9b17bec5a6e7ff4c187742a0d At startup and while seeking avoid to introduce pointless sleeps and possibly desync due to codec delay. diff -r b7bb4a899a6b -r 6fb92182aff3 mp_core.h --- a/mp_core.h Mon Jan 04 21:27:08 2010 +0000 +++ b/mp_core.h Mon Jan 04 21:38:45 2010 +0000 @@ -72,6 +72,8 @@ // struct. int num_buffered_frames; + // used to retry decoding after startup/seeking to compensate for codec delay + int startup_decode_retry; // how long until we need to display the "current" frame float time_frame; diff -r b7bb4a899a6b -r 6fb92182aff3 mplayer.c --- a/mplayer.c Mon Jan 04 21:27:08 2010 +0000 +++ b/mplayer.c Mon Jan 04 21:38:45 2010 +0000 @@ -203,6 +203,7 @@ int benchmark=0; // options: +#define DEFAULT_STARTUP_DECODE_RETRY 8 int auto_quality=0; static int output_quality=0; @@ -2539,6 +2540,7 @@ if (demux_seek(mpctx->demuxer, amount, audio_delay, style) == 0) return -1; + mpctx->startup_decode_retry = DEFAULT_STARTUP_DECODE_RETRY; if (mpctx->sh_video) { current_module = "seek_video_reset"; resync_video_stream(mpctx->sh_video); @@ -3697,6 +3699,7 @@ audio_time_usage=0; video_time_usage=0; vout_time_usage=0; total_frame_cnt=0; drop_frame_cnt=0; // fix for multifile fps benchmark play_n_frames=play_n_frames_mf; +mpctx->startup_decode_retry = DEFAULT_STARTUP_DECODE_RETRY; if(play_n_frames==0){ mpctx->eof=PT_NEXT_ENTRY; goto goto_next_file; @@ -3769,6 +3772,15 @@ if (!mpctx->num_buffered_frames) { double frame_time = update_video(&blit_frame); + while (!blit_frame && mpctx->startup_decode_retry > 0) { + double delay = mpctx->delay; + // these initial decode failures are probably due to codec delay, + // ignore them and also their probably nonsense durations + update_video(&blit_frame); + mpctx->delay = delay; + mpctx->startup_decode_retry--; + } + mpctx->startup_decode_retry = 0; mp_dbg(MSGT_AVSYNC,MSGL_DBG2,"*** ftime=%5.3f ***\n",frame_time); if (mpctx->sh_video->vf_initialized < 0) { mp_msg(MSGT_CPLAYER,MSGL_FATAL, MSGTR_NotInitializeVOPorVO);