summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMonty <xiphmont@xiph.org>2000-07-07 00:53:10 +0000
committerMonty <xiphmont@xiph.org>2000-07-07 00:53:10 +0000
commit2b112c76e8eddde0694b326df88e5926fbe1a25d (patch)
tree2504d821fc3d595beec4d56daaec489d24acb349
parent7024aea56cb8b05218f084e7bf04e7e24bb11152 (diff)
downloadlibvorbis-git-2b112c76e8eddde0694b326df88e5926fbe1a25d.tar.gz
Add os.h to get alloc.h in these modules for IRIX
svn path=/trunk/vorbis/; revision=513
-rw-r--r--lib/analysis.c3
-rw-r--r--lib/bitwise.c3
-rw-r--r--lib/info.c3
-rw-r--r--lib/synthesis.c3
4 files changed, 8 insertions, 4 deletions
diff --git a/lib/analysis.c b/lib/analysis.c
index 3179a89e..d86cf249 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 c11fc46b..d181e57a 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 <stdlib.h>
#include "bitwise.h"
#include "misc.h"
+#include "os.h"
#define BUFFER_INCREMENT 256
diff --git a/lib/info.c b/lib/info.c
index 43b823d4..23ce3757 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 7812149a..00c90080 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;