summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Smith <msmith@xiph.org>2000-08-27 07:59:19 +0000
committerMike Smith <msmith@xiph.org>2000-08-27 07:59:19 +0000
commitda87774a7220c4a801f1390f9f3bced88923ee63 (patch)
tree79204908294706e6efe666d6c128fb9f69747738
parentc14ef30d1693f63269637f243eec0600f159b480 (diff)
downloadlibvorbis-git-da87774a7220c4a801f1390f9f3bced88923ee63.tar.gz
Needed os.h to compile correctly on win32.
svn path=/trunk/vorbis/; revision=603
-rw-r--r--lib/block.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/block.c b/lib/block.c
index 92e21938..7e534066 100644
--- a/lib/block.c
+++ b/lib/block.c
@@ -12,7 +12,7 @@
********************************************************************
function: PCM data vector blocking, windowing and dis/reassembly
- last mod: $Id: block.c,v 1.37 2000/08/23 10:27:14 xiphmont Exp $
+ last mod: $Id: block.c,v 1.38 2000/08/27 07:59:19 msmith Exp $
Handle windowing, overlap-add, etc of the PCM vectors. This is made
more amusing by Vorbis' current two allowed block sizes.
@@ -37,6 +37,7 @@
#include "sharedbook.h"
#include "bookinternal.h"
#include "misc.h"
+#include "os.h"
static int ilog2(unsigned int v){
int ret=0;