Skip to content
Snippets Groups Projects
  1. Oct 11, 2012
  2. Oct 10, 2012
  3. Sep 27, 2012
  4. Sep 21, 2012
    • Jean-Marc Valin's avatar
      Reduces rate/max rate to make room for redundancy · 6b45974f
      Jean-Marc Valin authored
      This fixes a problem where we could end up starving the redundancy
      frame, especially for CBR. The solution is to make sure that some
      bits are left available -- assuming we use the same rate for redundancy
      as for the rest of the frame.
      6b45974f
  5. Sep 12, 2012
  6. Sep 08, 2012
    • Timothy B. Terriberry's avatar
      Use dynamic stack allocations in SILK decoder. · 6f2d9f50
      Timothy B. Terriberry authored and Jean-Marc Valin's avatar Jean-Marc Valin committed
      This allows the decoder to be compiled with
       NONTHREADSAFE_PSEUDOSTACK to move the memory for large buffers off
       the stack for devices where it is very limited.
      This patch only attempts to do this for the decoder.
      The encoder still requires more than 10 kB of stack.
      6f2d9f50
  7. Aug 29, 2012
  8. Aug 27, 2012
  9. Aug 06, 2012
  10. Jul 20, 2012
  11. Jul 16, 2012
    • gcp's avatar
      Output/intermediate dir cleanup and fixes in 64-bit mode. · 642084c4
      gcp authored and Gregory Maxwell's avatar Gregory Maxwell committed
      Also make the 64-bit builds use the default output directories.
      Fix the type of the default Opus output to be a library.
      642084c4
    • gcp's avatar
      Make MSVC build work in parallel. · eeb7bd3d
      gcp authored and Gregory Maxwell's avatar Gregory Maxwell committed
      The (non-default) temporary & output dirs configured in the projects could
      cause issues when doing compilation on a multiprocessor machine. Cleaned
      this up a little to use the defaults, which makes that work again and
      doesn't make the output structure any worse. Also removed debug output for
      release binaries & a tiny whitespace fix.
      eeb7bd3d
  12. Jul 12, 2012
  13. Jun 01, 2012
  14. May 23, 2012
    • Gregory Maxwell's avatar
      Use 'frame' instead of 'signal', take out stdlib.h in silk/. · e052947f
      Gregory Maxwell authored and Jean-Marc Valin's avatar Jean-Marc Valin committed
      On MacOS, stdlib.h ends up including sys/signal.h, generating
      warnings about the local variables called 'signal' shadowing
      the global symbol signal(3).
      
      This was originally done in 86476906 but it missed some use
      of 'signal' in prototypes in headers where it didn't cause
      warnings. Later the prototypes were moved around and the
      warnings came back.
      
      This also cleans up some cases in where stdlib.h was used
      but shouldn't be required.
      e052947f
  15. May 15, 2012
  16. May 10, 2012
  17. Apr 25, 2012
  18. Apr 24, 2012
  19. Apr 23, 2012
  20. Apr 20, 2012
  21. Apr 12, 2012
  22. Apr 02, 2012
  23. Mar 08, 2012
  24. Mar 06, 2012
    • Ralph Giles's avatar
      Restore the windows-side #ifdef check in silk/MacroDebug.h. · b46991c3
      Ralph Giles authored
      We still override the '#if 0' with FIXED_DEBUG, but this
      leaves whatever Koen intended here more intact. Suggestion
      from Greg Maxwell.
      b46991c3
    • Ralph Giles's avatar
      Enable the silk debug macros with FIXED_DEBUG. · 9357ae97
      Ralph Giles authored
      This isn't entirely accurate, since it's also used on integer
      math. However, the idea is similar: to add bounds checking.
      
      This code asserts rather than warning, so one must pass
      --enable-assertions to configure as well to get any output,
      and in that case the first instance is fatal.
      
      Quick testing shows both test_opus_decode and test_opus_encode
      trigger the assertions, but running the draft-10 test vectors
      does not.
      9357ae97
    • Ralph Giles's avatar
      Fix a signed-compare warning. · 2fa9e6e5
      Ralph Giles authored
      The silk math debug macros include a bounds check on silk_abs.
      Because INT_MIN = (-INT_MAX - 1), abs(INT_MIN) can't be
      represented as an int. The macro was checking for this value
      as 0x8000... without a cast to signed, warning on gcc.
      
      silk/typedef.h already defines minimum values for the int
      types, so we correct the warning by using those.
      2fa9e6e5
Loading