summaryrefslogtreecommitdiff
path: root/libavfilter/graphparser.c
Commit message (Collapse)AuthorAge
...
* Add simple doxy to link_filter().Stefano Sabatini2010-07-22
| | | | Originally committed as revision 24422 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix documentation for parse_link_name().Stefano Sabatini2010-07-22
| | | | Originally committed as revision 24421 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Consistently use Uppercase for the first character of the logStefano Sabatini2010-07-22
| | | | | | messages. Originally committed as revision 24420 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make link_filter() propagate the generated error code.Stefano Sabatini2010-07-22
| | | | Originally committed as revision 24419 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix style: "if(" -> "if (".Stefano Sabatini2010-07-22
| | | | Originally committed as revision 24418 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use default graph swscale opts when no opts are suppliedBaptiste Coudurier2010-07-03
| | | | Originally committed as revision 24016 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use filter name when graph parser add filtersBaptiste Coudurier2010-05-16
| | | | Originally committed as revision 23147 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make parse_filter() parsing more robust.Stefano Sabatini2009-12-11
| | | | | | | Add ';' and '\n' to the terminating characters for the name of a filter, and ';' to the terminating characters for its args. Originally committed as revision 20800 to svn://svn.ffmpeg.org/ffmpeg/trunk
* "[" is a terminating char for the filter name. This fixes the parsing ofVitor Sessak2009-05-08
| | | | | | | | things like [in] vflip [out]; Originally committed as revision 18772 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make graphparser.c use av_get_token().Stefano Sabatini2009-05-01
| | | | | | This also avoids the need for '\=' escaping. Originally committed as revision 18726 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove consume_whitespace() and replace it with direct calls toStefano Sabatini2009-04-21
| | | | | | strspn(). Originally committed as revision 18645 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename avfilter_parse_graph() to avfilter_graph_parse(), for betterStefano Sabatini2009-02-26
| | | | | | consistency with the rest of the API. Originally committed as revision 17624 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename avfilter_destroy_graph() to avfilter_graph_destroy(), for betterStefano Sabatini2009-02-26
| | | | | | consistency with the rest of the API. Originally committed as revision 17623 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix avfilter_parse_graph() invalid graph description detection.Stefano Sabatini2009-02-14
| | | | | | | See the thread: "[FFmpeg-devel] [PATCH] Fix avfilter-parse-graph()". Originally committed as revision 17222 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Print a warning and fail if the graph description cannot beStefano Sabatini2009-01-16
| | | | | | parsed. Originally committed as revision 16648 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change thisIsAVar variable names to this_is_a_var style, moreStefano Sabatini2008-12-27
| | | | | | consistent with the rest of libav*. Originally committed as revision 16356 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix typo: ommitted -> omitted.Stefano Sabatini2008-12-26
| | | | Originally committed as revision 16353 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Choose better names for the variables in create_filter().Stefano Sabatini2008-12-26
| | | | Originally committed as revision 16320 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split openLinks linked list into openInputs and openOutputsVitor Sessak2008-05-24
| | | | | | Commited in SoC by Vitor Sessak on 2008-05-24 17:20:09 Originally committed as revision 13360 to svn://svn.ffmpeg.org/ffmpeg/trunk
* One more memory leakVitor Sessak2008-05-24
| | | | | | Commited in SoC by Vitor Sessak on 2008-05-24 17:18:03 Originally committed as revision 13359 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetical: move statementVitor Sessak2008-05-24
| | | | | | Commited in SoC by Vitor Sessak on 2008-05-24 17:17:19 Originally committed as revision 13358 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Plug some memory leaksVitor Sessak2008-05-24
| | | | | | Commited in SoC by Vitor Sessak on 2008-05-24 17:15:18 Originally committed as revision 13357 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Merge variable initialization and declarationVitor Sessak2008-05-24
| | | | | | Commited in SoC by Vitor Sessak on 2008-05-24 17:01:01 Originally committed as revision 13356 to svn://svn.ffmpeg.org/ffmpeg/trunk
* CosmeticsVitor Sessak2008-05-24
| | | | | | Commited in SoC by Vitor Sessak on 2008-05-24 17:00:23 Originally committed as revision 13355 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unnused varVitor Sessak2008-05-24
| | | | | | Commited in SoC by Vitor Sessak on 2008-05-24 16:58:58 Originally committed as revision 13354 to svn://svn.ffmpeg.org/ffmpeg/trunk
* SimplifyVitor Sessak2008-05-24
| | | | | | Commited in SoC by Vitor Sessak on 2008-05-24 16:55:47 Originally committed as revision 13353 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use av_mallocz instead of av_malloc to simplify some codeVitor Sessak2008-05-24
| | | | | | Commited in SoC by Vitor Sessak on 2008-05-24 16:53:33 Originally committed as revision 13352 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factor linked list insertion in its own functionVitor Sessak2008-05-24
| | | | | | Commited in SoC by Vitor Sessak on 2008-05-24 13:33:17 Originally committed as revision 13351 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove comment redundant with those in graphparser.hVitor Sessak2008-05-24
| | | | | | Commited in SoC by Vitor Sessak on 2008-05-24 13:10:07 Originally committed as revision 13350 to svn://svn.ffmpeg.org/ffmpeg/trunk
* These error messages should print the filter name, not the instance nameVitor Sessak2008-05-24
| | | | | | Commited in SoC by Vitor Sessak on 2008-05-24 13:08:23 Originally committed as revision 13349 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l: fix previous commitVitor Sessak2008-05-24
| | | | | | Commited in SoC by Vitor Sessak on 2008-05-24 13:06:05 Originally committed as revision 13348 to svn://svn.ffmpeg.org/ffmpeg/trunk
* SimplifyVitor Sessak2008-05-24
| | | | | | Commited in SoC by Vitor Sessak on 2008-05-24 13:05:30 Originally committed as revision 13347 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove senseless commentsVitor Sessak2008-05-24
| | | | | | Commited in SoC by Vitor Sessak on 2008-05-24 13:03:51 Originally committed as revision 13346 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: split setting a var and checking for errorVitor Sessak2008-05-24
| | | | | | Commited in SoC by Vitor Sessak on 2008-05-24 13:03:07 Originally committed as revision 13345 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix doxy commentVitor Sessak2008-05-24
| | | | | | Commited in SoC by Vitor Sessak on 2008-05-24 12:57:58 Originally committed as revision 13344 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make parse_link_name() return a pointer to the name readVitor Sessak2008-05-24
| | | | | | Commited in SoC by Vitor Sessak on 2008-05-24 12:57:20 Originally committed as revision 13343 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: more function reorderingVitor Sessak2008-05-24
| | | | | | Commited in SoC by Vitor Sessak on 2008-05-24 12:53:28 Originally committed as revision 13342 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make consume_whitespace() return a number of bytes to be skipedVitor Sessak2008-05-24
| | | | | | Commited in SoC by Vitor Sessak on 2008-05-24 12:50:32 Originally committed as revision 13341 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: change function orderVitor Sessak2008-05-24
| | | | | | Commited in SoC by Vitor Sessak on 2008-05-24 12:46:27 Originally committed as revision 13340 to svn://svn.ffmpeg.org/ffmpeg/trunk
* SimplifyVitor Sessak2008-05-24
| | | | | | Commited in SoC by Vitor Sessak on 2008-04-23 20:46:17 Originally committed as revision 13339 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Pass the inputs and outputs of avfilter_parse_graph() with a AVFilterInOut ↵Vitor Sessak2008-05-24
| | | | | | | | linked list Commited in SoC by Vitor Sessak on 2008-04-23 20:40:49 Originally committed as revision 13338 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: more indentation consistencyVitor Sessak2008-05-24
| | | | | | Commited in SoC by Vitor Sessak on 2008-04-23 19:24:23 Originally committed as revision 13337 to svn://svn.ffmpeg.org/ffmpeg/trunk
* More cosmetics: make indentation more consistentVitor Sessak2008-05-24
| | | | | | Commited in SoC by Vitor Sessak on 2008-04-23 19:14:08 Originally committed as revision 13336 to svn://svn.ffmpeg.org/ffmpeg/trunk
* More cosmeticsVitor Sessak2008-05-24
| | | | | | Commited in SoC by Vitor Sessak on 2008-04-23 19:13:06 Originally committed as revision 13335 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move code out of ifVitor Sessak2008-05-24
| | | | | | Commited in SoC by Vitor Sessak on 2008-04-23 19:05:32 Originally committed as revision 13334 to svn://svn.ffmpeg.org/ffmpeg/trunk
* CosmeticsVitor Sessak2008-05-24
| | | | | | Commited in SoC by Vitor Sessak on 2008-04-23 19:00:50 Originally committed as revision 13333 to svn://svn.ffmpeg.org/ffmpeg/trunk
* CosmeticsVitor Sessak2008-05-24
| | | | | | Commited in SoC by Vitor Sessak on 2008-04-23 18:52:24 Originally committed as revision 13332 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factor common code out of ifVitor Sessak2008-05-24
| | | | | | Commited in SoC by Vitor Sessak on 2008-04-23 18:41:07 Originally committed as revision 13331 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename another varVitor Sessak2008-05-24
| | | | | | Commited in SoC by Vitor Sessak on 2008-04-23 18:39:42 Originally committed as revision 13330 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename varVitor Sessak2008-05-24
| | | | | | Commited in SoC by Vitor Sessak on 2008-04-23 18:37:42 Originally committed as revision 13329 to svn://svn.ffmpeg.org/ffmpeg/trunk