[SCM] libav/experimental: Do not pass an unused variable when initing filt_out. Less confusing.

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 17:17:30 UTC 2013


The following commit has been merged in the experimental branch:
commit 72ae4aa189d7984c7724f18d3e14c363455bfa31
Author: Stefano Sabatini <stefano.sabatini-lala at poste.it>
Date:   Tue Oct 12 13:47:29 2010 +0000

    Do not pass an unused variable when initing filt_out. Less confusing.
    
    Originally committed as revision 25448 to svn://svn.ffmpeg.org/ffmpeg/trunk

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) {

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list