From 2c17d6a71e6d8b008376ba5e07bc737494690d51 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Tue, 30 Aug 2016 18:31:42 +0200 Subject: [PATCH] Add back SWRESAMPLE check --- qb/config.libs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qb/config.libs.sh b/qb/config.libs.sh index 45644fa481..d6a4f1a6e2 100644 --- a/qb/config.libs.sh +++ b/qb/config.libs.sh @@ -308,7 +308,7 @@ if [ "$HAVE_THREADS" != 'no' ]; then check_header AV_CHANNEL_LAYOUT libavutil/channel_layout.h HAVE_FFMPEG='yes' - if [ "$HAVE_AVCODEC" = 'no' ] || [ "$HAVE_AVFORMAT" = 'no' ] || [ "$HAVE_AVUTIL" = 'no' ] || [ "$HAVE_SWSCALE" = 'no' ]; then + if [ "$HAVE_AVCODEC" = 'no' ] || [ "$HAVE_SWRESAMPLE" = 'no' ] || [ "$HAVE_AVFORMAT" = 'no' ] || [ "$HAVE_AVUTIL" = 'no' ] || [ "$HAVE_SWSCALE" = 'no' ]; then HAVE_FFMPEG='no' echo "Notice: FFmpeg built-in support disabled due to missing or unsuitable packages." fi