mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-03-17 20:17:55 +02:00
avfilter/vf_fps: fix ABI compatibility with AV_NOPTS starttime
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
88262e1c1d
commit
8b79a458c0
@ -184,7 +184,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *buf)
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
if (s->start_time != DBL_MAX) {
|
||||
if (s->start_time != DBL_MAX && s->start_time != AV_NOPTS_VALUE) {
|
||||
double first_pts = s->start_time * AV_TIME_BASE;
|
||||
first_pts = FFMIN(FFMAX(first_pts, INT64_MIN), INT64_MAX);
|
||||
s->first_pts = s->pts = av_rescale_q(first_pts, AV_TIME_BASE_Q,
|
||||
|
Loading…
x
Reference in New Issue
Block a user