Make ffplay.c:opt_seek use parse_time_or_die

Patch by Stefano Sabatini (stefano sabatini-lala poste it)

Originally committed as revision 12653 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Stefano Sabatini 2008-03-31 16:53:19 +00:00 committed by Robert Swain
parent 1354fa6442
commit 85362796be

View File

@ -2406,11 +2406,7 @@ static void opt_sync(const char *arg)
static void opt_seek(const char *arg)
{
start_time = parse_date(arg, 1);
if (start_time == INT64_MIN) {
fprintf(stderr, "Invalid duration specification: %s\n", arg);
exit(1);
}
start_time = parse_time_or_die("ss", arg, 1);
}
static int opt_debug(const char *opt, const char *arg)