]> git.sesse.net Git - ffmpeg/history - libavfilter/avfiltergraph.c
Add avfilter_graph_config().
[ffmpeg] / libavfilter / avfiltergraph.c
2010-10-16 Stefano SabatiniAdd avfilter_graph_config().
2010-08-11 Stefano SabatiniChange avfilter_open() signature, from:
2010-07-22 S.N. Hemanth Meena... Generalize pixel format enum fields to int formats.
2010-04-18 Stefano SabatiniFix leak in avfilter_graph_add_filter().
2010-04-13 Stefano SabatiniMake avfilter_graph_add_filter() returns AVERROR(ENOMEM...
2010-01-13 Stefano SabatiniMake query_formats() print an error message if an auto...
2010-01-10 Stefano SabatiniMake query_formats() increment the scaler_count after...
2010-01-10 Stefano SabatiniAdd a log context to avfilter_graph_config_links().
2009-05-31 Stefano SabatiniImplement avfilter_graph_config_links().
2009-02-26 Stefano SabatiniRename avfilter_destroy_graph() to avfilter_graph_destr...
2009-02-23 Stefano SabatiniImplement in AVFilterGraph the scale_sws_opts field...
2009-01-26 Stefano SabatiniImplement avfilter_graph_check_validity().
2008-04-04 Vitor SessakHandle av_realloc() failure
2008-04-04 Vitor SessakUse sizeof(var) instead of sizeof(type)
2008-04-04 Vitor SessakGive a more meaningful instance name to auto-inserted...
2008-04-04 Vitor SessakMerge two ifs
2008-04-04 Vitor SessakRemove unused check
2008-04-04 Vitor SessakCosmetical: alignment
2008-04-04 Vitor SessakRemove some unwanted todos
2008-04-04 Vitor SessakI should not have merged the graph parser with the...
2008-04-04 Vitor SessakReplace consume_char() function by *(*buf)++
2008-04-04 Vitor SessakAdd backslash '\' support to the parser
2008-04-04 Vitor SessakRemove AVFilterGraphDesc struct.
2008-04-04 Vitor SessakRename uninit() to avfilter_destroy_graph() and make...
2008-04-04 Vitor SessakRename functions now static
2008-04-04 Vitor SessakMove funtion to avoid forward declaration
2008-04-04 Vitor SessakMove mess (to be removed) to where it is actually used.
2008-04-04 Vitor SessakRemove usage of AVFilterGraphDesc outside avfiltergraph.c
2008-04-04 Vitor SessakSimplify graph_load_from_desc3()
2008-04-04 Vitor SessakRename variable GraphContext -> AVFilterGraph
2008-04-04 Vitor SessakMerge avfiltergraphdesc.c in avfiltergraph.c
2008-04-04 Vitor SessakRemove avfilter_vf_graph
2008-04-04 Vitor SessakRemove code made unused by the two last patches
2008-04-04 Vitor SessakSplit graph_load_from_dest() to have a version independ...
2008-04-04 Vitor SessakAlmost from scratch rewrite of filter parser.
2008-04-04 Vitor SessakRemove ugly forward declaration
2008-04-04 Vitor SessakFix doxy comment
2008-04-04 Vitor SessakSpelling and puctuation
2008-04-04 Vitor SessakRemove header now made useless
2008-04-04 Vitor SessakRemove author field
2008-04-04 Vitor SessakUse CodecType for pad type
2008-04-04 Vitor SessakHeader inclusion redux
2008-04-04 Vitor SessakNits: more punctuation and capitalization
2008-04-04 Vitor SessakImplement poll_frame() method. Fix ffmpeg.c bug with
2008-04-04 Vitor SessakRework link property configuration system.
2008-04-04 Vitor SessakUse separate fake filters for exporting inputs and...
2008-04-04 Vitor SessakUse a filter graph description for creating simple...
2008-04-04 Vitor SessakUse av_log(ctx, ...) instead of av_log(NULL, ...)
2008-04-04 Vitor Sessak10l
2008-04-04 Vitor SessakRewrite colorspace negotiation.
2008-04-04 Vitor SessakFix a small memory leak
2008-04-04 Vitor Sessakinitialize filter graphs completely even if there is...
2008-04-04 Vitor SessakHandle failure properly
2008-04-04 Vitor SessakRemove useless empty functions
2008-04-04 Vitor SessakSilence warning caused by my last commit
2008-04-04 Vitor SessakMinor simplification
2008-04-04 Vitor SessakPrefix names of filter structs
2008-04-04 Vitor SessakRename avfilter_create to avfilter_open and remove...
2008-04-04 Vitor SessakDoxygenize some comments
2008-04-04 Vitor SessakRemove the data parameter from draw_slice(). It's...
2008-04-04 Vitor SessakAllow creation of filter graphs from a graph descriptio...
2008-04-04 Vitor SessakLet request_frame() indicate success or failure
2008-04-04 Vitor SessakNeed to copy over colorspace property too
2008-04-04 Vitor SessakFix behavior when exporting output pad with default...
2008-04-04 Vitor SessakLet the filter graph export input and output pads from...
2008-04-04 Vitor SessakSeparate the process of creating links between filters...
2008-04-04 Vitor SessakFix memory leak.
2008-04-04 Vitor SessakMake the filter graph just another normal filter.
2008-04-04 Vitor SessakAllow code to pass data to filters it creates.
2008-04-04 Vitor SessakDon't mangle the input strings. The caller may want...
2008-04-04 Vitor SessakEnsure that the filter_count member is reset to zero...
2008-04-04 Vitor SessakFix possible segfault
2008-04-04 Vitor SessakMove simple filter chain loading code over to the filte...
2008-04-04 Vitor SessakMove destruction of the graph's filters to its own...
2008-04-04 Vitor SessakSplit filter graphs out into their own source & header...