mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
ATSC A/52 audio decoder plugin http://liba52.sf.net/
Original commit message from CVS: ATSC A/52 audio decoder plugin http://liba52.sf.net/ - not working fully yet - has ugly debug code at the moment
This commit is contained in:
parent
b1ccfa05fa
commit
c884410439
2 changed files with 12 additions and 0 deletions
|
@ -39,6 +39,7 @@
|
||||||
#undef HAVE_LIBSDL
|
#undef HAVE_LIBSDL
|
||||||
#undef HAVE_LIBHERMES
|
#undef HAVE_LIBHERMES
|
||||||
#undef HAVE_NASM
|
#undef HAVE_NASM
|
||||||
|
#undef HAVE_A52DEC
|
||||||
#undef HAVE_MPEG2DEC
|
#undef HAVE_MPEG2DEC
|
||||||
//thomas: commented out #undef HAVE_FLAC
|
//thomas: commented out #undef HAVE_FLAC
|
||||||
#undef HAVE_FLACLIB
|
#undef HAVE_FLACLIB
|
||||||
|
|
|
@ -585,6 +585,11 @@ AC_MSG_CHECKING(mpeg2dec library)
|
||||||
AC_CHECK_LIB(mpeg2, mpeg2_init, HAVE_MPEG2DEC=yes, HAVE_MPEG2DEC=no, )
|
AC_CHECK_LIB(mpeg2, mpeg2_init, HAVE_MPEG2DEC=yes, HAVE_MPEG2DEC=no, )
|
||||||
AC_CHECK_HEADER(mpeg2dec/mpeg2.h, :, HAVE_MPEG2DEC=no)
|
AC_CHECK_HEADER(mpeg2dec/mpeg2.h, :, HAVE_MPEG2DEC=no)
|
||||||
|
|
||||||
|
dnl Check for a52dec
|
||||||
|
AC_MSG_CHECKING(a52dec library)
|
||||||
|
AC_CHECK_LIB(a52, a52_init, HAVE_A52DEC=yes, HAVE_A52DEC=no, )
|
||||||
|
AC_CHECK_HEADER(a52dec/a52.h, :, HAVE_A52DEC=no)
|
||||||
|
|
||||||
dnl Check for sidplay
|
dnl Check for sidplay
|
||||||
AC_PATH_LIBSIDPLAY
|
AC_PATH_LIBSIDPLAY
|
||||||
|
|
||||||
|
@ -946,6 +951,10 @@ if test "x$HAVE_MPEG2DEC" = xyes; then
|
||||||
AC_DEFINE(HAVE_MPEG2DEC)
|
AC_DEFINE(HAVE_MPEG2DEC)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if test "x$HAVE_A52DEC" = xyes; then
|
||||||
|
AC_DEFINE(HAVE_A52DEC)
|
||||||
|
fi
|
||||||
|
|
||||||
if test "x$HAVE_FLACLIB" = xyes; then
|
if test "x$HAVE_FLACLIB" = xyes; then
|
||||||
AC_DEFINE(HAVE_FLACLIB)
|
AC_DEFINE(HAVE_FLACLIB)
|
||||||
fi
|
fi
|
||||||
|
@ -996,6 +1005,7 @@ AM_CONDITIONAL(HAVE_CDPARANOIA, test "x$HAVE_CDPARANOIA" = "xyes")
|
||||||
AM_CONDITIONAL(HAVE_LIBLAME, test "x$HAVE_LIBLAME" = "xyes")
|
AM_CONDITIONAL(HAVE_LIBLAME, test "x$HAVE_LIBLAME" = "xyes")
|
||||||
AM_CONDITIONAL(HAVE_LIBSHOUT, test "x$HAVE_LIBSHOUT" = "xyes")
|
AM_CONDITIONAL(HAVE_LIBSHOUT, test "x$HAVE_LIBSHOUT" = "xyes")
|
||||||
AM_CONDITIONAL(HAVE_MPEG2DEC, test "x$HAVE_MPEG2DEC" = "xyes")
|
AM_CONDITIONAL(HAVE_MPEG2DEC, test "x$HAVE_MPEG2DEC" = "xyes")
|
||||||
|
AM_CONDITIONAL(HAVE_A52DEC, test "x$HAVE_A52DEC" = "xyes")
|
||||||
dnl thomas : the next line gives errors, this is how it is in CVS
|
dnl thomas : the next line gives errors, this is how it is in CVS
|
||||||
dnl AM_CONDITIONAL(HAVE_FLAC, test "x$HAVE_FLAC" = "xyes")
|
dnl AM_CONDITIONAL(HAVE_FLAC, test "x$HAVE_FLAC" = "xyes")
|
||||||
dnl thomas : the next line gives errors as well, I commented it
|
dnl thomas : the next line gives errors as well, I commented it
|
||||||
|
@ -1134,6 +1144,7 @@ libs/putbits/Makefile
|
||||||
libs/idct/Makefile
|
libs/idct/Makefile
|
||||||
libs/audio/Makefile
|
libs/audio/Makefile
|
||||||
plugins/Makefile
|
plugins/Makefile
|
||||||
|
plugins/a52dec/Makefile
|
||||||
plugins/aasink/Makefile
|
plugins/aasink/Makefile
|
||||||
plugins/alsa/Makefile
|
plugins/alsa/Makefile
|
||||||
plugins/au/Makefile
|
plugins/au/Makefile
|
||||||
|
|
Loading…
Reference in a new issue