mirror of https://github.com/mpv-player/mpv
Move -frames check out of frame flip code (like -endpos earlier)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20913 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
7181a091f8
commit
c29775e901
10
mplayer.c
10
mplayer.c
|
@ -4460,10 +4460,6 @@ if(time_frame>0.001 && !(vo_flags&256))
|
|||
double tt;
|
||||
|
||||
if(vo_config_count) video_out->flip_page();
|
||||
if (play_n_frames >= 0) {
|
||||
--play_n_frames;
|
||||
if (play_n_frames <= 0) eof = PT_NEXT_ENTRY;
|
||||
}
|
||||
|
||||
// usec_sleep(50000); // test only!
|
||||
t2=GetTimer()-t2;
|
||||
|
@ -4495,6 +4491,12 @@ if(auto_quality>0){
|
|||
set_video_quality(sh_video,output_quality);
|
||||
}
|
||||
|
||||
if (play_n_frames >= 0 && !frame_time_remaining && blit_frame) {
|
||||
--play_n_frames;
|
||||
if (play_n_frames <= 0) eof = PT_NEXT_ENTRY;
|
||||
}
|
||||
|
||||
|
||||
// FIXME: add size based support for -endpos
|
||||
if (end_at.type == END_AT_TIME &&
|
||||
!frame_time_remaining && end_at.pos <= sh_video->pts)
|
||||
|
|
Loading…
Reference in New Issue