@@ -1566,7 +1566,7 @@ static void mp3d_synth(float *xl, mp3d_sample_t *dstl, int nch, float *lins)
1566
1566
1567
1567
#else /* MINIMP3_FLOAT_OUTPUT */
1568
1568
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 ) ;
1570
1570
a = VMUL (a , g_scale );
1571
1571
b = VMUL (b , g_scale );
1572
1572
#if HAVE_SSE
@@ -1813,12 +1813,12 @@ void mp3dec_f32_to_s16(const float *in, int16_t *out, int num_samples)
1813
1813
int aligned_count = num_samples & ~7 ;
1814
1814
for (; i < aligned_count ; i += 8 )
1815
1815
{
1816
- static const f4 g_scale = { 32768.0f , 32768.0f , 32768.0f , 32768.0f } ;
1816
+ static const f4 g_scale = VSET ( 32768.0f ) ;
1817
1817
f4 a = VMUL (VLD (& in [i ]), g_scale );
1818
1818
f4 b = VMUL (VLD (& in [i + 4 ]), g_scale );
1819
1819
#if HAVE_SSE
1820
- static const f4 g_max = { 32767.0f , 32767.0f , 32767.0f , 32767.0f } ;
1821
- static const f4 g_min = { -32768.0f , -32768.0f , -32768.0f , -32768.0f } ;
1820
+ static const f4 g_max = VSET ( 32767.0f ) ;
1821
+ static const f4 g_min = VSET ( -32768.0f ) ;
1822
1822
__m128i pcm8 = _mm_packs_epi32 (_mm_cvtps_epi32 (_mm_max_ps (_mm_min_ps (a , g_max ), g_min )),
1823
1823
_mm_cvtps_epi32 (_mm_max_ps (_mm_min_ps (b , g_max ), g_min )));
1824
1824
_mm_storeu_si128 ( (__m128i * )(& out [i ]), pcm8 );
0 commit comments