Browse Source

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

Originally committed as revision 25448 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/n0.8
Stefano Sabatini 15 years ago
parent
commit
72ae4aa189
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      ffplay.c

+ 1
- 1
ffplay.c 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) {


Loading…
Cancel
Save