summaryrefslogtreecommitdiff
path: root/libavfilter/vf_transpose.c
Commit message (Collapse)AuthorAge
* Mark AVFilterPad[] compound literals as const.Reimar Döffinger2011-11-06
| | | | | | | GCC 4.6.2 at least still seems to fail to put them in .rodata though, see also http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37303 Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
* vf_transpose: remove pix_fmts which can currently not be supported.Michael Niedermayer2011-11-01
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* vf_transpose: avoid multiple calls to avfilter_draw_slice()Stefano Sabatini2011-07-29
| | | | | | | | | avfilter_draw_slice() is already called in the end_frame() callback, this avoids multiple calls. This is done by adding a null draw_slice() callback. In particular fix crash occurring with -vf transpose=3,hflip, fix trac issue #371.
* lavfi: add layout negotiation fields and helper functions.Mina Nagy Zaki2011-06-19
|
* lavfi: rename AVFilterBufferRefVideoProps.pixel_aspect to sample_aspect_ratioStefano Sabatini2011-05-01
| | | | | | | | | Improve consistency with libavcodec. This breaks libavfilter API/ABI. The non-sequential 2.1.0 -> 2.4.0 bump is due to the mess previously done with the lavfi minor number.
* Merge libavcore into libavutilReinhard Tartler2011-02-16
| | | | Done to keep ABI compatible. Otherwise this is just silly
* Add sample_aspect_ratio to AVFilterLinkMichael Niedermayer2011-01-31
|
* In libavfilter, use consistently "Copyright (c)" in the licenseStefano Sabatini2010-11-28
| | | | | | headers. Originally committed as revision 25838 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add transpose filter.Stefano Sabatini2010-10-18
Originally committed as revision 25525 to svn://svn.ffmpeg.org/ffmpeg/trunk