[FFmpeg-cvslog] r25448 - trunk/ffplay.c

stefano subversion
Tue Oct 12 15:47:29 CEST 2010


Author: stefano
Date: Tue Oct 12 15:47:29 2010
New Revision: 25448

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

Modified:
   trunk/ffplay.c

Modified: trunk/ffplay.c
==============================================================================
--- trunk/ffplay.c	Tue Oct 12 11:22:32 2010	(r25447)
+++ trunk/ffplay.c	Tue Oct 12 15:47:29 2010	(r25448)
@@ -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) {



More information about the ffmpeg-cvslog mailing list