Skip to content

Commit e35783b

Browse files
authored
Integrate upstream pull request lieff#107
1 parent be6a097 commit e35783b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

minimp3.h

+4-4
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,12 +1813,12 @@ 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
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 );
18221822
__m128i pcm8 = _mm_packs_epi32(_mm_cvtps_epi32(_mm_max_ps(_mm_min_ps(a, g_max), g_min)),
18231823
_mm_cvtps_epi32(_mm_max_ps(_mm_min_ps(b, g_max), g_min)));
18241824
_mm_storeu_si128( (__m128i *)(&out[i]), pcm8 );

0 commit comments

Comments
 (0)