diff options
author | Sergey Lavrushkin <dualfal@gmail.com> | 2018-06-14 00:37:12 +0300 |
---|---|---|
committer | Pedro Arthur <bygrandao@gmail.com> | 2018-07-02 10:47:14 -0300 |
commit | 575b7189908e1cfa55104b0d2c7c9f6ea30ca2dc (patch) | |
tree | 49ba8795536d104ec1d1c8cb08772fcceb8da431 /configure | |
parent | d24c9e55f64eebf67a9e488daa17332533481c20 (diff) | |
download | ffmpeg-575b7189908e1cfa55104b0d2c7c9f6ea30ca2dc.tar.gz |
Adds ESPCN super resolution filter merged with SRCNN filter.
Signed-off-by: Pedro Arthur <bygrandao@gmail.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -260,7 +260,7 @@ External library support: --enable-libsrt enable Haivision SRT protocol via libsrt [no] --enable-libssh enable SFTP protocol via libssh [no] --enable-libtensorflow enable TensorFlow as a DNN module backend - for DNN based filters like srcnn [no] + for DNN based filters like sr [no] --enable-libtesseract enable Tesseract, needed for ocr filter [no] --enable-libtheora enable Theora encoding via libtheora [no] --enable-libtls enable LibreSSL (via libtls), needed for https support @@ -3402,8 +3402,8 @@ spectrumsynth_filter_deps="avcodec" spectrumsynth_filter_select="fft" spp_filter_deps="gpl avcodec" spp_filter_select="fft idctdsp fdctdsp me_cmp pixblockdsp" -srcnn_filter_deps="avformat" -srcnn_filter_select="dnn" +sr_filter_deps="avformat swscale" +sr_filter_select="dnn" stereo3d_filter_deps="gpl" subtitles_filter_deps="avformat avcodec libass" super2xsai_filter_deps="gpl" @@ -6823,7 +6823,7 @@ enabled signature_filter && prepend avfilter_deps "avcodec avformat" enabled smartblur_filter && prepend avfilter_deps "swscale" enabled spectrumsynth_filter && prepend avfilter_deps "avcodec" enabled spp_filter && prepend avfilter_deps "avcodec" -enabled srcnn_filter && prepend avfilter_deps "avformat" +enabled sr_filter && prepend avfilter_deps "avformat" enabled subtitles_filter && prepend avfilter_deps "avformat avcodec" enabled uspp_filter && prepend avfilter_deps "avcodec" enabled zoompan_filter && prepend avfilter_deps "swscale" |