summaryrefslogtreecommitdiff
path: root/window.h
diff options
context:
space:
mode:
authorMonty <xiphmont@xiph.org>2002-10-16 08:10:09 +0000
committerMonty <xiphmont@xiph.org>2002-10-16 08:10:09 +0000
commit0185fc26b02cacd81d6e7c5745ff0752afdb4b1c (patch)
treef4c9287176f2a270383857d6faafc9768b9c5342 /window.h
parent049a933452752e5efb7a63637bc24ea256b0b2db (diff)
downloadtremor-0185fc26b02cacd81d6e7c5745ff0752afdb4b1c.tar.gz
const-ify a few things that really ought to be.
git-svn-id: https://svn.xiph.org/trunk/Tremor@4010 0101bb08-14d6-0310-b084-bc0e0c8e3800
Diffstat (limited to 'window.h')
-rw-r--r--window.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/window.h b/window.h
index 01ec6a6..6dfa4b4 100644
--- a/window.h
+++ b/window.h
@@ -18,8 +18,8 @@
#ifndef _V_WINDOW_
#define _V_WINDOW_
-extern ogg_int32_t *_vorbis_window(int type,int left);
-extern void _vorbis_apply_window(ogg_int32_t *d,ogg_int32_t *window[2],
+extern const ogg_int32_t *_vorbis_window(int type,int left);
+extern void _vorbis_apply_window(ogg_int32_t *d,const ogg_int32_t *window[2],
long *blocksizes,
int lW,int W,int nW);