Commit 6bde1e9d authored by Michael Niedermayer's avatar Michael Niedermayer

avfilter/avfiltergraph: fix check using the wrong variables

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 0815b230
......@@ -379,7 +379,7 @@ static int can_merge_formats(AVFilterFormats *a_arg,
int is_sample_rate)
{
AVFilterFormats *a, *b, *ret;
if (a == b)
if (a_arg == b_arg)
return 1;
a = clone_filter_formats(a_arg);
b = clone_filter_formats(b_arg);
......
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