You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
vf_select: check for isnan when setting t from pts
This commit is contained in:
@@ -189,7 +189,7 @@ static int select_frame(AVFilterContext *ctx, AVFilterBufferRef *picref)
|
||||
select->var_values[VAR_START_T] = TS2D(picref->pts) * av_q2d(inlink->time_base);
|
||||
|
||||
select->var_values[VAR_PTS] = TS2D(picref->pts);
|
||||
select->var_values[VAR_T ] = picref->pts * av_q2d(inlink->time_base);
|
||||
select->var_values[VAR_T ] = TS2D(picref->pts) * av_q2d(inlink->time_base);
|
||||
select->var_values[VAR_POS] = picref->pos == -1 ? NAN : picref->pos;
|
||||
select->var_values[VAR_PREV_PTS] = TS2D(picref ->pts);
|
||||
|
||||
|
Reference in New Issue
Block a user