summaryrefslogtreecommitdiff
path: root/libavfilter
Commit message (Collapse)AuthorAge
* Remove the const qualifier for the name field of AVFilterInOut, sinceStefano Sabatini2009-06-01
| | | | | | | it is meant to be freed. Fix warnings. Originally committed as revision 19072 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
* Fix grammar for avfilter_graph_parse() doxy.Stefano Sabatini2009-05-22
| | | | Originally committed as revision 18900 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move ALIGN macro to libavutil/common.h and use it in various placesDavid Conrad2009-05-22
| | | | Originally committed as revision 18898 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Log with level AV_LOG_ERROR if av_parse_color() cannot recognize aStefano Sabatini2009-05-18
| | | | | | color. Originally committed as revision 18868 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement av_set_options_string().Stefano Sabatini2009-05-14
| | | | Originally committed as revision 18832 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support in av_parse_color() to a "random" color name, which willStefano Sabatini2009-05-14
| | | | | | | result in a randomly choosen random color, as it is with the "bikeshed" color. Originally committed as revision 18828 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make case insensitive the match for the color name inStefano Sabatini2009-05-14
| | | | | | av_parse_color(). Originally committed as revision 18827 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use a single space after an ending period and the beginning of theStefano Sabatini2009-05-14
| | | | | | next sentence, consistent with the FFmpeg documentation style. Originally committed as revision 18824 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
* "[" 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
* Accept "bikeshed" as a random color.Ramiro Polla2009-05-06
| | | | Originally committed as revision 18758 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement av_parse_color().Stefano Sabatini2009-05-05
| | | | Originally committed as revision 18748 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Prefer (void) over () in function prototype.Stefano Sabatini2009-05-01
| | | | Originally committed as revision 18727 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
* av_get_token()Michael Niedermayer2009-05-01
| | | | | | based on a patch by Stefano Sabatini Originally committed as revision 18725 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
* Also copy pixel_aspect when copying the picref in avfilter_start_frame.Cédric Schieli2009-04-14
| | | | | | This avoids a division by zero in '[in]fifo,scale[out]' Originally committed as revision 18507 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make static the list of registered filters.Víctor Paesa2009-03-26
| | | | Originally committed as revision 18198 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove old scaler.Michael Niedermayer2009-03-03
| | | | Originally committed as revision 17786 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
* 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
* 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
* Implement avfilter_graph_check_validity().Stefano Sabatini2009-01-26
| | | | Originally committed as revision 16809 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
* replace all occurrence of ENABLE_ by the corresponding CONFIG_, HAVE_ or ARCH_Aurelien Jacobs2009-01-14
| | | | | | and remove all ENABLE_ definitions. Originally committed as revision 16600 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent after the last commit, while at it also add some spaces forStefano Sabatini2009-01-12
| | | | | | improving readability. Originally committed as revision 16566 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make avfilter_open() set to NULL the pads and the filters when theStefano Sabatini2009-01-12
| | | | | | | corresponding count is zero, rather than allocate a 16 bytes sized block for them. Improve safety. Originally committed as revision 16565 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement the avfilter_default_draw_slice() handler and use it inStefano Sabatini2009-01-11
| | | | | | | avfilter_draw_slice() when the draw_slice callback is not defined in the input pad. Originally committed as revision 16554 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix capitalization and missing periods issues.Stefano Sabatini2009-01-10
| | | | Originally committed as revision 16517 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: break line to make it not longer than 80 chars.Stefano Sabatini2009-01-02
| | | | Originally committed as revision 16405 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix typos.Stefano Sabatini2008-12-29
| | | | Originally committed as revision 16384 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mention in the documentation of avfilter_poll_frame() that it returnsStefano Sabatini2008-12-28
| | | | | | a negative value in case of error. Originally committed as revision 16372 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 and extend documentation for avfilter_graph_get_filter().Stefano Sabatini2008-12-26
| | | | Originally committed as revision 16354 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
* Fix documentation for avfilter_parse_graph().Stefano Sabatini2008-12-26
| | | | Originally committed as revision 16319 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use PIX_FMT_NONE to silence icc warning #188:Carl Eugen Hoyos2008-11-26
| | | | | | enumerated type mixed with another type Originally committed as revision 15942 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Consistently place HEADERS before OBJS in all Makefiles.Diego Biurrun2008-11-20
| | | | Originally committed as revision 15896 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetic: align backslashes in makefilesMåns Rullgård2008-10-26
| | | | Originally committed as revision 15717 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
* Fix a typo.Stefano Sabatini2008-08-28
| | | | Originally committed as revision 15009 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reword a sentence in a doxy making its interpretation clearer.Stefano Sabatini2008-08-28
| | | | Originally committed as revision 15008 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement avfilter_version().Stefano Sabatini2008-08-08
| | | | Originally committed as revision 14669 to svn://svn.ffmpeg.org/ffmpeg/trunk
* consistency cosmetics: indices --> indexesDiego Biurrun2008-05-26
| | | | Originally committed as revision 13444 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