Commit b1c4cebb authored by Laurent Aimar's avatar Laurent Aimar

* add compilation of postprocessing modules for ffmpeg.

parent d25c5e06
This diff is collapsed.
...@@ -989,6 +989,17 @@ then ...@@ -989,6 +989,17 @@ then
ffmpeg_LDFLAGS="${ffmpeg_LDFLAGS} -L${with_ffmpeg}/lib" ffmpeg_LDFLAGS="${ffmpeg_LDFLAGS} -L${with_ffmpeg}/lib"
fi fi
dnl Add postprocessing modules
PLUGINS="${PLUGINS} codec/ffmpeg/postprocessing/postprocessing_c"
if test "x${ac_cv_mmx_inline}" != "xno"; then
PLUGINS="${PLUGINS} codec/ffmpeg/postprocessing/postprocessing_mmx"
fi
if test "x${ac_cv_mmxext_inline}" != "xno"; then
PLUGINS="${PLUGINS} codec/ffmpeg/postprocessing/postprocessing_mmxext"
fi
AC_ARG_WITH(ffmpeg-tree, AC_ARG_WITH(ffmpeg-tree,
[ --with-ffmpeg-tree=PATH ffmpeg tree for static linking]) [ --with-ffmpeg-tree=PATH ffmpeg tree for static linking])
if test "x${with_ffmpeg_tree}" != "x" if test "x${with_ffmpeg_tree}" != "x"
......
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