Add os.h to get alloc.h in these modules for IRIX
authorMonty <xiphmont@xiph.org>
Fri, 7 Jul 2000 00:53:10 +0000 (00:53 +0000)
committerMonty <xiphmont@xiph.org>
Fri, 7 Jul 2000 00:53:10 +0000 (00:53 +0000)
svn path=/trunk/vorbis/; revision=513

lib/analysis.c
lib/bitwise.c
lib/info.c
lib/synthesis.c

index 3179a89..d86cf24 100644 (file)
@@ -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){
index c11fc46..d181e57 100644 (file)
@@ -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 <stdlib.h>
 #include "bitwise.h"
 #include "misc.h"
+#include "os.h"
 
 #define BUFFER_INCREMENT 256
 
index 43b823d..23ce375 100644 (file)
@@ -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){
index 7812149..00c9008 100644 (file)
@@ -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;