summaryrefslogtreecommitdiff
path: root/libavfilter/version.h
Commit message (Collapse)AuthorAge
...
* lavfi: make AVFilterPad opaque after two major bumps.Anton Khirnov2012-06-13
| | | | It will allow adding new fields to it without ABI breaks.
* lavfi: add avfilter_pad_get_type() and avfilter_pad_get_name().Anton Khirnov2012-06-13
| | | | | This will allow making AVFilterPad opaque for the calling apps, since those are the only two fields that can be useful to the users.
* lavfi: add channelsplit audio filter.Anton Khirnov2012-06-12
|
* lavfi: add audio mix filterJustin Ruggles2012-05-23
|
* lavfi: remove avfilter_default_* from public API on next bump.Anton Khirnov2012-05-22
| | | | | Those functions are only useful inside filters. It is better to not support user filters until the API is more stable.
* lavfi: deprecate default config_props() callback and refactor ↵Mina Nagy Zaki2012-05-22
| | | | | | | | | | | | avfilter_config_links() Link properties have to be checked after config_props() is called to make sure everything is sane, so the default config_props() for output links was redundant. Remove now empty defaults.c Signed-off-by: Anton Khirnov <anton@khirnov.net>
* lavfi: add an audio split filterJustin Ruggles2012-05-21
| | | | | Based on current version of the asplit filter in FFmpeg written by Stefano Sabatini and others.
* lavfi: Add fps filter.Anton Khirnov2012-05-18
| | | | Partially based on a patch by Robert Nagy <ronag89@gmail.com>
* Add missing version bumps and APIchanges/Changelog entries.Anton Khirnov2012-05-15
|
* buffersrc: add av_buffersrc_write_frame().Anton Khirnov2012-05-14
| | | | | | | It's the same as av_vsrc_buffer_add_frame(), except it doesn't take pts or pixel_aspect parameters. Those are read from AVFrame. Deprecate av_vsrc_buffer_add_frame().
* lavfi: change AVFilterLink.sample_rate from int64_t to int on next bumpAnton Khirnov2012-05-09
| | | | | There is no real reason for it to be 64bit, it's just a plain int in the rest of Libav.
* lavfi: uninline avfilter_copy_buffer_ref_props().Anton Khirnov2012-05-07
| | | | | A nontrivial public function such as this should most certainly NOT be inline.
* avfiltergraph: make the AVFilterInOut alloc/free API publicStefano Sabatini2012-04-14
| | | | | | | This is required for letting applications to create and destroy AVFilterInOut structs in a convenient way. Signed-off-by: Anton Khirnov <anton@khirnov.net>
* avfiltergraph: add an AVClass to AVFilterGraph on next major bump.Anton Khirnov2012-04-01
| | | | It will be used for logging, possibly also AVOptions.
* lavfi: move version macros to a new installed header version.hAnton Khirnov2012-01-12