[FFmpeg-cvslog] r12073 - trunk/libavfilter/defaults.c

vitor subversion
Fri Feb 15 23:00:07 CET 2008


Author: vitor
Date: Fri Feb 15 23:00:07 2008
New Revision: 12073

Log:
Rework link property configuration system.
This can now handle filters which are added to graphs out of order,
including auto-inserted scale filters.  As an added bonus, it can
now detect circular filter chains which wouldn't work anyway.

Commited in SoC by Bobby Bingham on 2007-12-24 03:22:10


Modified:
   trunk/libavfilter/defaults.c

Modified: trunk/libavfilter/defaults.c
==============================================================================
--- trunk/libavfilter/defaults.c	(original)
+++ trunk/libavfilter/defaults.c	Fri Feb 15 23:00:07 2008
@@ -105,16 +105,6 @@ int avfilter_default_config_output_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]);
-}
-
-/**
  * A helper for query_formats() which sets all links to the same list of
  * formats. If there are no links hooked to this filter, the list of formats is
  * freed.




More information about the ffmpeg-cvslog mailing list