diff options
author | albeu <albeu@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-01-19 17:22:57 +0000 |
---|---|---|
committer | albeu <albeu@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-01-19 17:22:57 +0000 |
commit | 5890ac759ae75e5fe7385d1cc066225241b502d5 (patch) | |
tree | 183993d8e792b8ef16b8e8dc0a1b46ff3731541d | |
parent | 739a77699a8ace283f4fbabbe59a01bec6ad0767 (diff) |
Fixed bug with -frames option : don't quit, go to next file !!
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4261 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r-- | mplayer.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1401,7 +1401,7 @@ while(!eof){ if(play_n_frames>=0){ --play_n_frames; - if(play_n_frames<0) exit_player(MSGTR_Exit_frames); + if(play_n_frames<0) eof = PT_NEXT_ENTRY; } vo_pts=sh_video->timer*90000.0; |