From: Monty Date: Fri, 7 Jul 2000 00:53:10 +0000 (+0000) Subject: Add os.h to get alloc.h in these modules for IRIX X-Git-Tag: v1.3.3~1189 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2b112c76e8eddde0694b326df88e5926fbe1a25d;p=platform%2Fupstream%2Flibvorbis.git Add os.h to get alloc.h in these modules for IRIX svn path=/trunk/vorbis/; revision=513 --- diff --git a/lib/analysis.c b/lib/analysis.c index 3179a89..d86cf24 100644 --- a/lib/analysis.c +++ b/lib/analysis.c @@ -12,7 +12,7 @@ ******************************************************************** function: single-block PCM analysis mode dispatch - last mod: $Id: analysis.c,v 1.29 2000/06/18 12:39:58 xiphmont Exp $ + last mod: $Id: analysis.c,v 1.30 2000/07/07 00:53:10 xiphmont Exp $ ********************************************************************/ @@ -23,6 +23,7 @@ #include "bitwise.h" #include "registry.h" #include "scales.h" +#include "os.h" /* decides between modes, dispatches to the appropriate mapping. */ int vorbis_analysis(vorbis_block *vb,ogg_packet *op){ diff --git a/lib/bitwise.c b/lib/bitwise.c index c11fc46..d181e57 100644 --- a/lib/bitwise.c +++ b/lib/bitwise.c @@ -12,7 +12,7 @@ ******************************************************************** function: packing variable sized words into an octet stream - last mod: $Id: bitwise.c,v 1.10 2000/03/10 13:21:18 xiphmont Exp $ + last mod: $Id: bitwise.c,v 1.11 2000/07/07 00:53:10 xiphmont Exp $ ********************************************************************/ @@ -23,6 +23,7 @@ #include #include "bitwise.h" #include "misc.h" +#include "os.h" #define BUFFER_INCREMENT 256 diff --git a/lib/info.c b/lib/info.c index 43b823d..23ce375 100644 --- a/lib/info.c +++ b/lib/info.c @@ -12,7 +12,7 @@ ******************************************************************** function: maintain the info structure, info <-> header packets - last mod: $Id: info.c,v 1.24 2000/05/08 20:49:48 xiphmont Exp $ + last mod: $Id: info.c,v 1.25 2000/07/07 00:53:10 xiphmont Exp $ ********************************************************************/ @@ -30,6 +30,7 @@ #include "window.h" #include "psy.h" #include "misc.h" +#include "os.h" /* helpers */ static int ilog2(unsigned int v){ diff --git a/lib/synthesis.c b/lib/synthesis.c index 7812149..00c9008 100644 --- a/lib/synthesis.c +++ b/lib/synthesis.c @@ -12,7 +12,7 @@ ******************************************************************** function: single-block PCM synthesis - last mod: $Id: synthesis.c,v 1.16 2000/06/15 09:18:34 xiphmont Exp $ + last mod: $Id: synthesis.c,v 1.17 2000/07/07 00:53:10 xiphmont Exp $ ********************************************************************/ @@ -21,6 +21,7 @@ #include "registry.h" #include "bitwise.h" #include "misc.h" +#include "os.h" int vorbis_synthesis(vorbis_block *vb,ogg_packet *op){ vorbis_dsp_state *vd=vb->vd;