Anton Khirnov
|
7e350379f8
|
lavfi: switch to AVFrame.
Deprecate AVFilterBuffer/AVFilterBufferRef and everything related to it
and use AVFrame instead.
|
2013-03-08 07:37:18 +01:00 |
Anton Khirnov
|
565e4993c6
|
lavfi: merge start_frame/draw_slice/end_frame
Any alleged performance benefits gained from the split are purely
mythological and do not justify added code complexity.
|
2012-11-28 08:50:19 +01:00 |
Anton Khirnov
|
59ee9f78b0
|
lavfi: do not use av_pix_fmt_descriptors directly.
|
2012-10-12 12:45:39 +02:00 |
Anton Khirnov
|
716d413c13
|
Replace PIX_FMT_* -> AV_PIX_FMT_*, PixelFormat -> AVPixelFormat
|
2012-10-08 07:13:26 +02:00 |
Martin Storsjö
|
70766c2182
|
Add some more missing includes after removing the implicit common.h
Signed-off-by: Martin Storsjö <martin@martin.st>
|
2012-08-15 23:48:48 +03:00 |
Martin Storsjö
|
1d9c2dc89a
|
Don't include common.h from avutil.h
Signed-off-by: Martin Storsjö <martin@martin.st>
|
2012-08-15 22:32:06 +03:00 |
Loren Merritt
|
fb44e7401f
|
factor identical ff_inplace_start_frame out of two filters
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
|
2012-07-28 14:15:14 -07:00 |
Anton Khirnov
|
1dc4205018
|
lavfi: check all avfilter_ref_buffer() calls for errors.
|
2012-07-22 09:14:05 +02:00 |
Anton Khirnov
|
d4f89906e3
|
lavfi: add error handling to end_frame().
|
2012-07-22 09:14:05 +02:00 |
Anton Khirnov
|
e9b992d035
|
lavfi: add error handling to draw_slice().
|
2012-07-22 09:14:05 +02:00 |
Anton Khirnov
|
ebc8d97481
|
lavfi: add error handling to start_frame().
|
2012-07-22 09:14:04 +02:00 |
Anton Khirnov
|
4c9080a7ef
|
lavfi: unref AVFilterLink.out_buf in ff_end_frame().
This reduces code duplication and prevents stale pointers from remaining
on the link.
|
2012-07-20 21:12:49 +02:00 |
Anton Khirnov
|
07bad27810
|
lavfi: unref AVFilterLink.cur_buf in ff_end_frame().
This reduces code duplication and prevents stale pointers from remaining
on the link.
|
2012-07-20 21:10:42 +02:00 |
Anton Khirnov
|
1961e46c15
|
lavfi: remove disabled FF_API_FILTERS_PUBLIC cruft
|
2012-06-26 13:20:19 +02:00 |
Anton Khirnov
|
9baeff9506
|
lavfi: replace AVFilterContext.input/output_count with nb_inputs/outputs
This is more consistent with naming in the rest of Libav.
|
2012-06-13 11:13:22 +02:00 |
Anton Khirnov
|
6d58358a3a
|
lavfi: make avfilter_get_video_buffer() private on next bump.
They are only useful inside filters and we don't allow user filters for
now.
|
2012-06-13 11:09:15 +02:00 |
Anton Khirnov
|
803391f719
|
lavfi: remove request/poll and drawing functions from public API on next bump
They are only useful inside filters and we don't allow user filters for
now.
|
2012-06-05 09:38:16 +02:00 |
Anton Khirnov
|
c04c533f62
|
lavfi: remove avfilter_null_* from public API on next bump.
Those functions are only useful inside filters. It is better to not
support user filters until the API is more stable.
|
2012-05-22 21:36:23 +02:00 |
Anton Khirnov
|
43c7a01e98
|
lavfi: remove avfilter_default_* from public API on next bump.
Those functions are only useful inside filters. It is better to not
support user filters until the API is more stable.
|
2012-05-22 21:33:26 +02:00 |
Anton Khirnov
|
7b3b24a8ee
|
lavfi: initialize pts to AV_NOPTS_VALUE when creating new buffer refs.
|
2012-05-18 19:29:39 +02:00 |
Diego Biurrun
|
91791ac2ed
|
avfilter: Move ff_get_ref_perms_string() to where it is used.
This fixes a compilation failure with -DDEBUG.
|
2012-05-15 19:10:46 +02:00 |
Anton Khirnov
|
c5432d3ca4
|
lavfi: move video-related functions to a separate file.
This is easier to follow than having them randomly scattered in
avfilter.c and defaults.c.
|
2012-05-15 06:51:23 +02:00 |