Added first cut of Martin Vogt's kmpg plugin.
authorMonty <xiphmont@xiph.org>
Mon, 10 Apr 2000 00:12:15 +0000 (00:12 +0000)
committerMonty <xiphmont@xiph.org>
Mon, 10 Apr 2000 00:12:15 +0000 (00:12 +0000)
Monty

svn path=/trunk/vorbis/; revision=312

configure
configure.in
include/vorbis/codec.h

index cdefa9e..6581a09 100755 (executable)
--- a/configure
+++ b/configure
@@ -2117,7 +2117,8 @@ done
 
 ac_given_srcdir=$srcdir
 
-trap 'rm -fr `echo "Makefile lib/Makefile examples/Makefile vq/Makefile huff/Makefile cmdline/Makefile xmms/Makefile" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15
+trap 'rm -fr `echo "Makefile lib/Makefile examples/Makefile vq/Makefile \
+       huff/Makefile cmdline/Makefile xmms/Makefile kmpg/Makefile" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15
 EOF
 cat >> $CONFIG_STATUS <<EOF
 
@@ -2206,7 +2207,8 @@ EOF
 
 cat >> $CONFIG_STATUS <<EOF
 
-CONFIG_FILES=\${CONFIG_FILES-"Makefile lib/Makefile examples/Makefile vq/Makefile huff/Makefile cmdline/Makefile xmms/Makefile"}
+CONFIG_FILES=\${CONFIG_FILES-"Makefile lib/Makefile examples/Makefile vq/Makefile \
+       huff/Makefile cmdline/Makefile xmms/Makefile kmpg/Makefile"}
 EOF
 cat >> $CONFIG_STATUS <<\EOF
 for ac_file in .. $CONFIG_FILES; do if test "x$ac_file" != x..; then
index 42d7b2c..cf81b8c 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: configure.in,v 1.10 2000/02/12 08:32:59 xiphmont Exp $
+# $Id: configure.in,v 1.11 2000/04/10 00:12:14 xiphmont Exp $
 
 AC_INIT(lib/mdct.c)
 #AC_CONFIG_HEADER(config.h)
@@ -180,4 +180,5 @@ AC_SUBST(RANLIB)
 #AC_SUBST(LIBGTKDIR)
 AC_SUBST(pthread_lib)
 
-AC_OUTPUT(Makefile lib/Makefile examples/Makefile vq/Makefile huff/Makefile cmdline/Makefile xmms/Makefile)
+AC_OUTPUT(Makefile lib/Makefile examples/Makefile vq/Makefile \
+       huff/Makefile cmdline/Makefile xmms/Makefile kmpg/Makefile)
index 56a00f7..7c03a2a 100644 (file)
  ********************************************************************
 
  function: libvorbis codec headers
- last mod: $Id: codec.h,v 1.11 2000/04/03 09:45:55 xiphmont Exp $
+ last mod: $Id: codec.h,v 1.12 2000/04/10 00:12:14 xiphmont Exp $
 
  ********************************************************************/
 
 #ifndef _vorbis_codec_h_
 #define _vorbis_codec_h_
 
+#ifdef __cplusplus
+extern "C"
+{
+#endif /* __cplusplus */
+
+
 #define MAX_BARK 27
 
 #include <sys/types.h>
@@ -387,5 +393,11 @@ extern int      vorbis_synthesis_blockin(vorbis_dsp_state *v,vorbis_block *vb);
 extern int      vorbis_synthesis_pcmout(vorbis_dsp_state *v,double ***pcm);
 extern int      vorbis_synthesis_read(vorbis_dsp_state *v,int samples);
 
+
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+
+
 #endif