mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avfilter/avfiltergraph: fix check using the wrong variables
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
0815b23062
commit
6bde1e9d14
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user