disabled optimizations for FLAC__lpc_compute_autocorrelation() for 32-bit GCC builds to prevent different output filesizes with optimized builds (nw)

This commit is contained in:
Oliver Stöneberg 2013-07-04 14:22:42 +00:00
parent 0f813d48f3
commit bb590452dd

View File

@ -60,6 +60,9 @@ void FLAC__lpc_window_data(const FLAC__int32 in[], const FLAC__real window[], FL
out[i] = in[i] * window[i];
}
#if defined(__GNUC__) && defined(__i386__)
__attribute__((optimize("O0")))
#endif
void FLAC__lpc_compute_autocorrelation(const FLAC__real data[], unsigned data_len, unsigned lag, FLAC__real autoc[])
{
/* a readable, but slower, version */