mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
configure: check for GstVideoDecoder API.
GstVideoDecoder API is part of an unreleased GStreamer 0.10 stack. In particular, this is only available in git 0.10 branch or GStreamer >= 1.0 stack. Interested parties may either use upstream git 0.10 branch or backport the necessary support for GstVideoDecoder API, thus including helper tools like GstVideoCodecFrame et al.
This commit is contained in:
parent
3506e1d45b
commit
4344a1053d
1 changed files with 27 additions and 0 deletions
27
configure.ac
27
configure.ac
|
@ -211,6 +211,33 @@ if test "$ac_cv_have_gst_video_overlay_composition" != "yes"; then
|
||||||
AC_MSG_ERROR([GstVideoOverlayComposition is not available])
|
AC_MSG_ERROR([GstVideoOverlayComposition is not available])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
dnl ... GstVideoDecoder (gstreamer-video)
|
||||||
|
AC_CACHE_CHECK([for GstVideoDecoder],
|
||||||
|
ac_cv_have_gst_video_decoder, [
|
||||||
|
saved_CPPFLAGS="$CPPFLAGS"
|
||||||
|
CPPFLAGS="$CPPFLAGS $GST_CFLAGS $GST_VIDEO_CFLAGS"
|
||||||
|
saved_LIBS="$LIBS"
|
||||||
|
LIBS="$LIBS $GST_LIBS $GST_VIDEO_LIBS"
|
||||||
|
AC_COMPILE_IFELSE(
|
||||||
|
[AC_LANG_PROGRAM(
|
||||||
|
[[#include <gst/video/gstvideodecoder.h>]],
|
||||||
|
[[GstVideoCodecFrame *f;
|
||||||
|
GstVideoDecoder vdec;
|
||||||
|
f = g_slice_new0(GstVideoCodecFrame);
|
||||||
|
f->ref_count = 1;
|
||||||
|
gst_video_decoder_have_frame(&vdec);
|
||||||
|
gst_video_decoder_finish_frame(&vdec, f);
|
||||||
|
gst_video_codec_frame_unref(f);]])],
|
||||||
|
[ac_cv_have_gst_video_decoder="yes"],
|
||||||
|
[ac_cv_have_gst_video_decoder="no"]
|
||||||
|
)
|
||||||
|
CPPFLAGS="$saved_CPPFLAGS"
|
||||||
|
LIBS="$saved_LIBS"
|
||||||
|
])
|
||||||
|
if test "$ac_cv_have_gst_video_decoder" != "yes"; then
|
||||||
|
AC_MSG_ERROR([GstVideoDecoder is not available])
|
||||||
|
fi
|
||||||
|
|
||||||
dnl GStreamer -bad plugins
|
dnl GStreamer -bad plugins
|
||||||
PKG_CHECK_MODULES([GST_BASEVIDEO],
|
PKG_CHECK_MODULES([GST_BASEVIDEO],
|
||||||
[gstreamer-basevideo-$GST_MAJORMINOR >= gst_plugins_bad_version])
|
[gstreamer-basevideo-$GST_MAJORMINOR >= gst_plugins_bad_version])
|
||||||
|
|
Loading…
Reference in a new issue