summaryrefslogtreecommitdiff
path: root/libavfilter
Commit message (Collapse)AuthorAge
* Merge commit '64ed397635ef2666b0ca0c8d8c60a8bc44581d82'Michael Niedermayer2013-02-16
|\ | | | | | | | | | | | | | | | | | | | | | | * commit '64ed397635ef2666b0ca0c8d8c60a8bc44581d82': vf_yadif: fix out-of line reads Conflicts: libavfilter/vf_yadif.c tests/ref/fate/filter-yadif-mode0 tests/ref/fate/filter-yadif-mode1 Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * vf_yadif: fix out-of line readsAnton Khirnov2013-02-15
| | | | | | | | Some changes in the border pixels, visually indistinguishable.
* | Merge commit 'ccd70d9c1689990e5aef2de383199bbc7cf60d13'Michael Niedermayer2013-02-16
|\| | | | | | | | | | | | | | | | | | | * commit 'ccd70d9c1689990e5aef2de383199bbc7cf60d13': vf_yadif: factorize initializing the filtering callbacks Conflicts: libavfilter/vf_yadif.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * vf_yadif: factorize initializing the filtering callbacksAnton Khirnov2013-02-15
| | | | | | | | Do it all in config_props().
* | lavfi/yadif: support 9, 12, and 14 bits per pixelJames Darnley2013-02-16
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lavfi/yadif: remove unnecessary castJames Darnley2013-02-16
| | | | | | | | | | | | Finish what 99162f8 started Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lavfi/kerndeint: move is_rgb_packed definition to the internal contextStefano Sabatini2013-02-16
| | | | | | | | No need to recompute it for each new frame.
* | lavfi/kerndeint: use aligned linesizes for the temporary buffer.Clément Bœsch2013-02-16
| | | | | | | | | | | | This improves the performances just enough to match mp=kerndeint. Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
* | lavfi/unsharp: extend range for amount values, to reflect the behavior of ↵Stefano Sabatini2013-02-16
| | | | | | | | | | | | mp=unsharp Also update the documentation accordingly, and suggest a meaningful range.
* | lavfi/unsharp: use named options, and add missing checks on matrix size valuesStefano Sabatini2013-02-16
| | | | | | | | | | In particular, avoid out-of-buffer access and crashes with too big values, and rework documentation accordingly.
* | lavfi/kerndeint: use av_pix_fmt_desc_get instead of directly accessing the tableHendrik Leppkes2013-02-15
| | | | | | | | | | | | Fixes FATE in MSVC DLL builds. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lavfi/ebur128: advance pointer to samplessedacca@comcast.net2013-02-15
| | | | | | | | | | | | | | | | | | | | | | Correct the advancement of a pointer to skip over LFE samples as intended in the loudness computation. This suggested patch is 3 of 3 for Ticket #2144 "libavfilter ebur128 loudness inaccuracy, irregular time interval, LFE interference". This suggested patch supersedes the contribution of January 15, 2013 in the thread “[PATCH] lavfi: EBU R.128 irreg time, ch weights, skip LFE” which combined multiple fixes in one batch.
* | lavfi/ebur128: fix channel weightsDavid A. Sedacca2013-02-15
| | | | | | | | | | | | | | | | | | Correct the recognition of channel layouts for good channel weight in the loudness computation. This suggested patch is 2 of 3 for Ticket #2144 "libavfilter ebur128 loudness inaccuracy, irregular time interval, LFE interference". Signed-off-by: David A. Sedacca <sedacca at comcast.net>
* | lavfi/unsharp: use the same macros used in the original MP filterStefano Sabatini2013-02-15
| | | | | | | | | | | | | | Remove possibly pointless inconsistency with the ported code. Also specify parameter value ranges consistent with those of the ported filter.
* | lavfi/showspectrum: simplify intensity_color_table declaration.Clément Bœsch2013-02-14
| |
* | lavfi/showspectrum: pretty-align constants.Clément Bœsch2013-02-14
| | | | | | | | Binary object unchanged.
* | lavfi/vf_ass: reindent after last commit.Nicolas George2013-02-14
| |
* | lavfi/vf_ass: ignore subtitles decoding errors.Nicolas George2013-02-14
| | | | | | | | | | | | | | A broken packet with invalid data in the middle of the stream should not prevent from decoding the rest of the file. Work around trac ticket #2264.
* | lavfi: remove softskip libmpcodecs wrapperPaul B Mahol2013-02-14
| | | | | | | | | | | | | | It is supposed to be used with mencoder only and does nothing when used with ffmpeg. Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | lavfi: remove dsize libmpcodecs wrapperPaul B Mahol2013-02-14
| | | | | | | | | | | | | | Filter does nothing, and supposed funcionality is already available with native filter(s). Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | lavfi/transpose: support more pix fmtsPaul B Mahol2013-02-13
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | lavfi/amerge: make description consistent with documentationPaul B Mahol2013-02-11
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | lavfi/il: filter out hwaccels formats from the list of supported formatsStefano Sabatini2013-02-10
| |
* | lavfi/il: move query_formats() definition upStefano Sabatini2013-02-10
| | | | | | | | Respect order of call during the filter lifecycle, improve readability.
* | lavfi/il: simplify/generalize linesize computationStefano Sabatini2013-02-10
| | | | | | | | | | | | | | | | | | Rely on generic utilities for computing each plane linesize. In particular, add support to NV12/21 formats and avoid use of PIX_FMT_PLANAR pixdesc flag, whose semantics is questionable. It also fixes various crashes.
* | lavfi/il: fix typo in CopyrightPaul B Mahol2013-02-09
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | lavfi: remove mp=il filterPaul B Mahol2013-02-09
| | | | | | | | | | | | Native il video filter is now available. Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | lavfi: port MP il filterPaul B Mahol2013-02-09
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | lavfi/histogram: make waveform mode more usefulPaul B Mahol2013-02-09
| | | | | | | | | | | | | | Now it displays all color components (not just luma) either in parade or overlay and also works with RGB colorspace. Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | lavfi/histogram: make it C90 compliantPaul B Mahol2013-02-09
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | histogram filterPaul B Mahol2013-02-09
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | lavfi/select: correctly set prev_t and prev_ptsStefano Sabatini2013-02-07
| | | | | | | | In particular, fix trac ticket #2248.
* | lavfi/select: avoid double -> int lossy conversion in debug logStefano Sabatini2013-02-07
| |
* | af_biquad: avoid subtraction in loopMichael Niedermayer2013-02-07
| | | | | | | | | | | | | | | | 17% faster Note the speedup is smaller if its done before storing in the context (gcc 4.6.3 core i7) Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | af_biquad: unroll loop, remove variable copiesMichael Niedermayer2013-02-07
| | | | | | | | | | | | This makes the code about 7% faster Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lavfi: fix missing space in error message.Nicolas George2013-02-07
| |
* | lavfi: remove disabled code.Nicolas George2013-02-07
| |
* | Merge commit '238614de679a71970c20d7c3fee08a322967ec40'Michael Niedermayer2013-02-06
|\| | | | | | | | | | | | | | | | | | | | | | | * commit '238614de679a71970c20d7c3fee08a322967ec40': cdgraphics: do not rely on get_buffer() initializing the frame. svq1: replace struct svq1_frame_size with an array. vf_yadif: silence a warning. Conflicts: libavcodec/svq1dec.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * vf_yadif: silence a warning.Anton Khirnov2013-02-06
| | | | | | | | | | | | | | clang says: libavfilter/vf_yadif.c:192:28: warning: incompatible pointer types assigning to 'void (*)(uint8_t *, uint8_t *, uint8_t *, uint8_t *, int, int, int, int, int)' from 'void (uint16_t *, uint16_t *, uint16_t *, uint16_t *, int, int, int, int, int)'
* | libmpcodecs/vd_ffmpeg.h: remove, its unused and removed upstreamMichael Niedermayer2013-02-05
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | libmpcodecs/vf_pullup: update to latest version from mplayermultiple authors2013-02-05
| | | | | | | | | | | | Please see mplayer svn for authorship and individual commits Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | libmpcodecs/vf_uspp: update to latest version from mplayermultiple authors2013-02-05
| | | | | | | | | | | | Please see mplayer svn for authorship and individual commits Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | libmpcodecs/vf_unsharp: update to latest version from mplayermultiple authors2013-02-05
| | | | | | | | | | | | Please see mplayer svn for authorship and individual commits Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | libmpcodecs/vf_spp: update to latest version from mplayermultiple authors2013-02-05
| | | | | | | | | | | | Please see mplayer svn for authorship and individual commits Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | libmpcodecs/vf_sab: update to latest version from mplayermultiple authors2013-02-05
| | | | | | | | | | | | Please see mplayer svn for authorship and individual commits Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | libmpcodecs/pullup: update to latest version from mplayermultiple authors2013-02-05
| | | | | | | | | | | | Please see mplayer svn for authorship and individual commits Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | libmpcodecs/vf_noise: update to latest version from mplayermultiple authors2013-02-05
| | | | | | | | | | | | Please see mplayer svn for authorship and individual commits Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | libmpcodecs/vf_pp7:update to latest version from mplayermultiple authors2013-02-05
| | | | | | | | | | | | Please see mplayer svn for authorship and individual commits Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | libmpcodecs/vf_qp: update to latest version from mplayermultiple authors2013-02-05
| | | | | | | | | | | | Please see mplayer svn for authorship and individual commits Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | libmpcodecs/vf_mcdeint: update to latest version from mplayermultiple authors2013-02-05
| | | | | | | | | | | | Please see mplayer svn for authorship and individual commits Signed-off-by: Michael Niedermayer <michaelni@gmx.at>