summaryrefslogtreecommitdiff
path: root/libavfilter/avfiltergraph.h
Commit message (Collapse)AuthorAge
* Add a log context to avfilter_graph_config_links().Stefano Sabatini2010-01-10
| | | | Originally committed as revision 21121 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement avfilter_graph_config_links().Stefano Sabatini2009-05-31
| | | | Originally committed as revision 19066 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Apply documentation fixes: use third person, fix grammar and removeStefano Sabatini2009-05-14
| | | | | | inconsistent '\p'. Originally committed as revision 18823 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
* Implement in AVFilterGraph the scale_sws_opts field, and pass itsStefano Sabatini2009-02-23
| | | | | | value in the args for the auto-inserted scale filters. Originally committed as revision 17547 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement avfilter_graph_check_validity().Stefano Sabatini2009-01-26
| | | | Originally committed as revision 16809 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix and extend documentation for avfilter_graph_get_filter().Stefano Sabatini2008-12-26
| | | | Originally committed as revision 16354 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Globally rename the header inclusion guard names.Stefano Sabatini2008-08-31
| | | | | | | | | Consistently apply this rule: the guard name is obtained from the filename by stripping the leading "lib", converting '/' and '.' to '_' and uppercasing the resulting name. Guard names in the root directory have to be prefixed by "FFMPEG_". Originally committed as revision 15120 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Handle av_realloc() failureVitor Sessak2008-04-04
| | | | | | Commited in SoC by Vitor Sessak on 2008-04-04 15:35:38 Originally committed as revision 12754 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove declaration of nonexisting functionVitor Sessak2008-04-04
| | | | | | Commited in SoC by Vitor Sessak on 2008-04-03 16:30:09 Originally committed as revision 12747 to svn://svn.ffmpeg.org/ffmpeg/trunk
* I should not have merged the graph parser with the graphVitor Sessak2008-04-04
| | | | | | | | framework. Split it. Commited in SoC by Vitor Sessak on 2008-04-03 16:29:07 Originally committed as revision 12746 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename uninit() to avfilter_destroy_graph() and make it non-staticVitor Sessak2008-04-04
| | | | | | Commited in SoC by Vitor Sessak on 2008-03-27 19:34:24 Originally committed as revision 12742 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move mess (to be removed) to where it is actually used.Vitor Sessak2008-04-04
| | | | | | Commited in SoC by Vitor Sessak on 2008-03-26 20:56:05 Originally committed as revision 12739 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove usage of AVFilterGraphDesc outside avfiltergraph.cVitor Sessak2008-04-04
| | | | | | Commited in SoC by Vitor Sessak on 2008-03-26 20:51:24 Originally committed as revision 12738 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename variable GraphContext -> AVFilterGraphVitor Sessak2008-04-04
| | | | | | Commited in SoC by Vitor Sessak on 2008-03-26 20:31:53 Originally committed as revision 12736 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove avfilter_vf_graphVitor Sessak2008-04-04
| | | | | | Commited in SoC by Vitor Sessak on 2008-03-24 20:13:01 Originally committed as revision 12734 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove more leftovers from the old parserVitor Sessak2008-04-04
| | | | | | Commited in SoC by Vitor Sessak on 2008-03-24 19:58:44 Originally committed as revision 12733 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split graph_load_from_dest() to have a version independent of avfilter_vf_graphVitor Sessak2008-04-04
| | | | | | Commited in SoC by Vitor Sessak on 2008-03-24 19:19:38 Originally committed as revision 12731 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove declaration of non-existing functionsVitor Sessak2008-04-04
| | | | | | Commited in SoC by Vitor Sessak on 2008-03-24 19:11:27 Originally committed as revision 12730 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Almost from scratch rewrite of filter parser.Vitor Sessak2008-04-04
| | | | | | | | | | Functional as is, but still work-in-progress in the sense that some things need to be fixed before sending it as a patch to SVN. Commited in SoC by Vitor Sessak on 2008-03-20 21:48:30 Originally committed as revision 12729 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove ugly forward declarationVitor Sessak2008-04-04
| | | | | | Commited in SoC by Vitor Sessak on 2008-02-24 11:41:22 Originally committed as revision 12728 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Spelling and puctuationVitor Sessak2008-04-04
| | | | | | Commited in SoC by Vitor Sessak on 2008-02-16 17:52:49 Originally committed as revision 12726 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make comment match codeVitor Sessak2008-04-04
| | | | | | Commited in SoC by Vitor Sessak on 2008-02-16 17:48:31 Originally committed as revision 12725 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make multiple inclusion guard adhere to conventionVitor Sessak2008-04-04
| | | | | | Commited in SoC by Vitor Sessak on 2008-02-16 17:48:09 Originally committed as revision 12724 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use a filter graph description for creating simple chain graphs so weVitor Sessak2008-04-04
| | | | | | | | can reuse the same graph creation code. Commited in SoC by Bobby Bingham on 2007-12-22 19:13:04 Originally committed as revision 12715 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make filter graph description parsing code independent of the code toVitor Sessak2008-04-04
| | | | | | | | read said description from a file. Commited in SoC by Bobby Bingham on 2007-12-22 17:16:21 Originally committed as revision 12714 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rewrite colorspace negotiation.Vitor Sessak2008-04-04
| | | | | | Commited in SoC by Bobby Bingham on 2007-12-20 19:36:26 Originally committed as revision 12711 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow creation of filter graphs from a graph description structure whichVitor Sessak2008-04-04
| | | | | | | | can be created programmatically or loaded from a file. Commited in SoC by Bobby Bingham on 2007-08-14 22:27:05 Originally committed as revision 12700 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Separate the process of creating links between filters from that of configuringVitor Sessak2008-04-04
| | | | | | | | the links. Commited in SoC by Bobby Bingham on 2007-08-07 21:02:18 Originally committed as revision 12695 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make the filter graph just another normal filter.Vitor Sessak2008-04-04
| | | | | | Commited in SoC by Bobby Bingham on 2007-07-31 20:08:38 Originally committed as revision 12693 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow code to pass data to filters it creates.Vitor Sessak2008-04-04
| | | | | | Commited in SoC by Bobby Bingham on 2007-07-15 16:45:50 Originally committed as revision 12692 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move simple filter chain loading code over to the filter graph.Vitor Sessak2008-04-04
| | | | | | Commited in SoC by Bobby Bingham on 2007-07-14 22:26:37 Originally committed as revision 12688 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split filter graphs out into their own source & header files.Vitor Sessak2008-04-04
Commited in SoC by Bobby Bingham on 2007-07-14 21:20:21 Originally committed as revision 12686 to svn://svn.ffmpeg.org/ffmpeg/trunk