summaryrefslogtreecommitdiff
path: root/libavfilter/libmpcodecs
Commit message (Collapse)AuthorAge
* Replace all strcasecmp/strncasecmp usages.Reimar Döffinger2011-11-03
| | | | | | | | | | All current usages of it are incompatible with localization. For example strcasecmp("i", "I") != 0 is possible, but would break many of the places where it is used. Instead use our own implementations that always treat the data as ASCII. Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
* 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>
* libmpcodecs: some hunks from mplayer HEADMichael Niedermayer2011-09-20
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* vf_remove_logo: domt access vf->next->query_format() directly but use the API.Michael Niedermayer2011-09-13
| | | | | | This fixes a crash 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.
* 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.
* Port remove of get_sws_cpuflags from MPlayer's libmpcodecs.Reimar Döffinger2011-06-02
|
* Port recent changes to MPlayer libmpcodecs.Reimar Döffinger2011-06-02
| | | | | Also include an older fix for vf_smartblur which was essentially broken due to reading the threshold value wrongly.
* Replace non-existent HAVE_SSE2 with HAVE_SSE.Reimar Döffinger2011-06-02
| | | | | | Since this is only a compilation check (the actual function used is selected at runtime) and HAVE_SSE indicates that we can also compile SSE2 code, this is correct.
* Port libmpcodec fixes from MPlayer.Reimar Döffinger2011-05-31
|
* Merge remote branch 'qatar/master'Michael Niedermayer2011-05-09
| | | | | | | | | | | | | | | * qatar/master: log: Fix an oob array read. cosmetics: trim trailing whitespace in postproc Ban strncpy() it's too easy to misuse. psymodel: Remove wrapper functions. aacenc: Replace loop counters in aac_encode_frame() with more descriptive 'ch' and 'w'. regtest: remove redundant flags in jpg test regtest: use run_ffmpeg in do_image_formats regtest: simplify encoding functions ffmpeg.c: check for interlaced flag in the correct place. Merged-by: Michael Niedermayer <michaelni@gmx.at>
* mp: remove use of deprecated old eval APIStefano Sabatini2011-04-21
| | | | | | | The old API was deprecated and will be possibly removed, fix warnings in libavfilter/libmpcodecs/vf_geq.c and libavfilter/libmpcodecs/vf_qp.c. Signed-off-by: Stefano Sabatini <stefano.sabatini-lala@poste.it>
* Update to latest MPlayer version.Reimar Döffinger2011-03-25
| | | | Avoids warnings due to pointlessly casting away const.
* remove definition of swabj@v2v.cc2011-03-17
| | | | | | | | right now swab is defined in libavfilter/libmpcodecs/mpbswap.h this breaks mingw32 cross compiles. since it its not used, it should be removed. alternatively swab has to be added to HAVE_LIST in configure. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* Use av_strdup instead of strdup, fixes mingw buildBaptiste Coudurier2011-03-16
|
* Remove useage of memalign() from libmpcodecs, not all platforms have memalign().Michael Niedermayer2011-01-28
|
* Add ASMALIGN() hack to patch around its recent removial from configureMichael Niedermayer2011-01-20
|
* Hack libmpcodecs to make it buildable.Michael Niedermayer2011-01-20
|
* Remove dependancy of m_option & m_struct from libmpcodecs.Michael Niedermayer2011-01-20
|
* Avoid dependancy on global variable verbose in libmpcodecs/vf_pullup.cMichael Niedermayer2011-01-20
|
* Add #define _BSD_SOURCE where mplayer is not C99.Michael Niedermayer2011-01-20
|
* Add MPlayers libmpcodecs, this will be needed for our libavfilter wraper for it.Michael Niedermayer2011-01-20