External, Non-PPA KXStudio Repository
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
353B

  1. --- flac-static-1.5.0.orig/src/libFLAC/window.c
  2. +++ flac-static-1.5.0/src/libFLAC/window.c
  3. @@ -178,6 +178,10 @@ void FLAC__window_rectangle(FLAC__real *
  4. window[n] = 1.0f;
  5. }
  6. +#ifdef __arm__
  7. +/* workaround compiler bug */
  8. +__attribute__((optimize(1)))
  9. +#endif
  10. void FLAC__window_triangle(FLAC__real *window, const FLAC__int32 L)
  11. {
  12. FLAC__int32 n;