summaryrefslogtreecommitdiff
path: root/libavfilter
Commit message (Collapse)AuthorAge
* avfilter/avf_showfreqs: free input frame after using itJames Almer2019-10-26
| | | | | | | Fixes ticket #8336. Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: James Almer <jamrial@gmail.com>
* avfilter/vsrc_testsrc: increase max level of haldclutsrcPaul B Mahol2019-10-26
| | | | So it matches lut3d and haldclut filter.
* avfilter/vf_lut3d: increase max level to upper limit defined by cube format ↵Paul B Mahol2019-10-26
| | | | specification
* avfilter/vf_lut3d: allocate 3d lut dynamicallyPaul B Mahol2019-10-26
|
* avfilter/vf_psnr,vf_ssim: add warning if different timebases are encounteredPaul B Mahol2019-10-25
|
* avfilter: add maskedmin/maskedmax filtersPaul B Mahol2019-10-24
|
* avfilter/vf_maskedclamp: add x86 SIMDPaul B Mahol2019-10-23
|
* avfilter/settb: switch to activatePaul B Mahol2019-10-23
| | | | Now correctly updates EOF timestamp.
* avfilter/vf_floodfill: better fix for crashPaul B Mahol2019-10-23
|
* avfilter/vf_floodfill: add more gray formatsPaul B Mahol2019-10-23
|
* avfilter/vf_deband: add more gray formatsPaul B Mahol2019-10-23
|
* lavfi/bilateral: Clean the option description and unused codeJun Zhao2019-10-23
| | | | | | | Clean the option description and unused code. Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Jun Zhao <barryjzhao@tencent.com>
* avfilter/vf_lut2: fix typo, correctly support gray14Paul B Mahol2019-10-23
|
* avfilter/vf_bm3d: add gray14 formatPaul B Mahol2019-10-23
|
* avfilter/vf_vaguedenoiser: add more gray formatsPaul B Mahol2019-10-23
|
* avfilter/transpose: add missing headersPaul B Mahol2019-10-22
|
* x86/vf_transpose: make ff_transpose_8x8_16_sse2 work on x86_32James Almer2019-10-22
| | | | | Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: James Almer <jamrial@gmail.com>
* avfilter/vf_maskedclamp: rewrite using macroPaul B Mahol2019-10-22
|
* avfilter/vf_premultiply: fix signed integer overflowPaul B Mahol2019-10-22
| | | | Fixes #8324
* avfilter/vsrc_mptestsrc: simplify the code and change the type of frameLimin Wang2019-10-21
| | | | | Signed-off-by: Limin Wang <lance.lmwang@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avfilter/vsrc_mptestsrc: add options to set the maximum number of framesLimin Wang2019-10-21
| | | | | Signed-off-by: Limin Wang <lance.lmwang@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avfilter/vf_unsharp: rename config_props -> config_input, link -> inlinkLimin Wang2019-10-21
| | | | | Signed-off-by: Limin Wang <lance.lmwang@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* x86/vf_transpose: fix cpuflags checkJames Almer2019-10-21
| | | | Signed-off-by: James Almer <jamrial@gmail.com>
* avfilter/vf_transpose: add x86 SIMDPaul B Mahol2019-10-21
|
* avfilter/x86/vf_atadenoise: fix commentPaul B Mahol2019-10-21
|
* avfilter/af_join: fix possible memory leaksPaul B Mahol2019-10-21
| | | | | Allocation of input frames is independent from allocation of new input pads.
* avfilter/af_silencedetect: change mono default to integer literalLimin Wang2019-10-21
| | | | | Signed-off-by: Limin Wang <lance.lmwang@gmail.com> Reviewed-by: Gyan Doshi <ffmpeg@gyani.pro>
* avfilter/af_silencedetect: use AV_OPT_TYPE_DURATIONLimin Wang2019-10-21
| | | | | Reviewed-by: Moritz Barsnick <barsnick@gmx.net> Signed-off-by: Limin Wang <lance.lmwang@gmail.com>
* avfilter: add bilateral filterPaul B Mahol2019-10-21
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avfilter/vf_nlmeans: round values toward nearest integerPaul B Mahol2019-10-21
| | | | | Instead of rounding toward zero and thus producing darker output.
* avfilter/af_silencedetect: document metadataLimin Wang2019-10-21
| | | | | Reviewed-by: Moritz Barsnick <barsnick@gmx.net> Signed-off-by: Limin Wang <lance.lmwang@gmail.com>
* avfilter/vf_tile: fix memory leakPaul B Mahol2019-10-20
| | | | Fixes #8313
* avfilter/vf_atadenoise: add support for commandsPaul B Mahol2019-10-20
|
* avfilter/vf_shuffleframes: improve error messagePaul B Mahol2019-10-20
|
* avfilter/af_tremolo: fix heap-buffer overflowPaul B Mahol2019-10-19
| | | | Fixes #8317
* avfilter/vf_fftdnoiz: round toward nearest integerPaul B Mahol2019-10-19
| | | | | Instead of rounding toward zero and thus producing darker output.
* avfilter/vf_bm3d: round values toward nearest integerPaul B Mahol2019-10-19
| | | | | Instead of rounding toward zero and thus producing darker output.
* avfilter/vf_bm3d: forward status backPaul B Mahol2019-10-19
|
* avfilter/vf_fieldhint: add support for duplicating fieldsPaul B Mahol2019-10-19
| | | | Fixes #7066
* avfilter/vf_fieldmatch: fix heap-buffer overflowPaul B Mahol2019-10-19
| | | | | | Also fix use of uninitialized values. Fixes #8239
* avfilter/vf_decimate: fix memory leaksPaul B Mahol2019-10-19
| | | | Fixes #8311
* avfilter/vf_lagfun: fix heap-buffer overflowPaul B Mahol2019-10-19
| | | | Fixes #8310
* avfilter/vf_datascope: fix heap buffer overflowPaul B Mahol2019-10-19
| | | | Fixes #8309
* avfilter/vf_shuffleplanes: add mising query_formats()Paul B Mahol2019-10-18
| | | | Fixes #8298
* avfilter/vf_maskfun: fix memleakPaul B Mahol2019-10-18
| | | | Fixes #8305
* avfilter/buffersink: cosmeticsPaul B Mahol2019-10-18
|
* avfilter/vf_colorspace: fix memmory leaksPaul B Mahol2019-10-18
| | | | Fixes #8303
* avfilter/af_acrossover: fix memory leakPaul B Mahol2019-10-18
| | | | Fixes #8304
* lavfi/avf_showspectrum: add error handle if av_asprintf return nullJun Zhao2019-10-18
| | | | | | add error handle if av_asprintf return null. Signed-off-by: Jun Zhao <barryjzhao@tencent.com>
* avfilter/x86/vf_atadenoise: add SIMD for serial tooPaul B Mahol2019-10-17
|