mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-08 13:22:53 +02:00
parseutils: ignore digits below the microsecond.
Accept 1.1234567 as simply 1.123456 instead of rejecting it. The rounding is towards 0, which is acceptable and much simpler.
This commit is contained in:
parent
b27c7d70d8
commit
5a9d6993cb
@ -610,6 +610,8 @@ int av_parse_time(int64_t *timeval, const char *timestr, int duration)
|
|||||||
break;
|
break;
|
||||||
microseconds += n * (*q - '0');
|
microseconds += n * (*q - '0');
|
||||||
}
|
}
|
||||||
|
while (isdigit(*q))
|
||||||
|
q++;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (duration) {
|
if (duration) {
|
||||||
|
Loading…
Reference in New Issue
Block a user