summaryrefslogtreecommitdiffstats
path: root/libavfilter/vf_fps.c
Commit message (Collapse)AuthorAgeFilesLines
* lavfi: remove now unused args parameter from AVFilter.initAnton Khirnov2013-04-091-1/+1
|
* vf_fps: switch to an AVOptions-based system.Anton Khirnov2013-04-091-10/+1
|
* lavfi: switch to AVFrame.Anton Khirnov2013-03-081-16/+16
| | | | | Deprecate AVFilterBuffer/AVFilterBufferRef and everything related to it and use AVFrame instead.
* vf_fps: add final flushed frames to the dropped frame countJustin Ruggles2013-01-151-0/+1
|
* lavfi: merge start_frame/draw_slice/end_frameAnton Khirnov2012-11-281-22/+4
| | | | | Any alleged performance benefits gained from the split are purely mythological and do not justify added code complexity.
* lavfi: convert input/ouput list compound literals to named objectsMans Rullgard2012-10-101-11/+23
| | | | | | | A number of compilers, for example those from TI and IBM, choke on these initialisers. The current style is also quite ugly. Signed-off-by: Mans Rullgard <mans@mansr.com>
* Don't include common.h from avutil.hMartin Storsjö2012-08-151-0/+1
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* vf_fps: add more error checks.Anton Khirnov2012-07-221-2/+17
|
* vf_fps: fix a memleak on malloc failure.Anton Khirnov2012-07-221-1/+3
|
* lavfi: check all ff_start_frame/draw_slice/end_frame calls for errorsAnton Khirnov2012-07-221-6/+12
|
* lavfi: add error handling to end_frame().Anton Khirnov2012-07-221-8/+9
|
* lavfi: add error handling to draw_slice().Anton Khirnov2012-07-221-1/+2
|
* lavfi: add error handling to start_frame().Anton Khirnov2012-07-221-1/+2
|
* lavfi: use const for AVFilterPad declarations in all filters.Ronald S. Bultje2012-07-211-11/+11
|
* lavfi: unref AVFilterLink.cur_buf in ff_end_frame().Anton Khirnov2012-07-201-0/+1
| | | | | This reduces code duplication and prevents stale pointers from remaining on the link.
* lavfi: remove 'opaque' parameter from AVFilter.init()Anton Khirnov2012-06-261-1/+1
| | | | | | It is not used in any filters currently and is inherently evil. If passing binary data to filters is required in the future, it should be done with some AVOptions-based system.
* lavfi: remove request/poll and drawing functions from public API on next bumpAnton Khirnov2012-06-051-7/+9
| | | | | They are only useful inside filters and we don't allow user filters for now.
* lavfi: Add fps filter.Anton Khirnov2012-05-181-0/+271
Partially based on a patch by Robert Nagy <ronag89@gmail.com>
OpenPOWER on IntegriCloud