Skip to content
Snippets Groups Projects
Commit 72ae4aa1 authored by Stefano Sabatini's avatar Stefano Sabatini
Browse files

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

Originally committed as revision 25448 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 68b79bfc
No related branches found
No related tags found
No related merge requests found
......@@ -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) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment