summaryrefslogtreecommitdiffstats
path: root/mencoder.c
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-12-04 23:34:29 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-12-04 23:34:29 +0000
commit89ff69732faa1170e6f6a49e756a66f0711132bf (patch)
tree661cb411f71bdbfe6b16946e3eeec1e14a6f54a7 /mencoder.c
parentc1d0b30ae1d34dfb7631affd8e5a8541f4068556 (diff)
downloadmpv-89ff69732faa1170e6f6a49e756a66f0711132bf.tar.bz2
mpv-89ff69732faa1170e6f6a49e756a66f0711132bf.tar.xz
end_at int->double, as option -endpos accepts float seconds too
patch by eviv bulgroz <ebulgroz@yahoo.com> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8356 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mencoder.c')
-rw-r--r--mencoder.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mencoder.c b/mencoder.c
index 60e0d85f39..f3a5bb1c8c 100644
--- a/mencoder.c
+++ b/mencoder.c
@@ -286,7 +286,7 @@ static int interrupted=0;
enum end_at_type_t {END_AT_NONE, END_AT_TIME, END_AT_SIZE};
static enum end_at_type_t end_at_type = END_AT_NONE;
-static int end_at;
+static double end_at;
static void exit_sighandler(int x){
at_eof=1;