Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-06-26lavfi: remove disabled FF_API_FILTERS_PUBLIC cruftAnton Khirnov
2012-06-13lavfi: replace AVFilterContext.input/output_count with nb_inputs/outputsAnton Khirnov
This is more consistent with naming in the rest of Libav.
2012-06-13lavfi: make avfilter_get_video_buffer() private on next bump.Anton Khirnov
They are only useful inside filters and we don't allow user filters for now.
2012-06-05lavfi: remove request/poll and drawing functions from public API on next bumpAnton Khirnov
They are only useful inside filters and we don't allow user filters for now.
2012-05-22lavfi: remove avfilter_null_* from public API on next bump.Anton Khirnov
Those functions are only useful inside filters. It is better to not support user filters until the API is more stable.
2012-05-22lavfi: remove avfilter_default_* from public API on next bump.Anton Khirnov
Those functions are only useful inside filters. It is better to not support user filters until the API is more stable.
2012-05-18lavfi: initialize pts to AV_NOPTS_VALUE when creating new buffer refs.Anton Khirnov
2012-05-15avfilter: Move ff_get_ref_perms_string() to where it is used.Diego Biurrun
This fixes a compilation failure with -DDEBUG.
2012-05-15lavfi: move video-related functions to a separate file.Anton Khirnov
This is easier to follow than having them randomly scattered in avfilter.c and defaults.c.