1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

Do not pass an unused variable when initing filt_out. Less confusing.

Originally committed as revision 25448 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Stefano Sabatini 2010-10-12 13:47:29 +00:00
parent 68b79bfc48
commit 72ae4aa189

View File

@ -1846,7 +1846,7 @@ static int video_thread(void *arg)
if (avfilter_open(&filt_out, &output_filter, "out") < 0) goto the_end;
if(avfilter_init_filter(filt_src, NULL, is)) goto the_end;
if(avfilter_init_filter(filt_out, NULL, frame)) goto the_end;
if(avfilter_init_filter(filt_out, NULL, NULL)) goto the_end;
if(vfilters) {