diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-08-31 15:26:33 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-08-31 15:45:23 +0200 |
commit | 0b7d12e8405d6ec003d84f22fa2fa672b55c3ee8 (patch) | |
tree | 183a844f2f6afbb7524fa6edc2b00ffbe6be785b | |
parent | 52be5428c0fb0942dfdb5628f26bb73574564d24 (diff) | |
download | ffmpeg-0b7d12e8405d6ec003d84f22fa2fa672b55c3ee8.tar.gz |
vf_mp: fix duplicate return
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavfilter/vf_mp.c | 2 |
1 files changed, 1 insertions, 1 deletions
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){ |