diff options
author | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2005-08-23 15:14:01 +0000 |
---|---|---|
committer | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2005-08-23 15:14:01 +0000 |
commit | 590d6bcc9ab5fd5574772d7825f00e5e4a72de32 (patch) | |
tree | f42f17df55e33bd6c4fce228207d40f7812c261d /ext | |
parent | 256ec1a0cbf2783366351ab9e7e637608563d97a (diff) | |
download | gst-plugins-bad-590d6bcc9ab5fd5574772d7825f00e5e4a72de32.tar.gz gst-plugins-bad-590d6bcc9ab5fd5574772d7825f00e5e4a72de32.tar.bz2 gst-plugins-bad-590d6bcc9ab5fd5574772d7825f00e5e4a72de32.zip |
Port speexdec. Leads to some unfamiliar warnings on console, but works otherwise.
Original commit message from CVS:
* configure.ac:
* ext/Makefile.am:
* ext/speex/Makefile.am:
* ext/speex/gstspeex.c: (plugin_init):
* ext/speex/gstspeexdec.c: (speex_get_query_types),
(gst_speex_dec_init), (speex_dec_src_query), (speex_dec_src_event),
(speex_dec_event), (speex_dec_chain):
Port speexdec. Leads to some unfamiliar warnings on console,
but works otherwise.
Diffstat (limited to 'ext')
-rw-r--r-- | ext/Makefile.am | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/ext/Makefile.am b/ext/Makefile.am index 7f1ea76a..de7252cd 100644 --- a/ext/Makefile.am +++ b/ext/Makefile.am @@ -364,11 +364,11 @@ XVID_DIR= SNAPSHOT_DIR= # endif -# if USE_SPEEX -# SPEEX_DIR=speex -# else +if USE_SPEEX +SPEEX_DIR=speex +else SPEEX_DIR= -# endif +endif # if USE_XINE # XINE_DIR=xine @@ -455,4 +455,5 @@ DIST_SUBDIRS=\ mpeg2dec \ jpeg \ libpng \ - lame + lame \ + speex |