| Previous | 199869 Revisions | Next |
| r24069 Thursday 4th July, 2013 at 14:22:42 UTC by Oliver Stöneberg |
|---|
| disabled optimizations for FLAC__lpc_compute_autocorrelation() for 32-bit GCC builds to prevent different output filesizes with optimized builds (nw) |
| [src/lib/libflac/libflac] | lpc.c |
| r24068 | r24069 | |
|---|---|---|
| 60 | 60 | out[i] = in[i] * window[i]; |
| 61 | 61 | } |
| 62 | 62 | |
| 63 | #if defined(__GNUC__) && defined(__i386__) | |
| 64 | __attribute__((optimize("O0"))) | |
| 65 | #endif | |
| 63 | 66 | void FLAC__lpc_compute_autocorrelation(const FLAC__real data[], unsigned data_len, unsigned lag, FLAC__real autoc[]) |
| 64 | 67 | { |
| 65 | 68 | /* a readable, but slower, version */ |
| Previous | 199869 Revisions | Next |