Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-07-25 18:53:39 +0400
committerMichael Niedermayer <michaelni@gmx.at>2013-07-25 18:53:39 +0400
commit6bde1e9d14ff1e0ecff74b8ff59607f545c6f2ec (patch)
tree34953d371af6d96995c3edb7dba4fd60a843b6f4 /libavfilter/avfiltergraph.c
parent0815b230628e9578dc087fbcd5fbdd8a52cd1edd (diff)
avfilter/avfiltergraph: fix check using the wrong variables
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/avfiltergraph.c')
-rw-r--r--libavfilter/avfiltergraph.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/avfiltergraph.c b/libavfilter/avfiltergraph.c
index 9af0e90105..2f6f2fd9be 100644
--- a/libavfilter/avfiltergraph.c
+++ b/libavfilter/avfiltergraph.c
@@ -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);