diff options
author | James Almer <jamrial@gmail.com> | 2018-05-06 17:15:54 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2018-05-06 17:23:29 -0300 |
commit | 652b857b94739df60b1436330ccea6bb2b7c78b3 (patch) | |
tree | 8cafc1c5d260b7931401c002c7f135526f3d8ba5 | |
parent | ab7692ee35945084966311d5e1cf3fcbcbccd5a3 (diff) | |
download | ffmpeg-streaming-652b857b94739df60b1436330ccea6bb2b7c78b3.zip ffmpeg-streaming-652b857b94739df60b1436330ccea6bb2b7c78b3.tar.gz |
configure: add missing dependencies to vf_srcnn
The access dependecy is temporary and should fix compilation with
msvc until a proper fix is committed.
Signed-off-by: James Almer <jamrial@gmail.com>
-rwxr-xr-x | configure | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -3390,6 +3390,7 @@ 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="access avformat" stereo3d_filter_deps="gpl" subtitles_filter_deps="avformat avcodec libass" super2xsai_filter_deps="gpl" @@ -6796,6 +6797,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 subtitles_filter && prepend avfilter_deps "avformat avcodec" enabled uspp_filter && prepend avfilter_deps "avcodec" enabled zoompan_filter && prepend avfilter_deps "swscale" |