Commit a79cbc0b authored by Michael Niedermayer's avatar Michael Niedermayer

avfilter/vf_qp: Fix use of uinitialized variable

Found-by: <Timothy_Gu>
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 12215016
...@@ -123,7 +123,6 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in) ...@@ -123,7 +123,6 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
double var_values[] = { !!in_qp_table, qp, x, y, s->qstride, s->h, 0}; double var_values[] = { !!in_qp_table, qp, x, y, s->qstride, s->h, 0};
static const char *var_names[] = { "known", "qp", "x", "y", "w", "h", NULL }; static const char *var_names[] = { "known", "qp", "x", "y", "w", "h", NULL };
double temp_val; double temp_val;
int ret;
ret = av_expr_parse_and_eval(&temp_val, s->qp_expr_str, ret = av_expr_parse_and_eval(&temp_val, s->qp_expr_str,
var_names, var_values, var_names, var_values,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment