Skip to content
Snippets Groups Projects
Commit 6bde1e9d authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

avfilter/avfiltergraph: fix check using the wrong variables

parent 0815b230
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment