summaryrefslogtreecommitdiffstats
path: root/libavfilter/video.c
Commit message (Collapse)AuthorAgeFilesLines
* lavfi: Make default get_video_buffer work with hardware framesMark Thompson2016-11-021-4/+10
|
* lavfi: Drop deprecated AVFilterBuffer* codeVittorio Giovara2015-08-281-47/+0
| | | | Deprecated in 11/2012.
* avfilter: Remove unused variable from ff_get_video_buffer()Diego Biurrun2014-08-191-1/+0
|
* lavfi: switch to AVFrame.Anton Khirnov2013-03-081-68/+21
| | | | | Deprecate AVFilterBuffer/AVFilterBufferRef and everything related to it and use AVFrame instead.
* lavfi: merge start_frame/draw_slice/end_frameAnton Khirnov2012-11-281-210/+0
| | | | | Any alleged performance benefits gained from the split are purely mythological and do not justify added code complexity.
* lavfi: do not use av_pix_fmt_descriptors directly.Anton Khirnov2012-10-121-1/+2
|
* Replace PIX_FMT_* -> AV_PIX_FMT_*, PixelFormat -> AVPixelFormatAnton Khirnov2012-10-081-1/+1
|
* Add some more missing includes after removing the implicit common.hMartin Storsjö2012-08-151-0/+1
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* Don't include common.h from avutil.hMartin Storsjö2012-08-151-0/+3
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* factor identical ff_inplace_start_frame out of two filtersLoren Merritt2012-07-281-0/+36
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* lavfi: check all avfilter_ref_buffer() calls for errors.Anton Khirnov2012-07-221-1/+6
|
* lavfi: add error handling to end_frame().Anton Khirnov2012-07-221-7/+11
|
* lavfi: add error handling to draw_slice().Anton Khirnov2012-07-221-8/+12
|
* lavfi: add error handling to start_frame().Anton Khirnov2012-07-221-16/+31
|
* lavfi: unref AVFilterLink.out_buf in ff_end_frame().Anton Khirnov2012-07-201-4/+1
| | | | | This reduces code duplication and prevents stale pointers from remaining on the link.
* lavfi: unref AVFilterLink.cur_buf in ff_end_frame().Anton Khirnov2012-07-201-4/+3
| | | | | This reduces code duplication and prevents stale pointers from remaining on the link.
* lavfi: remove disabled FF_API_FILTERS_PUBLIC cruftAnton Khirnov2012-06-261-51/+0
|
* lavfi: replace AVFilterContext.input/output_count with nb_inputs/outputsAnton Khirnov2012-06-131-3/+3
| | | | This is more consistent with naming in the rest of Libav.
* lavfi: make avfilter_get_video_buffer() private on next bump.Anton Khirnov2012-06-131-4/+8
| | | | | They are only useful inside filters and we don't allow user filters for now.
* lavfi: remove request/poll and drawing functions from public API on next bumpAnton Khirnov2012-06-051-9/+21
| | | | | They are only useful inside filters and we don't allow user filters for now.
* lavfi: remove avfilter_null_* from public API on next bump.Anton Khirnov2012-05-221-4/+20
| | | | | Those functions are only useful inside filters. It is better to not support user filters until the API is more stable.
* lavfi: remove avfilter_default_* from public API on next bump.Anton Khirnov2012-05-221-8/+27
| | | | | Those functions are only useful inside filters. It is better to not support user filters until the API is more stable.
* lavfi: initialize pts to AV_NOPTS_VALUE when creating new buffer refs.Anton Khirnov2012-05-181-0/+2
|
* avfilter: Move ff_get_ref_perms_string() to where it is used.Diego Biurrun2012-05-151-0/+14
| | | | This fixes a compilation failure with -DDEBUG.
* lavfi: move video-related functions to a separate file.Anton Khirnov2012-05-151-0/+294
This is easier to follow than having them randomly scattered in avfilter.c and defaults.c.
OpenPOWER on IntegriCloud