From: Monty Date: Wed, 14 Jun 2000 22:41:53 +0000 (+0000) Subject: The merge accidentally lost the C++ wrappers and os_types.h include in codec.h X-Git-Tag: v1.3.3~1210 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6a5b0c4b42c319f6b51610dbb8adcf722343d1c8;p=platform%2Fupstream%2Flibvorbis.git The merge accidentally lost the C++ wrappers and os_types.h include in codec.h Fixed Monty svn path=/trunk/vorbis/; revision=448 --- diff --git a/include/vorbis/codec.h b/include/vorbis/codec.h index c2b12f1..b18abfb 100644 --- a/include/vorbis/codec.h +++ b/include/vorbis/codec.h @@ -12,16 +12,22 @@ ******************************************************************** function: libvorbis codec headers - last mod: $Id: codec.h,v 1.17 2000/06/14 10:13:35 xiphmont Exp $ + last mod: $Id: codec.h,v 1.18 2000/06/14 22:41:53 xiphmont Exp $ ********************************************************************/ #ifndef _vorbis_codec_h_ #define _vorbis_codec_h_ +#ifdef __cplusplus +extern "C" +{ +#endif /* __cplusplus */ + #define MAX_BARK 27 #include +#include "os_types.h" #include "vorbis/codebook.h" #include "vorbis/internal.h" @@ -425,5 +431,9 @@ 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