[SCM] libav/experimental: Separate the process of creating links between filters from that of configuring the links.

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:14:46 UTC 2013


The following commit has been merged in the experimental branch:
commit f66f53dac8094df199c0fc77818bdb6b50571529
Author: Vitor Sessak <vitor1001 at gmail.com>
Date:   Fri Feb 15 21:58:29 2008 +0000

    Separate the process of creating links between filters from that of configuring
    the links.
    
    Commited in SoC by Bobby Bingham on 2007-08-07 21:02:18
    
    Originally committed as revision 12064 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavfilter/defaults.c b/libavfilter/defaults.c
index 570d21d..9976560 100644
--- a/libavfilter/defaults.c
+++ b/libavfilter/defaults.c
@@ -104,6 +104,16 @@ int avfilter_default_config_output_link(AVFilterLink *link)
 }
 
 /**
+ * default config_link() implementation for input video links to simplify
+ * the implementation of one input one output video filters */
+int avfilter_default_config_input_link(AVFilterLink *link)
+{
+    if(!link->dst->output_count)
+        return 0;
+    return avfilter_config_link(link->dst->outputs[0]);
+}
+
+/**
  * default query_formats() implementation for output video links to simplify
  * the implementation of one input one output video filters */
 int *avfilter_default_query_output_formats(AVFilterLink *link)

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list