Commit 8a7c44ed authored by Christophe Mutricy's avatar Christophe Mutricy

Add some --with-ffmpeg-libfoo. Patch by Siegfried Wagner

parent c7e81964
......@@ -2920,6 +2920,34 @@ 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])
AC_ARG_WITH(ffmpeg-x264,
[ --with-ffmpeg-x264 specify if ffmpeg has been compiled with libamrnb support],
[
if test "$with_ffmpeg_x264" = "yes"; then
VLC_ADD_LDFLAGS([ffmpeg],[-lx264])
fi])
AC_ARG_WITH(ffmpeg-a52,
[ --with-ffmpeg-x264 specify if ffmpeg has been compiled with libamrnb support],
[
if test "$with_ffmpeg_a52" = "yes"; then
VLC_ADD_LDFLAGS([ffmpeg],[-la52])
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