summaryrefslogtreecommitdiff
path: root/libavfilter/avfiltergraph.c
Commit message (Collapse)AuthorAge
* Fix leak in avfilter_graph_add_filter().Stefano Sabatini2010-04-18
| | | | | | | | In case of reallocation failure the pointer to the original filter array was lost. The correct behavior seems to just keep the old array and count. Originally committed as revision 22905 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make avfilter_graph_add_filter() returns AVERROR(ENOMEM) in case ofStefano Sabatini2010-04-13
| | | | | | failed reallocation, rather than just -1. Originally committed as revision 22878 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make query_formats() print an error message if an auto-inserted scaleStefano Sabatini2010-01-13
| | | | | | filter cannot convert between input and output formats. Originally committed as revision 21176 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make query_formats() increment the scaler_count after each scalerStefano Sabatini2010-01-10
| | | | | | insertion. Originally committed as revision 21124 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 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
* 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
* 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
* Use sizeof(var) instead of sizeof(type)Vitor Sessak2008-04-04
| | | | | | Commited in SoC by Vitor Sessak on 2008-04-03 19:53:18 Originally committed as revision 12753 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Give a more meaningful instance name to auto-inserted scalerVitor Sessak2008-04-04
| | | | | | Commited in SoC by Vitor Sessak on 2008-04-03 16:51:39 Originally committed as revision 12752 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Merge two ifsVitor Sessak2008-04-04
| | | | | | Commited in SoC by Vitor Sessak on 2008-04-03 16:44:27 Originally committed as revision 12751 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused checkVitor Sessak2008-04-04
| | | | | | Commited in SoC by Vitor Sessak on 2008-04-03 16:38:51 Originally committed as revision 12750 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetical: alignmentVitor Sessak2008-04-04
| | | | | | Commited in SoC by Vitor Sessak on 2008-04-03 16:36:13 Originally committed as revision 12749 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove some unwanted todosVitor Sessak2008-04-04
| | | | | | Commited in SoC by Vitor Sessak on 2008-04-03 16:32:37 Originally committed as revision 12748 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
* Replace consume_char() function by *(*buf)++Vitor Sessak2008-04-04
| | | | | | Commited in SoC by Vitor Sessak on 2008-03-30 15:46:38 Originally committed as revision 12745 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add backslash '\' support to the parserVitor Sessak2008-04-04
| | | | | | Commited in SoC by Vitor Sessak on 2008-03-29 16:26:47 Originally committed as revision 12744 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove AVFilterGraphDesc struct.Vitor Sessak2008-04-04
| | | | | | | | | Now the parser link the filters from the graph directly with avfilter_link(). Commited in SoC by Vitor Sessak on 2008-03-29 15:12:47 Originally committed as revision 12743 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
* Rename functions now staticVitor Sessak2008-04-04
| | | | | | Commited in SoC by Vitor Sessak on 2008-03-26 21:06:01 Originally committed as revision 12741 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move funtion to avoid forward declarationVitor Sessak2008-04-04
| | | | | | Commited in SoC by Vitor Sessak on 2008-03-26 20:57:17 Originally committed as revision 12740 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
* Simplify graph_load_from_desc3()Vitor Sessak2008-04-04
| | | | | | Commited in SoC by Vitor Sessak on 2008-03-26 20:37:43 Originally committed as revision 12737 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
* Merge avfiltergraphdesc.c in avfiltergraph.cVitor Sessak2008-04-04
| | | | | | Commited in SoC by Vitor Sessak on 2008-03-24 20:46:50 Originally committed as revision 12735 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 code made unused by the two last patchesVitor Sessak2008-04-04
| | | | | | Commited in SoC by Vitor Sessak on 2008-03-24 19:29:15 Originally committed as revision 12732 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
* 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
* Fix doxy commentVitor Sessak2008-04-04
| | | | | | Commited in SoC by Vitor Sessak on 2008-02-24 11:30:41 Originally committed as revision 12727 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
* Remove header now made uselessVitor Sessak2008-04-04
| | | | | | Commited in SoC by Vitor Sessak on 2008-02-12 20:59:51 Originally committed as revision 12723 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove author fieldVitor Sessak2008-04-04
| | | | | | | | Suggested by Baptiste Coudurier Commited in SoC by Vitor Sessak on 2008-02-11 19:56:27 Originally committed as revision 12722 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use CodecType for pad typeVitor Sessak2008-04-04
| | | | | | Commited in SoC by Vitor Sessak on 2008-02-10 20:41:57 Originally committed as revision 12721 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Header inclusion reduxVitor Sessak2008-04-04
| | | | | | Commited in SoC by Vitor Sessak on 2008-02-10 08:46:50 Originally committed as revision 12720 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Nits: more punctuation and capitalizationVitor Sessak2008-04-04
| | | | | | Commited in SoC by Vitor Sessak on 2008-02-09 20:02:29 Originally committed as revision 12719 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement poll_frame() method. Fix ffmpeg.c bug withVitor Sessak2008-04-04
| | | | | | | | vf_fps filter. Commited in SoC by Vitor Sessak on 2008-02-06 19:55:36 Originally committed as revision 12718 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rework link property configuration system.Vitor Sessak2008-04-04
| | | | | | | | | | 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 Originally committed as revision 12717 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use separate fake filters for exporting inputs and outputs from filter graphs.Vitor Sessak2008-04-04
| | | | | | | | | This makes the code a little less confusing, and is needed for the patch to improve the link configuration process, to be committed next. Commited in SoC by Bobby Bingham on 2007-12-24 02:53:56 Originally committed as revision 12716 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
* Use av_log(ctx, ...) instead of av_log(NULL, ...)Vitor Sessak2008-04-04
| | | | | | Commited in SoC by Vitor Sessak on 2007-12-21 11:10:29 Originally committed as revision 12713 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10lVitor Sessak2008-04-04
| | | | | | Commited in SoC by Bobby Bingham on 2007-12-20 20:21:19 Originally committed as revision 12712 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
* Fix a small memory leakVitor Sessak2008-04-04
| | | | | | Commited in SoC by Bobby Bingham on 2007-12-20 19:30:34 Originally committed as revision 12710 to svn://svn.ffmpeg.org/ffmpeg/trunk
* initialize filter graphs completely even if there is no list of filtersVitor Sessak2008-04-04
| | | | | | | | given to initially load. Commited in SoC by Bobby Bingham on 2007-12-20 16:50:45 Originally committed as revision 12709 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Handle failure properlyVitor Sessak2008-04-04
| | | | | | Commited in SoC by Vitor Sessak on 2007-11-29 19:35:17 Originally committed as revision 12708 to svn://svn.ffmpeg.org/ffmpeg/trunk