Clément Bœsch
faceb0af0a
lavfi/unsharp: use av_image_copy_plane().
12 years ago
Anton Khirnov
c0279956b3
vf_fade: use the name 's' for the pointer to the private context
This is shorter and consistent across filters.
13 years ago
Anton Khirnov
d3735f7ad6
vf_drawtext: use the name 's' for the pointer to the private context
This is shorter and consistent across filters.
13 years ago
Anton Khirnov
20e2794eea
vf_drawbox: use the name 's' for the pointer to the private context
This is shorter and consistent across filters.
13 years ago
Anton Khirnov
ba09675f44
vf_delogo: use the name 's' for the pointer to the private context
This is shorter and consistent across filters.
13 years ago
Anton Khirnov
e16e23d70e
vf_cropdetect: use the name 's' for the pointer to the private context
This is shorter and consistent across filters.
13 years ago
Anton Khirnov
671563d9fd
vf_crop: cosmetics, break lines
13 years ago
Anton Khirnov
7f83959598
vf_crop: use the name 's' for the pointer to the private context
This is shorter and consistent across filters.
13 years ago
Anton Khirnov
762df56ef9
vf_boxblur: use the name 's' for the pointer to the private context
This is shorter and consistent across filters.
13 years ago
Anton Khirnov
a2a696990c
vf_blackframe: use the name 's' for the pointer to the private context
This is shorter and consistent across filters.
13 years ago
Anton Khirnov
b3ea76624a
vf_aspect: use the name 's' for the pointer to the private context
This is shorter and consistent across filters.
13 years ago
Clément Bœsch
d686517ad1
lavfi/mp: remove mp=ow wrapper.
Filter ported natively as owdenoise.
12 years ago
Clément Bœsch
b1e84efa3d
lavfi: port wavelet denoiser filter from libmpcodecs.
12 years ago
Diego Biurrun
2832ea26f3
Remove commented-out debug #define cruft
12 years ago
Paul B Mahol
c45b823bf8
lavfi/histogram: logarithmic mode for levels
Signed-off-by: Paul B Mahol <onemda@gmail.com>
12 years ago
Michael Niedermayer
c7c71f95f8
replace remaining PIX_FMT_* flags with AV_PIX_FMT_FLAG_*
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years ago
Anton Khirnov
e6c4ac7b5f
pixdesc: rename PIX_FMT_* flags to AV_PIX_FMT_FLAG_*
12 years ago
Anton Khirnov
ffba2053ed
lavfi: fix compatibility code for old vf_scale options syntax
Currently it would incorrectly trigger on a string that contains a '='
but does not contain a ':', e.g. flags=<flags>.
12 years ago
Anton Khirnov
096696ef0d
avfiltergraph: simplify inserting conversion filters.
There is now no need to explicitly pass 0:0 as width/height to scale,
those are the defaults.
12 years ago
Clément Bœsch
bc1c90eabf
lavfi/dctdnoiz: fix 10l typo in pr_height computation.
12 years ago
Clément Bœsch
7b43120c7c
lavfi: add dctdnoiz filter.
13 years ago
Michael Niedermayer
640e524ff6
libavfilter/Makefile: unbreak make alltools
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years ago
Stefano Sabatini
2a1b7dee6d
tools: add zmqsend tool, useful to test the zmq filters
13 years ago
Stefano Sabatini
7ddb0ef9af
lavfi: add zmq filters
13 years ago
Paul B Mahol
b24530019f
lavfi/blend: timeline support
Signed-off-by: Paul B Mahol <onemda@gmail.com>
12 years ago
Paul B Mahol
811b17fbad
lavfi: cosmetics: fix vertical alignment for pads in some filters
Signed-off-by: Paul B Mahol <onemda@gmail.com>
12 years ago
Michael Niedermayer
6b13f54262
vf_colorchannelmixer: round lut entries to nearest
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years ago
James Darnley
d10499a32a
yadif: correct strides in filter_edges_16bit
The C code treats the data as arrays of uint16_t so strides must not
be in bytes but in pixels.
Signed-off-by: Anton Khirnov <anton@khirnov.net>
13 years ago
James Darnley
b0ef0ae776
yadif: restore speed of the C filtering code
Always use the special filter for the first and last 3 columns (only).
Changes made in 64ed397 slowed the filter to just under 3/4 of what it
was. This commit restores the speed while maintaining identical output.
For reference, on my Athlon64:
1733222 decicycles in old
2358563 decicycles in new
1727558 decicycles in this
Signed-off-by: Anton Khirnov <anton@khirnov.net>
13 years ago
Andrey Utkin
47a628bfb3
avfilter: Add 'drawgrid' video filter
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years ago
Clément Bœsch
0122300c86
lavfi/hqdn3d: restore timeline feature.
12 years ago
Clément Bœsch
0652111833
lavfi/hqdn3d: use macros instead of hardcoded indexes.
12 years ago
Clément Bœsch
1776177b7f
lavfi: replace passthrough_filter_frame with a flag.
With the introduction of AVFilterContext->is_disabled, we can simplify
the custom passthrough mode in filters.
This commit is technically a small compat break, but the timeline was
introduced very recently.
Doxy by Stefano Sabatini.
12 years ago
Clément Bœsch
60f0e30431
lavfi/vflip: use FF_CEIL_RSHIFT for chroma w/h rounding.
12 years ago
Clément Bœsch
59d33eafd1
lavfi/lut: use FF_CEIL_RSHIFT for chroma w/h rounding.
12 years ago
Paul B Mahol
91cae60ecb
lavfi/select: unbreak compatibility with older PICT_TYPE syntax
Signed-off-by: Paul B Mahol <onemda@gmail.com>
12 years ago
Michael Niedermayer
44f69c0df8
avfilter/af_astats: fix 64bit printf type
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years ago
Michael Niedermayer
bb0d3a4393
avfilter/vf_mp: remove unused function
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years ago
Michael Niedermayer
efaa2e01e6
vf_copy: silence "incompatible pointer type" warning
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years ago
Clément Bœsch
a9705e4de9
lavfi/curves: avoid ctx pointer indirection.
12 years ago
Paul B Mahol
4868855b13
lavfi/select: set forgotten VAR_PICT_TYPE_BI
Signed-off-by: Paul B Mahol <onemda@gmail.com>
12 years ago
Paul B Mahol
005ee7a586
lavfi: avectorscope filter
Signed-off-by: Paul B Mahol <onemda@gmail.com>
13 years ago
Clément Bœsch
50e66726a2
lavfi: use ceil right shift for chroma width/height.
This should fix several issues with odd dimensions inputs.
lut, vflip, pad and crop video filters also need to be checked for such
issues. It's possible sws is also affected.
12 years ago
Paul B Mahol
d751a2526f
lavfi/anull: remove redundant lines
Signed-off-by: Paul B Mahol <onemda@gmail.com>
12 years ago
highgod0401
63e8fc4d8f
lavfi: modify names of deshake_kernel.h and unsharp_kernel.h
Reviewed-by: Stefano Sabatini <stefasab@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years ago
Stefano Sabatini
5c4c929878
lavfi/avfiltergraph: fix style
12 years ago
Stefano Sabatini
e1332ff324
lavfi/avfilter.h: fix typo
12 years ago
Anton Khirnov
16a4a18db0
af_asyncts: fix offset calculation
delta is in samples, not bytes. Also the sample format is not guaranteed
to be planar.
CC:libav-stable@libav.org
12 years ago
Clément Bœsch
4db84bac13
lavfi/opencl: replace SHIFTUP with FF_CEIL_RSHIFT.
12 years ago
Clément Bœsch
f0250cc463
lavfi/overlay: simpler up-rounded w/h computations.
13 years ago