Commit 57abaf9d authored by Jean-Paul Saman's avatar Jean-Paul Saman Committed by Jean-Paul Saman

Add configure script options to link ffmpeg against amrnb and amrwb libraries.

parent 93805d84
......@@ -2580,6 +2580,20 @@ dnl Those options have to be here because the .pc can be bogus for ffmpeg previo
VLC_ADD_LDFLAGS([ffmpeg],[-lz])
fi])
AC_ARG_WITH(ffmpeg-amrnb,
[ --with-ffmpeg-amrnb specify if ffmpeg has been compiled with libamrnb support],
[
if test "$with_ffmpeg_amrnb" = "yes"; then
VLC_ADD_LDFLAGS([ffmpeg],[-lamrnb])
fi])
AC_ARG_WITH(ffmpeg-amrwb,
[ --with-ffmpeg-amrwb specify if ffmpeg has been compiled with libamrwb support],
[
if test "$with_ffmpeg_amrwb" = "yes"; then
VLC_ADD_LDFLAGS([ffmpeg],[-lamrwb])
fi])
dnl
dnl test for --with-ffmpeg-tree
dnl
......
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