summaryrefslogtreecommitdiff
path: root/libavfilter
Commit message (Collapse)AuthorAge
* Deprecate av_parse_video_frame_size() and av_parse_video_frame_rate()Stefano Sabatini2010-07-26
| | | | | | | | | | | in favor of the newly added corresponding functions av_parse_video_size() and av_parse_video_rate() defined in libavcore/parseutils.h. This change also adds a linking-time dependency of libavcodec and of libavfilter on libavcore. Originally committed as revision 24518 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove dependency on avcodec_get_chroma_sub_sample() and libavcodec,Stefano Sabatini2010-07-22
| | | | | | use the pixdesc API instead. Originally committed as revision 24440 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Generalize pixel format enum fields to int formats.S.N. Hemanth Meenakshisundaram2010-07-22
| | | | | | | | | | | | | | | | | | | | | | | | | | This is needed to make the libavfilter framework work with audio filters. In particular add a type field to AVFilterLink, change the field types: enum PixelFormat format -> int format in AVFilterBuffer enum PixelFormat *formats -> int *formats in AVFilterFormats enum PixelFormat *format -> int format in AVFilterLink and change the function signatures: AVFilterFormats *avfilter_make_format_list(const enum PixelFormat *pix_fmts); -> AVFilterFormats *avfilter_make_format_list(const int *fmts); int avfilter_add_colorspace(AVFilterFormats **avff, enum PixelFormat pix_fmt); -> int avfilter_add_format(AVFilterFormats **avff, int fmt); AVFilterFormats *avfilter_all_colorspaces(void); -> AVFilterFormats *avfilter_all_formats(enum AVMediaType type); This change breaks libavfilter API/ABI. Patch by S.N. Hemanth Meenakshisundaram |smeenaks|ucsd|edu|. Originally committed as revision 24424 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document create_filter().Stefano Sabatini2010-07-22
| | | | Originally committed as revision 24423 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add simple doxy to link_filter().Stefano Sabatini2010-07-22
| | | | Originally committed as revision 24422 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix documentation for parse_link_name().Stefano Sabatini2010-07-22
| | | | Originally committed as revision 24421 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Consistently use Uppercase for the first character of the logStefano Sabatini2010-07-22
| | | | | | messages. Originally committed as revision 24420 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make link_filter() propagate the generated error code.Stefano Sabatini2010-07-22
| | | | Originally committed as revision 24419 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix style: "if(" -> "if (".Stefano Sabatini2010-07-22
| | | | Originally committed as revision 24418 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Extend buffer source syntax.Stefano Sabatini2010-07-21
| | | | | | | Make the buffer source accept a string for specifying the input pixel format. Originally committed as revision 24387 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add an informational trace in init().Stefano Sabatini2010-07-21
| | | | Originally committed as revision 24386 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clarify logic and feedback of the init() function.Stefano Sabatini2010-07-21
| | | | Originally committed as revision 24385 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add description to the buffer source.Stefano Sabatini2010-07-21
| | | | Originally committed as revision 24384 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Apply misc cosmetical style fixes.Stefano Sabatini2010-07-20
| | | | Originally committed as revision 24365 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add @file doxy.Stefano Sabatini2010-07-20
| | | | Originally committed as revision 24364 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make avfilter.c dprintf* functions internal and declare them in anStefano Sabatini2010-07-18
| | | | | | internal.h header, so they can be easily used from other files. Originally committed as revision 24319 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move the AV_PERM_* flags definition outside the AVFilterPicRefS.N. Hemanth Meenakshisundaram2010-07-17
| | | | | | | | | | | definition. This way it is easier to reference them in other structures, for example in the pending AVFilterSamplesRef struct. Patch by S.N. Hemanth Meenakshisundaram smeenaks AT ucsd DOT edu. Originally committed as revision 24294 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clarify AVFilterBuffer documentation, make it clear that it is notStefano Sabatini2010-07-17
| | | | | | necessarily video-related. Originally committed as revision 24293 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove AVFilterBuffer w and h fields.S.N. Hemanth Meenakshisundaram2010-07-17
| | | | | | | | | | These fields are never used, and they do not seem to belong to AVFilterBuffer anymore, now that it is now a media-independent structure and these fields are video-related. Patch by S.N. Hemanth Meenakshisundaram smeenaks ! ucsd ! edu. Originally committed as revision 24291 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename AVFilterPic to AVFilterBuffer.S.N. Hemanth Meenakshisundaram2010-07-17
| | | | | | | | | The struct is going to be used for audio data as well, so the new name is less misleading. Patch by S.N. Hemanth Meenakshisundaram smeenaks AT ucsd DOT edu. Originally committed as revision 24284 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add color source.Stefano Sabatini2010-07-17
| | | | Originally committed as revision 24282 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use avfilter_copy_picref_props() along lavfi.Víctor Paesa2010-07-11
| | | | Originally committed as revision 24196 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent after r24101.Stefano Sabatini2010-07-08
| | | | Originally committed as revision 24126 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename read/write_line() to av_read/write_image_line().Stefano Sabatini2010-07-07
| | | | | | | | | The old names were not av_ prefixed, and they were causing linking failure on many platforms. The new names are also more descriptive. Patch by Stefano Sabatini. Originally committed as revision 24101 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add pixdesctest filter and corresponding test.Stefano Sabatini2010-07-07
| | | | Originally committed as revision 24092 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement avfilter_copy_picref_props().Stefano Sabatini2010-07-07
| | | | Originally committed as revision 24091 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vf_pad: restore use of _CCIR colourspace conversion macrosMåns Rullgård2010-07-06
| | | | Originally committed as revision 24073 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move shareable draw_rectangle() and query_formats function to the topStefano Sabatini2010-07-05
| | | | | | | | | of the file, and put under #if CONFIG_PAD_FILTER the code specific to the pad filter. Simplify the inclusion of the color source. Originally committed as revision 24067 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factorize out some code and implement the fill_line_with_color()Stefano Sabatini2010-07-05
| | | | | | function. Allow to share code with the pending color source. Originally committed as revision 24066 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 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