Fix check for img_resample and sws_getContext

This commit is contained in:
Rafaël Carré 2008-05-28 00:44:20 +02:00
parent e9b987f4ad
commit 1589b92e32
1 changed files with 5 additions and 3 deletions

View File

@ -3023,12 +3023,13 @@ dnl Trying with pkg-config
[AC_CHECK_HEADERS([ffmpeg/swscale.h libswscale/swscale.h])],
[AC_CHECK_LIB(avcodec,img_resample,[],
[AC_MSG_ERROR([Your FFmpeg library doesn't have the needed img_resample() function. You should rebuild it with software scaler disabled, or install the swscale headers.])],
[${FFMPEG_LIBS}])
],
[${SWSCALE_LIBS}])
])
VLC_RESTORE_FLAGS
],[AC_CHECK_LIB(avcodec,img_resample,[],
[AC_MSG_ERROR([Your FFmpeg library doesn't have the needed img_resample() function. You should rebuild it with software scaler disabled, or install the swscale headers.])],
[${SWSCALE_LIBS}])
[${FFMPEG_LIBS}])
]
)
@ -3074,7 +3075,8 @@ dnl Trying with pkg-config
[-lavcodec $LDAVUTIL])
LDFLAGS="${LDFLAGS_save}"
CPPFLAGS="${CPPFLAGS_save}"
])
],
[${SWSCALE_LIBS}])
])
fi