From 0b7d12e8405d6ec003d84f22fa2fa672b55c3ee8 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Fri, 31 Aug 2012 15:26:33 +0200 Subject: [PATCH] vf_mp: fix duplicate return Signed-off-by: Michael Niedermayer --- libavfilter/vf_mp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/vf_mp.c b/libavfilter/vf_mp.c index c5a5b1a124..c27edb2e98 100644 --- a/libavfilter/vf_mp.c +++ b/libavfilter/vf_mp.c @@ -672,8 +672,8 @@ int vf_next_config(struct vf_instance *vf, vf->next=vf2; } vf->next->w = width; vf->next->h = height; -#endif return 1; +#endif } int vf_next_control(struct vf_instance *vf, int request, void* data){