aboutsummaryrefslogtreecommitdiffstats
path: root/libavfilter/graphparser.c
Commit message (Expand)AuthorAgeFilesLines
* Make parse_outputs() always return meaningful error codes.Stefano Sabatini2010-11-071-5/+5
* Add missing memory check in parse_inputs(), and fix possible (yet very unlike...Stefano Sabatini2010-11-071-1/+2
* Make parse_inputs() return AVERROR(EINVAL) rather than -1 in case theStefano Sabatini2010-11-071-1/+1
* Add missing check in link_filter_inouts(), and fix possible (yet very unlikel...Stefano Sabatini2010-11-071-0/+2
* Rename the variable filter to filt_ctx in link_filter_inouts, as the variable...Stefano Sabatini2010-11-071-8/+8
* Make link_filter_inouts() return meaningful error codes.Stefano Sabatini2010-11-071-5/+5
* Change the signature of parse_filter() to make it return an error code.Stefano Sabatini2010-11-071-8/+5
* Change the signature of create_filter() to make it return an error code.Stefano Sabatini2010-11-071-19/+19
* Rename avfilter_graph_destroy() to avfilter_graph_free().Stefano Sabatini2010-11-041-1/+1
* Move av_get_token() from libavfilter to libavutil.Stefano Sabatini2010-09-271-0/+1
* Change avfilter_open() signature, from:Stefano Sabatini2010-08-111-1/+1
* Document create_filter().Stefano Sabatini2010-07-221-0/+11
* Add simple doxy to link_filter().Stefano Sabatini2010-07-221-0/+5
* Fix documentation for parse_link_name().Stefano Sabatini2010-07-221-3/+4
* Consistently use Uppercase for the first character of the logStefano Sabatini2010-07-221-4/+4
* Make link_filter() propagate the generated error code.Stefano Sabatini2010-07-221-2/+3
* Fix style: "if(" -> "if (".Stefano Sabatini2010-07-221-34/+34
* Use default graph swscale opts when no opts are suppliedBaptiste Coudurier2010-07-031-0/+7
* use filter name when graph parser add filtersBaptiste Coudurier2010-05-161-1/+1
* Make parse_filter() parsing more robust.Stefano Sabatini2009-12-111-2/+2
* "[" is a terminating char for the filter name. This fixes the parsing ofVitor Sessak2009-05-081-1/+1
* Make graphparser.c use av_get_token().Stefano Sabatini2009-05-011-46/+4
* Remove consume_whitespace() and replace it with direct calls toStefano Sabatini2009-04-211-11/+8
* Rename avfilter_parse_graph() to avfilter_graph_parse(), for betterStefano Sabatini2009-02-261-1/+1
* Rename avfilter_destroy_graph() to avfilter_graph_destroy(), for betterStefano Sabatini2009-02-261-1/+1
* Fix avfilter_parse_graph() invalid graph description detection.Stefano Sabatini2009-02-141-1/+1
* Print a warning and fail if the graph description cannot beStefano Sabatini2009-01-161-0/+7
* Change thisIsAVar variable names to this_is_a_var style, moreStefano Sabatini2008-12-271-36/+36
* Fix typo: ommitted -> omitted.Stefano Sabatini2008-12-261-2/+2
* Choose better names for the variables in create_filter().Stefano Sabatini2008-12-261-14/+14
* Split openLinks linked list into openInputs and openOutputsVitor Sessak2008-05-241-34/+21
* One more memory leakVitor Sessak2008-05-241-0/+1
* Cosmetical: move statementVitor Sessak2008-05-241-1/+2
* Plug some memory leaksVitor Sessak2008-05-241-2/+12
* Merge variable initialization and declarationVitor Sessak2008-05-241-2/+1
* CosmeticsVitor Sessak2008-05-241-3/+2
* Remove unnused varVitor Sessak2008-05-241-9/+3
* SimplifyVitor Sessak2008-05-241-9/+5
* Use av_mallocz instead of av_malloc to simplify some codeVitor Sessak2008-05-241-4/+2
* Factor linked list insertion in its own functionVitor Sessak2008-05-241-7/+11
* Remove comment redundant with those in graphparser.hVitor Sessak2008-05-241-3/+0
* These error messages should print the filter name, not the instance nameVitor Sessak2008-05-241-2/+2
* 10l: fix previous commitVitor Sessak2008-05-241-1/+2
* SimplifyVitor Sessak2008-05-241-5/+2
* Remove senseless commentsVitor Sessak2008-05-241-4/+0
* Cosmetics: split setting a var and checking for errorVitor Sessak2008-05-241-3/+8
* Fix doxy commentVitor Sessak2008-05-241-2/+2
* Make parse_link_name() return a pointer to the name readVitor Sessak2008-05-241-10/+9
* Cosmetics: more function reorderingVitor Sessak2008-05-241-23/+23
* Make consume_whitespace() return a number of bytes to be skipedVitor Sessak2008-05-241-8/+8