comparison mencoder.c @ 8355:3be7b22b6713

end_at int->double, as option -endpos accepts float seconds too patch by eviv bulgroz <ebulgroz@yahoo.com>
author arpi
date Wed, 04 Dec 2002 23:34:29 +0000
parents 487cfc28525d
children ea3c66c6665f
comparison
equal deleted inserted replaced
8354:8a0b6e083280 8355:3be7b22b6713
284 static int at_eof=0; 284 static int at_eof=0;
285 static int interrupted=0; 285 static int interrupted=0;
286 286
287 enum end_at_type_t {END_AT_NONE, END_AT_TIME, END_AT_SIZE}; 287 enum end_at_type_t {END_AT_NONE, END_AT_TIME, END_AT_SIZE};
288 static enum end_at_type_t end_at_type = END_AT_NONE; 288 static enum end_at_type_t end_at_type = END_AT_NONE;
289 static int end_at; 289 static double end_at;
290 290
291 static void exit_sighandler(int x){ 291 static void exit_sighandler(int x){
292 at_eof=1; 292 at_eof=1;
293 interrupted=1; 293 interrupted=1;
294 } 294 }