summaryrefslogtreecommitdiffstats
path: root/ffplay.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2010-10-12 13:47:29 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-10-12 13:47:29 +0000
commit72ae4aa189d7984c7724f18d3e14c363455bfa31 (patch)
treea53e4a87714ed34072d16aff738c507b9bb153d6 /ffplay.c
parent68b79bfc482fe09faf259153920718261950a637 (diff)
downloadffmpeg-streaming-72ae4aa189d7984c7724f18d3e14c363455bfa31.zip
ffmpeg-streaming-72ae4aa189d7984c7724f18d3e14c363455bfa31.tar.gz
Do not pass an unused variable when initing filt_out. Less confusing.
Originally committed as revision 25448 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffplay.c')
-rw-r--r--ffplay.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffplay.c b/ffplay.c
index 9927006..6b3df46 100644
--- a/ffplay.c
+++ b/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) {
OpenPOWER on IntegriCloud