Skip to content
Snippets Groups Projects
  1. Apr 26, 2020
  2. Apr 10, 2019
  3. May 04, 2018
  4. Mar 21, 2018
  5. Dec 07, 2017
  6. Nov 16, 2017
  7. Nov 07, 2017
  8. May 01, 2017
  9. Mar 27, 2017
  10. Nov 05, 2016
  11. Oct 28, 2016
  12. Sep 03, 2016
  13. Sep 01, 2016
  14. Jul 08, 2016
  15. Jul 06, 2016
  16. Apr 20, 2016
    • Daniel Verkamp's avatar
      win32: only use dllexport when building DLL · 6e961737
      Daniel Verkamp authored
      If building a static library, marking symbols as dllexport causes them
      to be exported from the final executable. For example, run
      objdump -x opus_demo.exe on a --disabled-shared build and look for the
      export table; there should not be one in a normal Win32 .exe file, but
      when linking static libopus, the exe exports all of the opus_* public
      functions.
      
      Use the libtool-defined DLL_EXPORT flag to determine whether we are
      building a DLL and only specify __declspec(dllexport) in that case.
      6e961737
  17. Jan 08, 2016
  18. Oct 23, 2015
  19. Jun 23, 2015
  20. Feb 20, 2015
  21. Dec 20, 2014
  22. Sep 04, 2014
  23. Feb 24, 2014
  24. Nov 24, 2013
  25. Nov 18, 2013
  26. Nov 15, 2013
  27. Nov 14, 2013
  28. Nov 09, 2013
  29. Oct 28, 2013
    • Gregory Maxwell's avatar
      Replace "inline" with OPUS_INLINE. · 7830cf1b
      Gregory Maxwell authored
      Newer versions of MSVC are unhappy with the strategy of the build
       environment redefining "inline" (even though they don't support the
       actual keyword). Instead we define OPUS_INLINE to the right thing
       in opus_defines.h.
      
      This is the same approach we use for restrict.
      7830cf1b
  30. Jun 30, 2013
  31. Jun 17, 2013
  32. May 18, 2013
  33. May 05, 2013
  34. Mar 18, 2013
  35. Mar 01, 2013
  36. Feb 20, 2013
    • Jean-Marc Valin's avatar
      Adds support for delayed decision · 51f4a32e
      Jean-Marc Valin authored
      Variable duration option renamed to OPUS_SET_EXPERT_FRAME_DURATION,
      with new API.
      Also moves up the analysis to avoid having to do int->float conversion
      on large buffers.
      51f4a32e
  37. Feb 10, 2013
Loading