Skip to content

Commit 623db5e

Browse files
authored
Use VSET to initialize static const f4's
This addresses a Windows ARM64 compilation failure due to assignment of array initializer list assignment to float32x4_t.
1 parent afb604c commit 623db5e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

minimp3.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1566,7 +1566,7 @@ static void mp3d_synth(float *xl, mp3d_sample_t *dstl, int nch, float *lins)
15661566

15671567
#else /* MINIMP3_FLOAT_OUTPUT */
15681568

1569-
static const f4 g_scale = { 1.0f/32768.0f, 1.0f/32768.0f, 1.0f/32768.0f, 1.0f/32768.0f };
1569+
static const f4 g_scale = VSET(1.0f/32768.0f);
15701570
a = VMUL(a, g_scale);
15711571
b = VMUL(b, g_scale);
15721572
#if HAVE_SSE
@@ -1813,7 +1813,7 @@ void mp3dec_f32_to_s16(const float *in, int16_t *out, int num_samples)
18131813
int aligned_count = num_samples & ~7;
18141814
for(; i < aligned_count; i += 8)
18151815
{
1816-
static const f4 g_scale = { 32768.0f, 32768.0f, 32768.0f, 32768.0f };
1816+
static const f4 g_scale = VSET(32768.0f);
18171817
f4 a = VMUL(VLD(&in[i ]), g_scale);
18181818
f4 b = VMUL(VLD(&in[i+4]), g_scale);
18191819
#if HAVE_SSE

0 commit comments

Comments
 (0)