avfilter/swaprect: correct assignment of VAR_POS

Revert regression introduced in 6af050d7d0
This commit is contained in:
Gyan Doshi 2020-01-15 14:09:07 +05:30
parent 0dc0837960
commit 0777b197c5
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
var_values[VAR_DAR] = var_values[VAR_A] * var_values[VAR_SAR];
var_values[VAR_N] = inlink->frame_count_out;
var_values[VAR_T] = in->pts == AV_NOPTS_VALUE ? NAN : in->pts * av_q2d(inlink->time_base);
var_values[VAR_POS] = in->pkt_pos ? NAN : in->pkt_pos;
var_values[VAR_POS] = in->pkt_pos == -1 ? NAN : in->pkt_pos;
ret = av_expr_parse_and_eval(&dw, s->w,
var_names, &var_values[0],