summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorj <j@xiph.org>2005-05-10 12:42:34 +0000
committerj <j@xiph.org>2005-05-10 12:42:34 +0000
commitf66d4e20f2d3932925c5e514b0b040330502a886 (patch)
treeaf400928f71a2b4ed0670b7739f09e7f98564239
parentac57873375a9e796de0d53c03c04f241487fe74e (diff)
downloadtremor-f66d4e20f2d3932925c5e514b0b040330502a886.tar.gz
move '#include "os.h"' to misc.h and
remove it where misc.h is included. git-svn-id: https://svn.xiph.org/trunk/Tremor@9257 0101bb08-14d6-0310-b084-bc0e0c8e3800
-rw-r--r--codebook.c1
-rw-r--r--floor0.c1
-rw-r--r--info.c1
-rw-r--r--mdct.c1
-rw-r--r--misc.h2
-rw-r--r--sharedbook.c1
-rw-r--r--synthesis.c1
-rw-r--r--vorbisfile.c1
-rw-r--r--window.c1
9 files changed, 1 insertions, 9 deletions
diff --git a/codebook.c b/codebook.c
index 5da8957..b7b2303 100644
--- a/codebook.c
+++ b/codebook.c
@@ -22,7 +22,6 @@
#include "ivorbiscodec.h"
#include "codebook.h"
#include "misc.h"
-#include "os.h"
/* unpacks a codebook from the packet buffer into the codebook struct,
readies the codebook auxiliary structures for decode *************/
diff --git a/floor0.c b/floor0.c
index 3ed57a5..02ac65d 100644
--- a/floor0.c
+++ b/floor0.c
@@ -24,7 +24,6 @@
#include "registry.h"
#include "codebook.h"
#include "misc.h"
-#include "os.h"
#define LSP_FRACBITS 14
diff --git a/info.c b/info.c
index 941695e..04c37d4 100644
--- a/info.c
+++ b/info.c
@@ -28,7 +28,6 @@
#include "registry.h"
#include "window.h"
#include "misc.h"
-#include "os.h"
/* helpers */
static void _v_readstring(oggpack_buffer *o,char *buf,int bytes){
diff --git a/mdct.c b/mdct.c
index e4472a7..c440da3 100644
--- a/mdct.c
+++ b/mdct.c
@@ -33,7 +33,6 @@
********************************************************************/
#include "ivorbiscodec.h"
-#include "os.h"
#include "misc.h"
#include "mdct.h"
#include "mdct_lookup.h"
diff --git a/misc.h b/misc.h
index 49515f1..a161138 100644
--- a/misc.h
+++ b/misc.h
@@ -18,7 +18,7 @@
#ifndef _V_RANDOM_H_
#define _V_RANDOM_H_
#include "ivorbiscodec.h"
-#include "os_types.h"
+#include "os.h"
#include "asm_arm.h"
diff --git a/sharedbook.c b/sharedbook.c
index a62211e..0eb29a6 100644
--- a/sharedbook.c
+++ b/sharedbook.c
@@ -19,7 +19,6 @@
#include <math.h>
#include <string.h>
#include "ogg.h"
-#include "os.h"
#include "misc.h"
#include "ivorbiscodec.h"
#include "codebook.h"
diff --git a/synthesis.c b/synthesis.c
index 3006eee..43fa70d 100644
--- a/synthesis.c
+++ b/synthesis.c
@@ -22,7 +22,6 @@
#include "codec_internal.h"
#include "registry.h"
#include "misc.h"
-#include "os.h"
int vorbis_synthesis(vorbis_block *vb,ogg_packet *op,int decodep){
vorbis_dsp_state *vd=vb->vd;
diff --git a/vorbisfile.c b/vorbisfile.c
index 41239d3..0487881 100644
--- a/vorbisfile.c
+++ b/vorbisfile.c
@@ -25,7 +25,6 @@
#include "ivorbiscodec.h"
#include "ivorbisfile.h"
-#include "os.h"
#include "misc.h"
/* A 'chained bitstream' is a Vorbis bitstream that contains more than
diff --git a/window.c b/window.c
index 4d6e79e..006a1ee 100644
--- a/window.c
+++ b/window.c
@@ -17,7 +17,6 @@
#include <stdlib.h>
#include <math.h>
-#include "os.h"
#include "misc.h"
#include "window.h"
#include "window_lookup.h"