Commit 6c0f5172 authored by Michael Niedermayer's avatar Michael Niedermayer

ffplay: dont drop frames by default when there is no audio stream

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent fd2c0a5d
...@@ -254,7 +254,7 @@ static int autoexit; ...@@ -254,7 +254,7 @@ static int autoexit;
static int exit_on_keydown; static int exit_on_keydown;
static int exit_on_mousedown; static int exit_on_mousedown;
static int loop=1; static int loop=1;
static int framedrop=1; static int framedrop=-1;
static enum ShowMode show_mode = SHOW_MODE_NONE; static enum ShowMode show_mode = SHOW_MODE_NONE;
static int rdftspeed=20; static int rdftspeed=20;
...@@ -1139,7 +1139,7 @@ retry: ...@@ -1139,7 +1139,7 @@ retry:
}else{ }else{
next_target= vp->target_clock + is->video_clock - vp->pts; //FIXME pass durations cleanly next_target= vp->target_clock + is->video_clock - vp->pts; //FIXME pass durations cleanly
} }
if(framedrop && time > next_target){ if((framedrop>0 || (framedrop && is->audio_st)) && time > next_target){
is->skip_frames *= 1.0 + FRAME_SKIP_FACTOR; is->skip_frames *= 1.0 + FRAME_SKIP_FACTOR;
if(is->pictq_size > 1 || time > next_target + 0.5){ if(is->pictq_size > 1 || time > next_target + 0.5){
/* update queue size and signal for next picture */ /* update queue size and signal for next picture */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment