summaryrefslogtreecommitdiff
path: root/libavfilter
Commit message (Collapse)AuthorAge
* Enhance pad filter command-line description.Stefano Sabatini2010-07-03
| | | | | | Based on a patch by John Calcote $name.$surname@gmail.com. Originally committed as revision 24030 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use default graph swscale opts when no opts are suppliedBaptiste Coudurier2010-07-03
| | | | Originally committed as revision 24016 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix misspelled parameter names in Doxygen documentation.Diego Biurrun2010-07-02
| | | | | | This fixes one Doxygen warning each. Originally committed as revision 23970 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move colorspace.h from libavcodec to libavutil.Stefano Sabatini2010-07-01
| | | | | | Avoid a compile-time dependency of the pad filter on libavcodec. Originally committed as revision 23940 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set pad description with NULL_IF_CONFIG_SMALL(), consistent with theStefano Sabatini2010-06-30
| | | | | | other filters. Originally committed as revision 23923 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Improve description for the pad filter.Stefano Sabatini2010-06-30
| | | | Originally committed as revision 23922 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix grammar errors in documentationMåns Rullgård2010-06-30
| | | | Originally committed as revision 23904 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bump micro and add APIchanges entry after av_parse_color() extension.Stefano Sabatini2010-06-27
| | | | Originally committed as revision 23838 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: merge "} else" and "if (...) {" lines, less confusing.Stefano Sabatini2010-06-27
| | | | Originally committed as revision 23837 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent after the last commit.Stefano Sabatini2010-06-27
| | | | Originally committed as revision 23836 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Extend color syntax, make it accept an alpha component specifier.Stefano Sabatini2010-06-27
| | | | Originally committed as revision 23835 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename ColorEntry.rgba_color to rgb_color and do not reserve a fourthStefano Sabatini2010-06-27
| | | | | | | byte for the alpha component, as it is never used, clarify the code and prevent bad usage of it. Originally committed as revision 23834 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a const declaration, fixing a warningEli Friedman2010-06-27
| | | | | | Patch by Eli Friedman, eli dot friedman at gmail Originally committed as revision 23830 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix clang warning, make initialization more readableEli Friedman2010-06-27
| | | | | | Patch by Eli Friedman, eli dot friedman at gmail Originally committed as revision 23829 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use enum PixelFormat to silence one icc warning:Carl Eugen Hoyos2010-06-17
| | | | | | | | warning #188: enumerated type mixed with another type enum PixelFormat pix_fmts[] = { c->pix_fmt, PIX_FMT_NONE }; ^ Originally committed as revision 23640 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add #include so make checkheaders passesMichael Niedermayer2010-06-17
| | | | Originally committed as revision 23637 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document what av_get_token() returns in case of allocation failure.Stefano Sabatini2010-06-13
| | | | Originally committed as revision 23596 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Resort @param in av_get_token() doxy to reflect the same order theyStefano Sabatini2010-06-13
| | | | | | have in the function. Originally committed as revision 23595 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing check to av_get_token().Stefano Sabatini2010-06-13
| | | | Originally committed as revision 23594 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Prefix value for flags with "0x", to make it clear that it is anStefano Sabatini2010-05-23
| | | | | | hexadecimal value. Originally committed as revision 23262 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make ff_random_get_seed public, rename to av_get_random_seed, export the headerMartin Storsjö2010-05-23
| | | | | | | Keep an old ff_ named function for binary compatibility until the next major bump. Originally committed as revision 23254 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use filter name when graph parser add filtersBaptiste Coudurier2010-05-16
| | | | Originally committed as revision 23147 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove the name of the file from the @file doxy, it is unnecessary andStefano Sabatini2010-05-13
| | | | | | inconsistent with the other files. Originally committed as revision 23122 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make the init and config_filter callbacks of the pad filter returnStefano Sabatini2010-05-13
| | | | | | AVERROR(EINVAL) rather than -1 in case of invalid parameters. Originally committed as revision 23121 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make av_parse_color() return AVERROR(EINVAL) rather than -1.Stefano Sabatini2010-05-13
| | | | Originally committed as revision 23120 to svn://svn.ffmpeg.org/ffmpeg/trunk
* silence gcc warning about potential uninitialized usageBaptiste Coudurier2010-05-11
| | | | Originally committed as revision 23093 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Alloc 16 extra bytes in libavfilter frames. Needed for MMX-optimized swscale.Vitor Sessak2010-05-10
| | | | | | Fix issue 1924. Originally committed as revision 23077 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bump lavfi minor after the addition of the fields interlaced andStefano Sabatini2010-05-09
| | | | | | top_field_first in AVFilterPicRef, done in r23044. Originally committed as revision 23066 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make config_props() show conversion information before to create theStefano Sabatini2010-05-07
| | | | | | | | | | swscale context. This makes eventual warnings issued in case of swscale context creation failure to be shown after the conversion information rather than before, which is slightly less confusing. Originally committed as revision 23056 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Log input size, input format and swscale flags used for conversion inStefano Sabatini2010-05-07
| | | | | | | | config_props(). Useful for debugging. Originally committed as revision 23055 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vf_pad: fix mixed code and declarationsMåns Rullgård2010-05-07
| | | | Originally committed as revision 23054 to svn://svn.ffmpeg.org/ffmpeg/trunk
* c99 sucks. Replacing scanf("%i") by strtoul()Michael Niedermayer2010-05-07
| | | | Originally committed as revision 23053 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add pad filter.Michael Niedermayer2010-05-07
| | | | Originally committed as revision 23046 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Try to keep track of interlaced and top field first.Michael Niedermayer2010-05-07
| | | | Originally committed as revision 23044 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Enable vsrc_bufferMichael Niedermayer2010-05-07
| | | | Originally committed as revision 23042 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support setting flags for sws.Michael Niedermayer2010-05-07
| | | | Originally committed as revision 23041 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add "Memory buffer source filter" from SOC.Michael Niedermayer2010-05-07
| | | | | | This is needed by the current SOC-ffmpeg.c code. Originally committed as revision 23039 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add version to AVClass so we can add to and use fields of AVClass without ↵Michael Niedermayer2010-04-28
| | | | | | ABI issues. Originally committed as revision 22987 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove explicit filename from Doxygen @file commands.Diego Biurrun2010-04-20
| | | | | | | | Passing an explicit filename to this command is only necessary if the documentation in the @file block refers to a file different from the one the block resides in. Originally committed as revision 22921 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 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
* Apply grammar/consistency nits to avfilter_graph_add_filter() doxy.Stefano Sabatini2010-04-11
| | | | Originally committed as revision 22842 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bump libavfilter minor version and Changelog for unsharp filterBobby Bingham2010-04-10
| | | | Originally committed as revision 22830 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add unsharp video filter.Bobby Bingham2010-04-07
| | | | | | Contributed by Daniel G. Taylor (dan/at/programmer-art/dot/org) Originally committed as revision 22813 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove variable whose value was never read. Found by clang.Bobby Bingham2010-04-03
| | | | Originally committed as revision 22794 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini2010-03-30
| | | | | | is deprecated and will be dropped at the next major bump. Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk
* The vflip filter does not need to keep ownership of a picture reference.Bobby Bingham2010-03-18
| | | | | | | Avoid creating and releasing useless extra picture references in the start_frame and end_frame callbacks. Originally committed as revision 22596 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use the new null callbacks to simplify filters and reduce duplicated code.Bobby Bingham2010-03-18
| | | | Originally committed as revision 22595 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Create a set of null callback functions.Bobby Bingham2010-03-18
| | | | | | These are useful for filters which don't modify the image data. Originally committed as revision 22594 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: vertical alignBobby Bingham2010-03-17
| | | | Originally committed as revision 22578 to svn://svn.ffmpeg.org/ffmpeg/trunk