1
mirror of https://github.com/mpv-player/mpv synced 2024-08-12 11:55:06 +02:00

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:
uau 2006-11-14 06:49:37 +00:00
parent 7181a091f8
commit c29775e901

View File

@ -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)