Skip to content
Snippets Groups Projects
  1. Sep 17, 2012
    • Ralph Giles's avatar
      Opus custom requires libm unconditionally. · 3ef8a166
      Ralph Giles authored
      3ef8a166
    • Ralph Giles's avatar
      Add -lm to the pkg-config link line. · d47ddfb4
      Ralph Giles authored
      The floating-point build calls a number of math library
      functions, and linking with libm is technically necessary.
      It wasn't obvious because most systems support shlib
      dependencies and pulled it in that way, or supply the
      referenced functions with intrinsics. Discovered the issue
      trying to build libopusfile against the uninstalled static
      libopus, which unlike opus-tools, doesn't itself need libm.
      
      The -lm argument is only added to Libs for the floating-
      point (default) build. It's not necessary for the fixed-
      point build.
      
      Also mark which build was used in the .pc file description.
      d47ddfb4
    • Ralph Giles's avatar
      Remove FLOATING_POINT from config.h. · a66642a5
      Ralph Giles authored
      This isn't used anywhere in the code, floating point is just the
      default unless FIXED_POINT is defined.
      
      In the speex codebase, arch.h has a check that both FIXED_POINT
      and FLOATING_POINT aren't defined simultaneously, in part as a
      check that the build system was constructed with thought about
      these and other defines. However, we don't have such a check
      and to me it seems unnecessary code.
      a66642a5
    • Ralph Giles's avatar
      Remove 'low-delay' from the pkg-config description. · 2d2f4621
      Ralph Giles authored
      While a feature of Opus, its applications are not limited
      to contexts where low delay is important.
      2d2f4621
    • Ralph Giles's avatar
      cf6284a1
  2. Sep 16, 2012
  3. Sep 13, 2012
  4. Sep 12, 2012
  5. Sep 11, 2012
  6. Sep 10, 2012
  7. Sep 08, 2012
  8. Sep 06, 2012
  9. Sep 01, 2012
  10. Aug 30, 2012
  11. Aug 29, 2012
  12. Aug 27, 2012
  13. Aug 24, 2012
  14. Aug 23, 2012
  15. Aug 21, 2012
  16. Aug 19, 2012
  17. Aug 17, 2012
    • Ralph Giles's avatar
      Fix an MSVC warning. · 3a9b3545
      Ralph Giles authored
      Microsoft Visual Studio 2010 warns about 'C4146: unary minus
      operator applied to unsigned type, result still unsigned'
      because of the '&-sizeof(void*)' in align().
      
      This commit works around the warning by casting the size_t
      to int before negation.
      
      Patch by Hauke, who reported the issue on the opus mailing
      list. Reviewed by derf.
      3a9b3545
Loading