mirror of
https://github.com/holub/mame
synced 2025-04-24 09:20:02 +03:00
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:
parent
0f813d48f3
commit
bb590452dd
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user