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
2017-09-12lavfi: add helper functions and macros for activate.Nicolas George
2017-07-30lavfi: add outlink helper functions.Nicolas George
These wrappers cost nothing, they make the namespace more consistent and they will be useful if/when locking becomes necessary.
2017-07-30lavfi: make FFERROR_NOT_READY available to filters.Nicolas George
I am not entirely sure that this return code is useful, but having and using it makes no harm.
2017-01-12lavfi: add ff_inlink_request_frame().Nicolas George
2017-01-12lavfi: add helpers to consume frames from link FIFOs.Nicolas George
2017-01-12lavfi: add ff_inlink_evaluate_timeline_at_frame().Nicolas George
2017-01-12lavfi: add ff_inlink_process_commands().Nicolas George
2017-01-12lavfi: implement ff_inlink_make_frame_writable().Nicolas George
Unlike av_frame_is_writable(), it uses the link's alloc callback, making direct rendering possible. The code comes from ff_filter_frame_framed(), moved with mostly trivial changes.
2017-01-12lavfi: export ff_filter_set_ready() to the library.Nicolas George
2017-01-12lavfi: add ff_inlink_acknowledge_status().Nicolas George
Also introduce libavfilter/filters.h for all functions needed to implement filters.