summaryrefslogtreecommitdiff
path: root/libavfilter/vf_mp.c
Commit message (Collapse)AuthorAge
* lavfi: fix mp and mandelbrot descriptions to make them complete sentencesStefano Sabatini2012-01-21
| | | | This is consistent with the other filter descriptions.
* vf_mp: rewrite vf_mp filter warning messageMichael Niedermayer2011-11-23
| | | | | Warning text by: Clément Bœsch <ubitux@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* 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_mp: Fix several incompatible pointer type warnings.Michael Niedermayer2011-10-19
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* libavfilter/libmpcodecs: add vf_stereo3d supportMichael Niedermayer2011-09-20
| | | | | | | | | (code from mplayer see their svn for detailed authorship) parameters must be integers as we do not have mplayers parser also the stuff passed to it through non constant globals is not supported this should be fixed in mplayer first. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* lavfi: remove delogo mp wrapperStefano Sabatini2011-08-14
| | | | | The delogo filter has been natively integrated into libavfilter, simplify.
* lavfi: remove mp test wrapperStefano Sabatini2011-08-11
| | | | | The source was natively integrated into libavfilter, with the name mptestsrc.
* vf_mp: sort listing of vf_info_t symbolsStefano Sabatini2011-08-11
| | | | | This way it's easier for the programmer to look-up for a specific symbols (e.g. for checking if it's unused).
* lavfi: remove gradfun mp wrapperStefano Sabatini2011-08-07
| | | | | | | | | The gradfun filter was already integrated natively in libavfilter. Both filters issue the same output, and have a comparable performance. See thread: Subject: [FFmpeg-devel] [PATCH] lavfi: remove gradfun mp wrapper Date: Fri, 5 Aug 2011 00:19:04 +0200
* vf_mp: remove blackframe filter wrapperStefano Sabatini2011-07-23
| | | | blackframe is integrated as a native filter.
* vf_mp: remove cropdetect wrapperStefano Sabatini2011-07-21
| | | | The cropdetect filter is natively integrated into libavfilter.
* vf_mp: remove rgbtest wrapperStefano Sabatini2011-07-15
| | | | | The filter was integrated natively into libavfilter as a source with name rgbtestsrc.
* vf_mp: remove boxblur wrapperStefano Sabatini2011-07-15
| | | | It is natively included in libavfilter.
* vf_mp: do not add duplicated pixel formats.Clément Bœsch2011-06-22
| | | | | | | This avoid a crash with in avfilter_merge_formats() in case one of the filter formats list has multiple time the same entry. Thanks to Mina Nagy Zaki for helping figuring out the issue.
* lavfi: add layout negotiation fields and helper functions.Mina Nagy Zaki2011-06-19
|
* vf_mp: Fix large memleak.Michael Niedermayer2011-06-15
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* Port remove of get_sws_cpuflags from MPlayer's libmpcodecs.Reimar Döffinger2011-06-02
|
* Merge remote-tracking branch 'qatar/master'Michael Niedermayer2011-05-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | * qatar/master: (22 commits) configure: enable memalign_hack automatically when needed swscale: unbreak the build on non-x86 systems. swscale: remove if(bitexact) branch from functions. swscale: remove if(canMMX2BeUsed) conditional. swscale: remove swScale_{c,MMX,MMX2} duplication. swscale: use emms_c(). Move emms_c() from libavcodec to libavutil. tiff: set palette in the context when specified in TIFF_PAL tag rtsp: use strtoul to parse rtptime and seq values. pgssubdec: fix incorrect colors. dvdsubdec: fix incorrect colors. ape: Allow demuxing of files with metadata tags. swscale: remove dead macro WRITEBGR24OLD. swscale: remove AMD3DNOW "optimizations". swscale: remove duplicate code in ppc/ subdirectory. swscale: remove duplicated x86/ functions. swscale: force --enable-runtime-cpudetect and remove SWS_CPU_CAPS_*. vsrc_buffer.h: add file doxy vsrc_buffer: tweak error message in init() msmpeg4: reindent. ... Merged-by: Michael Niedermayer <michaelni@gmx.at>
* mp: remove unused variable outlink in end_frameStefano Sabatini2011-04-21
| | | | | | | | Fix warning: vf_mp.c: In function ‘end_frame’: vf_mp.c:870: warning: unused variable ‘outlink’ Signed-off-by: Stefano Sabatini <stefano.sabatini-lala@poste.it>
* mp: extend syntax, make it accept mp=filter=paramsStefano Sabatini2011-03-28
| | | | | | | Make the mp wrapper accept the syntax mp=filter=params as alternative to mp=filter:params. The alternative syntax is sligthly more readable and should simplify copy&paste of MPlayer filter strings to the mp filter.
* Merge libavcore into libavutilReinhard Tartler2011-02-16
| | | | Done to keep ABI compatible. Otherwise this is just silly
* Warn about vf_mpMichael Niedermayer2011-01-20
|
* Add libmpcodecs wrapper for libavfilter, still disabledMichael Niedermayer2011-01-20