From: Iain Holmes Date: Fri, 12 Nov 2004 15:04:55 +0000 (+0000) Subject: Added the polypaudio sink and hooked it into the build system. X-Git-Tag: 1.19.3~511^2~13488 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dede5044487b867fc3e111d3d85cbbe6b661f518;p=platform%2Fupstream%2Fgstreamer.git Added the polypaudio sink and hooked it into the build system. Original commit message from CVS: Added the polypaudio sink and hooked it into the build system. --- diff --git a/ChangeLog b/ChangeLog index 93896ba..25550c9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,16 @@ +2004-11-12 Iain + + * configure.ac: Check for polypaudio + + * ext/Makefile.am: Build the polyp dir + + * ext/polyp: The polypsink sources. + +2004-10-30 Iain + + * gst/interleave/interleave.c (interleave_unlink): Change the src pads + caps to reflect the new number of channels. + 2004-11-12 Ronald S. Bultje * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop): diff --git a/configure.ac b/configure.ac index a69a2bc..239dd9e 100644 --- a/configure.ac +++ b/configure.ac @@ -1411,6 +1411,15 @@ GST_CHECK_FEATURE(PANGO, [pango], pango, [ AC_SUBST(PANGO_LIBS) ]) +dnl *** polypaudio *** +translit(dnm, m, l) AM_CONDITIONAL(USE_POLYP, true) +GST_CHECK_FEATURE(POLYP, [polyp], polyp, [ + PKG_CHECK_MODULES(POLYP, polyplib >= 0.6, + HAVE_POLYP="yes", HAVE_POLYP="no") + AC_SUBST(POLYP_CFLAGS) + AC_SUBST(POLYP_CFLAGS) +]) + dnl *** dv1394 *** translit(dnm, m, l) AM_CONDITIONAL(USE_DV1394, true) GST_CHECK_FEATURE(DV1394, [raw1394 and avc1394 library], dv1394src, [ @@ -1970,6 +1979,7 @@ ext/musicbrainz/Makefile ext/nas/Makefile ext/ogg/Makefile ext/pango/Makefile +ext/polyp/Makefile ext/raw1394/Makefile ext/sdl/Makefile ext/shout/Makefile @@ -1988,6 +1998,7 @@ ext/xvid/Makefile gst-libs/Makefile gst-libs/gst/Makefile gst-libs/gst/audio/Makefile +gst-libs/gst/cache/Makefile gst-libs/gst/colorbalance/Makefile gst-libs/gst/floatcast/Makefile gst-libs/gst/gconf/Makefile diff --git a/ext/Makefile.am b/ext/Makefile.am index 311a320..7f3b6fc 100644 --- a/ext/Makefile.am +++ b/ext/Makefile.am @@ -190,6 +190,12 @@ else LIBPNG_DIR= endif +if USE_POLYP +POLYP_DIR=polyp +else +POLYP_DIR= +endif + if USE_LIBRFB LIBRFB_DIR=librfb else @@ -409,6 +415,7 @@ SUBDIRS=\ $(MUSICBRAINZ_DIR) \ $(OGG_DIR) \ $(PANGO_DIR) \ + $(POLYP_DIR) \ $(SDL_DIR) \ $(SHOUT_DIR) \ $(SHOUT2_DIR) \ @@ -470,6 +477,7 @@ DIST_SUBDIRS=\ nas \ ogg \ pango \ + polyp \ raw1394 \ sdl \ snapshot \