--- configure | 8 ++++++-- libavfilter/vsrc_movie.c | 4 ++++ 2 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/configure b/configure index f204dc2..8fa2f46 100755 --- a/configure +++ b/configure @@ -2426,6 +2426,7 @@ unix_protocol_deps="sys_un_h" unix_protocol_select="network" # filters +asyncts_filter_deps="avresample" blackframe_filter_deps="gpl" boxblur_filter_deps="gpl" bs2b_filter_deps="libbs2b" @@ -2440,6 +2441,7 @@ frei0r_src_filter_extralibs='$ldl' hdcd_filter_deps="libhdcd" hqdn3d_filter_deps="gpl" interlace_filter_deps="gpl" +movie_filter_deps="avcodec avformat" ocv_filter_deps="libopencv" resample_filter_deps="avresample" scale_filter_deps="swscale" @@ -2453,8 +2455,9 @@ encode_audio_example_deps="avcodec avutil" encode_video_example_deps="avcodec avutil" filter_audio_example_deps="avfilter avutil" metadata_example_deps="avformat avutil" -output_example_deps="avcodec avformat avutil swscale" +output_example_deps="avcodec avformat avresample avutil swscale" qsvdec_example_deps="avcodec avutil libmfx h264_qsv_decoder" +qsvdec_example_deps="avcodec avutil libmfx h264_qsv_decoder vaapi_x11" transcode_aac_example_deps="avcodec avformat avresample" # libraries, in linking order @@ -5109,7 +5112,8 @@ enabled zlib && add_cppflags -DZLIB_CONST # conditional library dependencies, in linking order enabled movie_filter && prepend avfilter_deps "avformat avcodec" -enabled resample_filter && prepend avfilter_deps "avresample" +enabled_any asyncts_filter resample_filter && + prepend avfilter_deps "avresample" enabled scale_filter && prepend avfilter_deps "swscale" enabled opus_decoder && prepend avcodec_deps "avresample" diff --git a/libavfilter/vsrc_movie.c b/libavfilter/vsrc_movie.c index 5989a59..7fc9925 100644 --- a/libavfilter/vsrc_movie.c +++ b/libavfilter/vsrc_movie.c @@ -35,7 +35,11 @@ #include "libavutil/avstring.h" #include "libavutil/opt.h" #include "libavutil/imgutils.h" + +#include "libavcodec/avcodec.h" + #include "libavformat/avformat.h" + #include "avfilter.h" #include "formats.h" #include "internal.h" -- 2.1.4 _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
