summaryrefslogtreecommitdiff
path: root/libavfilter
Commit message (Collapse)AuthorAge
* avfilter: indentMåns Rullgård2010-08-06
| | | | Originally committed as revision 24720 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avfilter: do not crash on null link src/dst in avfilter_destroy()Måns Rullgård2010-08-06
| | | | Originally committed as revision 24719 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avfilter: free link in/out_formats in avfilter_destroy()Måns Rullgård2010-08-06
| | | | Originally committed as revision 24718 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove use of the deprecated function avcodec_check_dimensions(), useStefano Sabatini2010-08-06
| | | | | | av_check_image_size() instead. Originally committed as revision 24711 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make avfilter_copy_picref_props() copy w and h from src to dst.Stefano Sabatini2010-08-03
| | | | Originally committed as revision 24678 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make config_input() return AVERROR(EINVAL) in place of -1.Stefano Sabatini2010-07-30
| | | | Originally committed as revision 24595 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Compute the max pixel step for each plane, and use it in place ofStefano Sabatini2010-07-30
| | | | | | | | hardcoding that value in a switch. More compact and correct. Originally committed as revision 24594 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Resize AVFilterBuffer to hold 8 planes/linesizes worth of data.S.N. Hemanth Meenakshisundaram2010-07-30
| | | | | | | | | This is required for making AVFilterBuffer useful for storing audio data. Patch by S.N. Hemanth Meenakshisundaram revert <ude.dscu@skaneems>. Originally committed as revision 24592 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make avfilter_default_get_video_buffer() use functions inStefano Sabatini2010-07-30
| | | | | | | | | libavcore/imgutils.c rather than ff_fill_linesize() and ff_fill_pointer(). Also remove a dependency on libavcodec. Originally committed as revision 24586 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Require libswscale only if the scale filter is used.Stefano Sabatini2010-07-28
| | | | | | | Although with several limitations, lavfi can be compiled and used without the scale filter. Originally committed as revision 24570 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove reference to the unexisting movie filter and the correspondingStefano Sabatini2010-07-28
| | | | | | useless --enable-avfilter-lavf option. Originally committed as revision 24569 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 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