Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-04-19Fix leak in avfilter_graph_add_filter().Stefano Sabatini
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
2010-04-14Make avfilter_graph_add_filter() returns AVERROR(ENOMEM) in case ofStefano Sabatini
failed reallocation, rather than just -1. Originally committed as revision 22878 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-13Make query_formats() print an error message if an auto-inserted scaleStefano Sabatini
filter cannot convert between input and output formats. Originally committed as revision 21176 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-10Make query_formats() increment the scaler_count after each scalerStefano Sabatini
insertion. Originally committed as revision 21124 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-10Add a log context to avfilter_graph_config_links().Stefano Sabatini
Originally committed as revision 21121 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-31Implement avfilter_graph_config_links().Stefano Sabatini
Originally committed as revision 19066 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-27Rename avfilter_destroy_graph() to avfilter_graph_destroy(), for betterStefano Sabatini
consistency with the rest of the API. Originally committed as revision 17623 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-24Implement in AVFilterGraph the scale_sws_opts field, and pass itsStefano Sabatini
value in the args for the auto-inserted scale filters. Originally committed as revision 17547 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-26Implement avfilter_graph_check_validity().Stefano Sabatini
Originally committed as revision 16809 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-04-05Handle av_realloc() failureVitor Sessak
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
2008-04-05Use sizeof(var) instead of sizeof(type)Vitor Sessak
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
2008-04-05Give a more meaningful instance name to auto-inserted scalerVitor Sessak
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
2008-04-05Merge two ifsVitor Sessak
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
2008-04-05Remove unused checkVitor Sessak
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
2008-04-05Cosmetical: alignmentVitor Sessak
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
2008-04-05Remove some unwanted todosVitor Sessak
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
2008-04-05I should not have merged the graph parser with the graphVitor Sessak
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
2008-04-05Replace consume_char() function by *(*buf)++Vitor Sessak
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
2008-04-05Add backslash '\' support to the parserVitor Sessak
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
2008-04-05Remove AVFilterGraphDesc struct.Vitor Sessak
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
2008-04-05Rename uninit() to avfilter_destroy_graph() and make it non-staticVitor Sessak
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
2008-04-05Rename functions now staticVitor Sessak
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
2008-04-05Move funtion to avoid forward declarationVitor Sessak
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
2008-04-05Move mess (to be removed) to where it is actually used.Vitor Sessak
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
2008-04-05Remove usage of AVFilterGraphDesc outside avfiltergraph.cVitor Sessak
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
2008-04-05Simplify graph_load_from_desc3()Vitor Sessak
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
2008-04-05Rename variable GraphContext -> AVFilterGraphVitor Sessak
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
2008-04-05Merge avfiltergraphdesc.c in avfiltergraph.cVitor Sessak
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
2008-04-05Remove avfilter_vf_graphVitor Sessak
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
2008-04-05Remove code made unused by the two last patchesVitor Sessak
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
2008-04-05Split graph_load_from_dest() to have a version independent of avfilter_vf_graphVitor Sessak
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
2008-04-05Almost from scratch rewrite of filter parser.Vitor Sessak
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
2008-04-05Remove ugly forward declarationVitor Sessak
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
2008-04-05Fix doxy commentVitor Sessak
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
2008-04-05Spelling and puctuationVitor Sessak
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
2008-04-05Remove header now made uselessVitor Sessak
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
2008-04-05Remove author fieldVitor Sessak
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
2008-04-05Use CodecType for pad typeVitor Sessak
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
2008-04-05Header inclusion reduxVitor Sessak
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
2008-04-05Nits: more punctuation and capitalizationVitor Sessak
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
2008-04-05Implement poll_frame() method. Fix ffmpeg.c bug withVitor Sessak
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
2008-04-05Rework link property configuration system.Vitor Sessak
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
2008-04-05Use separate fake filters for exporting inputs and outputs from filter graphs.Vitor Sessak
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
2008-04-05Use a filter graph description for creating simple chain graphs so weVitor Sessak
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
2008-04-05Use av_log(ctx, ...) instead of av_log(NULL, ...)Vitor Sessak
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
2008-04-0510lVitor Sessak
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
2008-04-05Rewrite colorspace negotiation.Vitor Sessak
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
2008-04-05Fix a small memory leakVitor Sessak
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
2008-04-05initialize filter graphs completely even if there is no list of filtersVitor Sessak
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
2008-04-05Handle failure properlyVitor Sessak
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