Skip to content
Snippets Groups Projects
  1. Oct 23, 2012
    • Ralph Giles's avatar
      Fix MSVC format conversion warnings. · 027ec51b
      Ralph Giles authored
      The Microsoft compiler warns about precision reduction from
      default double literals to the floats we generally use outside
      the fixed-point build. Avoid these by qualifying the literals
      as floats.
      
      Thanks to derf for review.
      027ec51b
  2. Oct 21, 2012
  3. Oct 19, 2012
  4. Oct 17, 2012
  5. Oct 16, 2012
  6. Oct 11, 2012
  7. Oct 10, 2012
  8. Oct 09, 2012
  9. Oct 07, 2012
  10. Oct 06, 2012
  11. Sep 27, 2012
  12. Sep 26, 2012
  13. Sep 25, 2012
  14. Sep 21, 2012
  15. Sep 19, 2012
  16. Sep 18, 2012
    • Ron's avatar
      Link the include dir into out-of-tree build dirs · c40d5004
      Ron authored
      Mostly this is for people building other things using an uninstalled
      opus tree so that the opus-uninstalled.pc will return a working -I
      with --cflags when PKG_CONFIG_PATH is set to point to the build dir.
      
      The version of AC_OUTPUT that takes parameters has long been
      deprecated now, and replaced by AC_CONFIG_* macros, so pass them
      with AC_CONFIG_FILES, since we're now using AC_CONFIG_COMMANDS
      to do the above.
      c40d5004
  17. Sep 17, 2012
    • Gregory Maxwell's avatar
    • 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
Loading