diff options
author | Wouter Paeson <wouter@kangaroot.net> | 2006-03-22 14:31:47 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2006-03-22 14:31:47 +0000 |
commit | 89ab6598cb6e3469e04811047f3d0cab78857b91 (patch) | |
tree | b67aca1c461a3ebfbd8e32a6854de81d9c3caa97 /ext/Makefile.am | |
parent | 2fd4b22a8367f75995501822e772055ef8318d82 (diff) | |
download | gst-plugins-bad-89ab6598cb6e3469e04811047f3d0cab78857b91.tar.gz gst-plugins-bad-89ab6598cb6e3469e04811047f3d0cab78857b91.tar.bz2 gst-plugins-bad-89ab6598cb6e3469e04811047f3d0cab78857b91.zip |
Add new libsoundtouch-based pitch plugin (#331335).
Original commit message from CVS:
Patch by: Wouter Paeson <wouter at kangaroot dot net>
* configure.ac:
* ext/Makefile.am:
* ext/soundtouch/Makefile.am:
* ext/soundtouch/gstpitch.cc:
* ext/soundtouch/gstpitch.hh:
Add new libsoundtouch-based pitch plugin (#331335).
Diffstat (limited to 'ext/Makefile.am')
-rw-r--r-- | ext/Makefile.am | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ext/Makefile.am b/ext/Makefile.am index 3c1cddb9..3182000a 100644 --- a/ext/Makefile.am +++ b/ext/Makefile.am @@ -184,6 +184,12 @@ SMOOTHWAVE_DIR= SNDFILE_DIR= # endif +if USE_SOUNDTOUCH +SOUNDTOUCH_DIR=soundtouch +else +SOUNDTOUCH_DIR= +endif + if USE_SWFDEC SWFDEC_DIR=swfdec else @@ -245,6 +251,7 @@ SUBDIRS=\ $(SHOUT_DIR) \ $(SMOOTHWAVE_DIR) \ $(SNDFILE_DIR) \ + $(SOUNDTOUCH_DIR) \ $(SWFDEC_DIR) \ $(TAGLIB_DIR) \ $(TARKIN_DIR) \ @@ -266,6 +273,7 @@ DIST_SUBDIRS= \ neon \ sdl \ swfdec \ + soundtouch \ taglib \ wavpack \ xvid |