summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMickael Savinaud <savmickael@users.noreply.github.com>2012-10-03 09:52:09 +0000
committerMickael Savinaud <savmickael@users.noreply.github.com>2012-10-03 09:52:09 +0000
commit3a46e2d86b7eb627f9496c7726b08ead97de0a9e (patch)
tree47b20c40e0f1612f672e57dd59baca5474741a2c /src
parent6a84a1788b0df2c412b64647510720d0a4a1a046 (diff)
[trunk] correct warnings linked to static dwt functions because declaration is not hide when we use SSE
Diffstat (limited to 'src')
-rw-r--r--src/lib/openjp2/dwt.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/openjp2/dwt.c b/src/lib/openjp2/dwt.c
index 94586eb5..3b750fe8 100644
--- a/src/lib/openjp2/dwt.c
+++ b/src/lib/openjp2/dwt.c
@@ -138,11 +138,13 @@ static void opj_v4dwt_interleave_v(v4dwt_t* restrict v , OPJ_FLOAT32* restrict a
static void opj_v4dwt_decode_step1_sse(v4* w, OPJ_INT32 count, const __m128 c);
static void opj_v4dwt_decode_step2_sse(v4* l, v4* w, OPJ_INT32 k, OPJ_INT32 m, __m128 c);
-#endif
+#else
static void opj_v4dwt_decode_step1(v4* w, OPJ_INT32 count, const OPJ_FLOAT32 c);
+
static void opj_v4dwt_decode_step2(v4* l, v4* w, OPJ_INT32 k, OPJ_INT32 m, OPJ_FLOAT32 c);
+#endif
/*@}*/