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:
parent
68b79bfc48
commit
72ae4aa189
2
ffplay.c
2
ffplay.c
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user