Commit 8b49a93d authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

configure: reject lavc >= 54.22 because of planar audio

parent a30d8ae0
......@@ -2416,8 +2416,8 @@ AC_ARG_ENABLE(avcodec,
[ --enable-avcodec libavcodec codec (default enabled)])
AS_IF([test "${enable_avcodec}" != "no"], [
PKG_CHECK_MODULES(AVCODEC,[libavcodec >= 52.25.0 libavutil], [
PKG_CHECK_EXISTS([libavcodec < 55],, [
AC_MSG_ERROR([libavcodec versions 55 and later are not supported yet.])
PKG_CHECK_EXISTS([libavcodec < 54.22],, [
AC_MSG_ERROR([libavcodec versions 54.22 and later are not supported yet.])
])
VLC_SAVE_FLAGS
CPPFLAGS="${CPPFLAGS} ${AVCODEC_CFLAGS}"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment