mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 17:51:16 +00:00
Update mpeg2dec plugin. Now depends on mpeg2dec 0.2.0.
Original commit message from CVS: Update mpeg2dec plugin. Now depends on mpeg2dec 0.2.0.
This commit is contained in:
parent
69cf376f7b
commit
066b743683
3 changed files with 8 additions and 0 deletions
|
@ -30,6 +30,7 @@
|
|||
#undef HAVE_VORBIS
|
||||
#undef HAVE_LIBJPEG
|
||||
#undef HAVE_NASM
|
||||
#undef HAVE_MPEG2DEC
|
||||
|
||||
#undef HAVE_ATOMIC_H
|
||||
|
||||
|
|
|
@ -360,6 +360,11 @@ AC_MSG_CHECKING(Shout library)
|
|||
AC_CHECK_LIB(shout, shout_init_connection, HAVE_LIBSHOUT=yes, HAVE_LIBSHOUT=no, )
|
||||
AC_CHECK_HEADER(shout/shout.h, :, HAVE_LIBSHOUT=no)
|
||||
|
||||
dnl Check for mpeg2dec
|
||||
AC_MSG_CHECKING(mpeg2dec library)
|
||||
AC_CHECK_LIB(mpeg2, mpeg2_init, HAVE_MPEG2DEC=yes, HAVE_MPEG2DEC=no, )
|
||||
AC_CHECK_HEADER(mpeg2dec/mpeg2.h, :, HAVE_MPEG2DEC=no)
|
||||
|
||||
|
||||
dnl check if css-auth.c exists (FIXME)
|
||||
AC_MSG_CHECKING(DVD CSS code)
|
||||
|
@ -591,6 +596,7 @@ AM_CONDITIONAL(HAVE_LIBLAME, test "x$HAVE_LIBLAME" = "xyes")
|
|||
AM_CONDITIONAL(HAVE_LIBSHOUT, test "x$HAVE_LIBSHOUT" = "xyes")
|
||||
AM_CONDITIONAL(HAVE_LIBESD, test "x$HAVE_LIBESD" = "xyes")
|
||||
AM_CONDITIONAL(HAVE_LIBASOUND, test "x$HAVE_LIBASOUND" = "xyes")
|
||||
AM_CONDITIONAL(HAVE_MPEG2DEC, test "x$HAVE_MPEG2DEC" = "xyes")
|
||||
|
||||
|
||||
|
||||
|
|
1
test/.gitignore
vendored
1
test/.gitignore
vendored
|
@ -27,6 +27,7 @@ teardown
|
|||
buffer
|
||||
mp3parse
|
||||
mpeg2parse
|
||||
mpeg2parse2
|
||||
mp3play
|
||||
ac3parse
|
||||
ac3play
|
||||
|
|
Loading…
Reference in a new issue