summaryrefslogtreecommitdiff
path: root/libavfilter
Commit message (Collapse)AuthorAge
* avfilter/vf_zscale: make possible to change chroma locationPaul B Mahol2016-09-02
|
* avfilter/vf_minterpolate: rename chroma log varsDavinder Singh2016-09-02
| | | | | also use AVPixFmtDescriptor instead of avcodec_get_chroma_sub_sample() for log2_chroma*.
* avfilter: add weave filterPaul B Mahol2016-09-02
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avfilter/vf_psnr: Add max value output option to psnr stats log.Lucas Cooper2016-09-01
| | | | | | | This allows retroactive calculation/aggregation of PSNR from the stats log. Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avfilter/drawutils: honor shift for color component descriptionTimo Rothenpieler2016-08-31
|
* avfilter/drawutils: P010 is not supportedTimo Rothenpieler2016-08-31
|
* avfilter/vf_lut: unbreak planar rgb suppot on big-endianPaul B Mahol2016-08-31
|
* avfilter/vf_minterpolate: do not right shift negative numbersDavinder Singh2016-08-29
| | | | | | It was source of crashes. Use division instead. Original patch by author. Log message by comitter.
* avfilter: make use of ff_filter_get_nb_threadsPaul B Mahol2016-08-29
|
* avfilter: add ff_filter_get_nb_threads()Paul B Mahol2016-08-29
|
* avfilter: add nb_threads to AVFilterContextPaul B Mahol2016-08-29
| | | | To be used in following commits.
* avfilter: hflip,swapuv,vflip: add timeline supportPaul B Mahol2016-08-28
|
* avfilter/vf_convolution: add >8 bit depth supportPaul B Mahol2016-08-27
|
* avfilter/vf_atadenoise: add planes optionPaul B Mahol2016-08-27
| | | | Make possible filtering only some planes.
* vf_colorspace: Add support for full range yuvVittorio Giovara2016-08-27
| | | | | | | | | | | | | | | Whenever a full range video is input, since the YUVJ* formats are not listed as supported for this filter, a range reduction takes place through the auto-inserted format filter, forcing the conversion to operate on a limited range, However the filter handles full range videos perfectly fine, so adding support to YUVJ* formats will allow skipping a conversion step, while providing completely identical results. Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com> Reviewed-by: "Ronald S. Bultje" <rsbultje@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* vf_colorspace: Check av_frame_copy_props() return valueVittorio Giovara2016-08-27
| | | | | | | This function can potentially allocate memory. Reviewed-by: "Ronald S. Bultje" <rsbultje@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avfilter: add vaguedenoiser filterPaul B Mahol2016-08-26
|
* avfilter/motion_estimation: Fix pre processor formatingMichael Niedermayer2016-08-26
| | | | | | | IIRC, The spaces are not standard before the # Reviewed-by: James Almer <jamrial@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avfilter/motion_estimation: Fix warning: variable dir_x set but not usedMichael Niedermayer2016-08-26
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avfilter: added motion estimation and interpolation filtersDavinder Singh2016-08-26
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* af_hdcd: av_frame_free(out) if av_frame_copy_props() failsBurt P2016-08-25
| | | | Signed-off-by: Burt P <pburt0@gmail.com>
* af_hdcd: for easier maintenance alongside libhdcdBurt P2016-08-25
| | | | | | | | | | | | | | Mostly just re-arranges some code to make it easier to update this filter and libhdcd together. filter_frame() is much simpler as a result. * use the HDCD detection data structure and functions from libhdcd, moved detection code out of filter_frame() * moved analyze_mode preparation out of filter_frame() into hdcd_analyze_prepare(), from libhdcd * moved some macro definitions to the top so they are all together Signed-off-by: Burt P <pburt0@gmail.com>
* avfilter/af_acrusher: Rename sun/sovMichael Niedermayer2016-08-25
| | | | | | | The names are hard to understand and also seem to break build on at least some solaris versions Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avfilter: add yuvtestsrc source filterPaul B Mahol2016-08-25
|
* avfilter: add lut2 filterPaul B Mahol2016-08-25
|
* af_hdcd: check return value of av_frame_copy_props()Burt P2016-08-24
| | | | | | | | Anton Khirnov: "[av_frame_copy_props()] potentially contains memory allocation, so the return value needs to be checked." Signed-off-by: Burt P <pburt0@gmail.com>
* avfilter/vf_lut: add planar RGB supportPaul B Mahol2016-08-24
|
* avfilter/vf_maskedmerge: add support for more pixel formatsPaul B Mahol2016-08-23
|
* avfilter: add hysteresis filterPaul B Mahol2016-08-23
|
* avfilter: add maskedclamp filterPaul B Mahol2016-08-23
|
* af_hdcd: PE table limitsBurt P2016-08-21
| | | | Signed-off-by: Burt P <pburt0@gmail.com>
* af_hdcd: add AVOption to disable autoconversion in the filter graphBurt P2016-08-21
| | | | Signed-off-by: Burt P <pburt0@gmail.com>
* af_hdcd: add AVOption to set the CDT periodBurt P2016-08-21
| | | | Signed-off-by: Burt P <pburt0@gmail.com>
* af_hdcd: Code comments updateBurt P2016-08-21
| | | | Signed-off-by: Burt P <pburt0@gmail.com>
* avfilter/avf_showvolume: calculate color table only oncePaul B Mahol2016-08-21
|
* avfilter/vf_crop: make possible to do exact cropping for subsampled videosPaul B Mahol2016-08-21
|
* avfilter/window_func: use a constant instead of acosh()James Almer2016-08-20
| | | | | | | | Should fix compilation with non C99 compilers like msvc 2012, where acosh() is not available. Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: James Almer <jamrial@gmail.com>
* x86/avf_showcqt: use the FMULADD_PS x86util macroJames Almer2016-08-20
| | | | Signed-off-by: James Almer <jamrial@gmail.com>
* avfilter/vf_histogram: make foreground and background opacity configurablePaul B Mahol2016-08-19
|
* avfilter/avf_showvolume: use current peak value for picking colorsPaul B Mahol2016-08-18
|
* avfilter/avf_showspectrum: do not use uninitialized memoryPaul B Mahol2016-08-18
|
* avfilter/af_astats: fix flt(p) supportPaul B Mahol2016-08-18
|
* avfilter/af_astats: add support for s64(p) sample formatPaul B Mahol2016-08-18
|
* avfilter/avf_showfreqs: make minimum amplitude for log scaler configurablePaul B Mahol2016-08-17
|
* avfilter/avf_showspectrum: unbreak dB legendPaul B Mahol2016-08-17
|
* avfilter/Makefile & allfilters: sort entriesPaul B Mahol2016-08-17
|
* avfilter: add bitplanenoise filterPaul B Mahol2016-08-17
|
* avfilter/window_func: add cauchy, parzen and poisson window functionPaul B Mahol2016-08-16
|
* avfilter/vaf_spectrumsynth: check return codePaul B Mahol2016-08-16
|
* avfilter/avf_showspectrum: do not let multiple threads to write to same part ↵Paul B Mahol2016-08-16
| | | | of memory