summaryrefslogtreecommitdiff
path: root/libavfilter
Commit message (Collapse)AuthorAge
* lavfi/vf_fps: use av_fifo_alloc_arrayLukasz Marek2014-05-20
| | | | Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com>
* lavfi/buffersink: use av_fifo_alloc_arrayLukasz Marek2014-05-20
| | | | Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com>
* avfilter/edgedetect: reuse already defined ctx.Clément Bœsch2014-05-17
|
* avfilter/vignette: reindent after previous commit.Clément Bœsch2014-05-16
|
* avfilter/vignette: add direct rendering.Clément Bœsch2014-05-16
|
* vignette: reuse already declared ctx.Clément Bœsch2014-05-16
|
* avfilter/vignette: fix input frame memory leak.Masa Utashiro2014-05-16
| | | | Fixes Ticket #3642.
* avfilter/vsrc_mandelbrot: use av_malloc_array()Michael Niedermayer2014-05-15
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* avfilter/lut3d: move the scale calc out of the inner loop.Clément Bœsch2014-05-14
|
* avfilter/vf_removelogo: use av_malloc_array()Michael Niedermayer2014-05-14
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* avfilter/vf_hqdn3: use av_malloc_array()Michael Niedermayer2014-05-14
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* build: move ebur128 swr dep to configure.Clément Bœsch2014-05-13
|
* Merge commit '449511740f06a4675b0066730fa45cdb764ffafc'Michael Niedermayer2014-05-13
|\ | | | | | | | | | | | | | | | | | | | | | | | | * commit '449511740f06a4675b0066730fa45cdb764ffafc': build: handle library dependencies in configure Conflicts: common.mak configure libavdevice/Makefile libavfilter/Makefile Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * build: handle library dependencies in configureJanne Grunau2014-05-13
| | | | | | | | | | Instead of setting FFLIBS in each library Makefile configure exports FFLIBS-$library in config.mak.
* | avfilter/buffer: Use av_malloc_array()Michael Niedermayer2014-05-12
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avcodec/buffersrc: use av_mallocz_array()Michael Niedermayer2014-05-12
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | libmpcodecs/vf_uspp: check avcodec_open() return codemichael2014-05-11
| | | | | | | | | | | | Fixes CID1135747 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter/vf_removelogo: fix memleak on failureMichael Niedermayer2014-05-10
| | | | | | | | | | | | Fixes CID751770 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter/vf_lut3d: check size in parse_dat()Michael Niedermayer2014-05-10
| | | | | | | | | | | | Fixes CID1212261 Reviewed-by: Clément Bœsch <u@pkh.me> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | libmpcodecs: Fix compilation due to missing static in suncc.Matt Oliver2014-05-09
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter/phase: make the main loop readable.Clément Bœsch2014-05-08
| |
* | avfilter/phase: add some constness for RO data pointers.Clément Bœsch2014-05-08
| |
* | avfilter/phase: add timeline support.Clément Bœsch2014-05-08
| |
* | avfilter/phase: avoid a memcpy per frame.Clément Bœsch2014-05-08
| |
* | avfilter/phase: do not pass the whole context to analyze_plane().Clément Bœsch2014-05-08
| | | | | | | | | | Also make sure the AVFilterContext is only being used for logging by changing the type to void*
* | avfilter/phase: add comment on the context cached frame.Clément Bœsch2014-05-08
| |
* | avfilter/af_compand: Silence "may be used uninitialized" warningMichael Niedermayer2014-05-08
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lavfi: use av_fifo_freepLukasz Marek2014-05-07
| | | | | | | | Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com>
* | avfilter/aeval: silence "may be used uninitialized" warningMichael Niedermayer2014-05-07
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter/af_bs2b: Fix incompatible pointer type warningsMichael Niedermayer2014-05-06
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter/f_select: fix incompatible pointer type warningMichael Niedermayer2014-05-05
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter/lut3d: support 3DLUTSIZE directive for Davinci files.Clément Bœsch2014-05-04
| | | | | | | | Fixes Ticket #2847.
* | avfilter/vf_deshake: dont pass the wrong context into the SAD functionsMichael Niedermayer2014-05-03
| | | | | | | | | | | | | | This fixes pointer type warnings The context should have been unused so this should not fix any real bug Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter/audio: use av_mallocz_array()Michael Niedermayer2014-05-03
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter/edgedetect: update copyright.Clément Bœsch2014-05-03
| |
* | avfilter/edgedetect: reindent after previous commit.Clément Bœsch2014-05-03
| |
* | avfilter/edgedetect: add a colormix mode.Clément Bœsch2014-05-03
| |
* | avfilter/edgedetect: make processing functions context free.Clément Bœsch2014-05-03
| |
* | Remove two duplicated named asm constraints.Carl Eugen Hoyos2014-05-03
| | | | | | | | | | This fixes compilation of libmpcodecs/vf_fspp.c with gcc and INLINE_ASM_DIRECT_SYMBOL_REFS disabled.
* | vfilter/vf_yadif: fix request_frame after 0f9f24c9Michael Niedermayer2014-05-03
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter/vf_showinfo: also calculate and show mean and standard deviationMichael Niedermayer2014-05-03
| | | | | | | | | | | | Fixes Ticket3013 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | libavfilter/libmpcodecs: sync existing filters with mplayer HEAD ↵mplayer developers2014-05-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (ebcacb8b3ca91ef90acb93785b62fd8c5e5dae41) Authors from svn: cehoyos (2): Support playback of JPEG 2000 digital cinema files. Add name for image format IMGFMT_440P. ib (1): Get rid of VOCTRL_GUI_NOWINDOW. Matt Oliver (4): Fix libmpcodecs inline asm on ICL. Use DECLARE_ALIGNED helper macros. Remove some superfluous commas from inline asm for better compatibility. Use numeric labels in inline asm for consistency and better compatibility. reimar (10): Fix bpp calculation for XYZ format. Avoid duplicating the mouse autohide code. Add NV12/NV21 support to some helper functions. Add support for rotating the video via OpenGL. Add options to determine where borders will be added when adjusting for aspect. Apply forgotten move of apply_border_pos function. Extract window creation code to common file. Make VDPAU support work again with latest FFmpeg. img_format: document why mp_get_chroma_shift does not work for NV12/NV21 Minor spelling/grammar fixes. For detailed line by line authorship please see svn log of mplayer svn://svn.mplayerhq.hu/mplayer/trunk Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter/vf_yadif: fix filtering a single imageMichael Niedermayer2014-05-02
| | | | | | | | | | Found-by: wm4 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Merge commit '1c0210c7981b6a61043d9171f506b435ff5a1f5e'Michael Niedermayer2014-05-01
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit '1c0210c7981b6a61043d9171f506b435ff5a1f5e': lavfi: add Bauer stereo-to-binaural audio filter Conflicts: Changelog configure doc/filters.texi libavfilter/Makefile libavfilter/allfilters.c libavfilter/version.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * lavfi: add Bauer stereo-to-binaural audio filterAlessandro Ghedini2014-05-01
| | | | | | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* | lavfi/subtitles: introduce stream_indexValdikSS2014-05-01
| | | | | | | | Signed-off-by: ValdikSS <iam@valdikss.org.ru>
* | Move av_find_best_pix_fmt_of_2() from avcodec to avutilMichael Niedermayer2014-04-30
| | | | | | | | | | | | | | | | | | This avoids a dependancy of libavfilter on libavcodec See Ticket 3592 Fixes Ticket2784 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lavfi/drawtext: allow to format pts as HH:MM:SS.mmm.Nicolas George2014-04-29
| |
* | avfilter/graphdump: Fix pointer to local outside scopeMichael Niedermayer2014-04-28
| | | | | | | | | | Fixes CID1194435 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter/curves: fix resource leaks.Clément Bœsch2014-04-27
| | | | | | | | Fixes CID1206650