From: Tim Terriberry Date: Mon, 2 Dec 2013 23:23:39 +0000 (+0000) Subject: Make definition of _vorbis_window_get() match declaration. X-Git-Tag: v1.3.4~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6253d5acef0bdc2f0505da227f30db7f87d739a0;p=platform%2Fupstream%2Flibvorbis.git Make definition of _vorbis_window_get() match declaration. window.c wasn't actually including window.h, or this would have been noticed earlier. svn path=/trunk/vorbis/; revision=19028 --- diff --git a/lib/window.c b/lib/window.c index 56299c4..7dfb1cf 100644 --- a/lib/window.c +++ b/lib/window.c @@ -19,6 +19,7 @@ #include #include "os.h" #include "misc.h" +#include "window.h" static const float vwin64[32] = { 0.0009460463F, 0.0085006468F, 0.0235352254F, 0.0458950567F, diff --git a/lib/window.h b/lib/window.h index a13baba..934ed33 100644 --- a/lib/window.h +++ b/lib/window.h @@ -18,7 +18,7 @@ #ifndef _V_WINDOW_ #define _V_WINDOW_ -extern float *_vorbis_window_get(int n); +extern const float *_vorbis_window_get(int n); extern void _vorbis_apply_window(float *d,int *winno,long *blocksizes, int lW,int W,int nW);