- May 16, 2013
-
-
Anton Khirnov authored
This is shorter and consistent across filters.
-
Anton Khirnov authored
This is shorter and consistent across filters.
-
Anton Khirnov authored
This is shorter and consistent across filters.
-
- May 15, 2013
-
-
Diego Biurrun authored
-
Anton Khirnov authored
-
Anton Khirnov authored
Currently it would incorrectly trigger on a string that contains a '=' but does not contain a ':', e.g. flags=<flags>.
-
Anton Khirnov authored
There is now no need to explicitly pass 0:0 as width/height to scale, those are the defaults.
-
- May 14, 2013
-
-
James Darnley authored
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>
-
James Darnley authored
Always use the special filter for the first and last 3 columns (only). Changes made in 64ed3976 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>
-
- May 10, 2013
-
-
Anton Khirnov authored
delta is in samples, not bytes. Also the sample format is not guaranteed to be planar. CC:libav-stable@libav.org
-
- May 08, 2013
-
-
Diego Biurrun authored
-
- May 06, 2013
-
-
Janne Grunau authored
-
- May 04, 2013
-
-
Hendrik Leppkes authored
The functions which actually drive the filter graph by pushing frames through it need to ensure an aligned stack for SIMD functions. This fixes a crash in YADIF filter when using a mingw build in a MSVC application. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
Diego Biurrun authored
-
- Apr 30, 2013
-
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
Options are freed from the generic code now, there is no need to call av_opt_free() from the filter.
-
Anton Khirnov authored
It now allows an arbitrary number of inputs, not just two.
-
- Apr 22, 2013
-
-
Diego Biurrun authored
-
Anton Khirnov authored
The current code can fail to return the last frame if it contains exactly the requested number of samples. Fixes the join filter test, which previously did not include the last 408 samples in most cases. CC:libav-stable@libav.org Signed-off-by:
Diego Biurrun <diego@biurrun.de>
-
- Apr 17, 2013
-
-
Anton Khirnov authored
-
Anton Khirnov authored
Fixes invalid reads from non-existing channels. CC:libav-stable@libav.org
-
- Apr 11, 2013
-
-
Vittorio Giovara authored
Signed-off-by:
Anton Khirnov <anton@khirnov.net>
-
Anton Khirnov authored
-
Anton Khirnov authored
Removes an arbitrary hardcoded limit on the number of filters.
-
Anton Khirnov authored
The caller needs to know what valid indices can be passed to avfilter_pad_get_name/type.
-
Anton Khirnov authored
This will be useful in avtools in the following commits. Any other caller might also want to know this information.
-
Anton Khirnov authored
-
Anton Khirnov authored
Drop the unused opaque parameter from its signature.
-
Anton Khirnov authored
-
Anton Khirnov authored
It will be useful in the following commits.
-
Anton Khirnov authored
Since this function adds a standalone filter to a filter graph and we do not support creating such filters, there is no reason for this function to exist.
-
Anton Khirnov authored
Since we do not support "standalone" filters not attached to an AVFilterGraph, we should not have a public function to create such filters. In addition that function is horribly named, the action it does cannot be possibly described as "opening" a filter.
-
Anton Khirnov authored
We do not support using filters without AVFilterGraph in practice anyway, so there is no point in pretending we do.
-
Anton Khirnov authored
-
Anton Khirnov authored
lavfi should never modify the filter through that pointer.
-
- Apr 09, 2013
-
-
Anton Khirnov authored
af_channelmap: fix uninitialized variable use introduced in ba8efac9
-