gstreamer element check

SVN revision: 20274
This commit is contained in:
doursse 2006-02-04 13:46:19 +00:00 committed by doursse
parent 7ecab55f5b
commit 7d46b8ac40
1 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,37 @@
dnl Perform a check for a GStreamer element using gst-inspect
dnl Thomas Vander Stichele <thomas at apestaart dot org>
dnl Last modification: 25/01/2005
dnl
dnl Modified by Vincent Torri <vtorri at univ-evry dot fr>
dnl Last modification: 19/10/2005
dnl AM_GST_ELEMENT_CHECK(ELEMENT-NAME, ACTION-IF-FOUND, ACTION-IF-NOT-FOUND)
AC_DEFUN([AM_GST_ELEMENT_CHECK],
[
if test "x$GST_INSPECT" == "x"; then
AC_CHECK_PROG(GST_INSPECT, gst-inspect, gst-inspect, [])
fi
if test "x$GST_INSPECT" != "x"; then
AC_MSG_CHECKING(GStreamer element $1 with $GST_INSPECT)
if [ $GST_INSPECT $1 > /dev/null 2> /dev/null ]; then
AC_MSG_RESULT(found.)
$2
else
AC_MSG_RESULT(not found.)
AC_CHECK_PROG(GST_INSPECT_0_8, gst-inspect-0.8, gst-inspect-0.8, [])
if test "x$GST_INSPECT_0_8" != "x"; then
AC_MSG_CHECKING(GStreamer element $1 with $GST_INSPECT_0_8)
if [ $GST_INSPECT_0_8 $1 > /dev/null 2> /dev/null ]; then
AC_MSG_RESULT(found.)
$2
else
AC_MSG_RESULT(not found.)
$3
fi
fi
fi
fi
])