Skip to content
Snippets Groups Projects
  1. Jun 04, 2016
  2. Oct 04, 2014
  3. Jan 08, 2014
  4. Jan 07, 2014
  5. 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
  6. Sep 16, 2013
  7. May 20, 2013
  8. Sep 27, 2012
  9. 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
  10. 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
  11. Apr 20, 2012
  12. Mar 08, 2012
  13. Jan 24, 2012
  14. Dec 14, 2011
  15. Dec 13, 2011
    • Koen Vos's avatar
      Improves the accuracy such that it matches a float decoder much better · bbfc9c9e
      Koen Vos authored and Jean-Marc Valin's avatar Jean-Marc Valin committed
      bbfc9c9e
    • Koen Vos's avatar
      SILK fixes following last codec WG meeting · bf75c8ec
      Koen Vos authored and Jean-Marc Valin's avatar Jean-Marc Valin committed
      decoder:
      - fixed incorrect scaling of filter states for the smallest quantization
        step sizes
      - NLSF2A now limits the prediction gain of LPC filters
      
      encoder:
      - increased damping of LTP coefficients in LTP analysis
      - increased white noise fraction in noise shaping LPC analysis
      - introduced maximum total prediction gain.  Used by Burg's method to
        exit early if prediction gain is exceeded.  This improves packet
        loss robustness and numerical robustness in Burg's method
      - Prefiltered signal is now in int32 Q10 domain, from int16 Q0
      - Increased max number of iterations in CBR gain control loop from 5 to 6
      - Removed useless code from LTP scaling control
      - Optimization: smarter LPC loop unrolling
      - Switched default win32 compile mode to be floating-point
      
      resampler:
      - made resampler have constant delay of 0.75 ms; removed delay
        compensation from silk code.
      - removed obsolete table entries (~850 Bytes)
      - increased downsampling filter order from 16 to 18/24/36 (depending on
        frequency ratio)
      - reoptimized filter coefficients
      bf75c8ec
  16. Nov 29, 2011
  17. Oct 29, 2011
  18. Oct 28, 2011
  19. Oct 11, 2011
    • Koen Vos's avatar
      Misc SILK fixes: · 3195f6cd
      Koen Vos authored and Jean-Marc Valin's avatar Jean-Marc Valin committed
      - compile warning in opus_decoder.c
      - decoder state reduced by ~3 kB (by merging buffers, as Tim suggested)
      - some minor decoder optimizations (only the PLC is non-bit exact, so should be ok)
      3195f6cd
  20. Sep 28, 2011
  21. Sep 16, 2011
  22. Aug 24, 2011
    • Ralph Giles's avatar
      Use 'frame' instead of 'signal' in the silk code. · 86476906
      Ralph Giles 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). Tested with XCode 4.1 on
      MacOS X 10.7.0.
      
      The signal buffers passed in are generally frames being processed,
      and the code already uses the term frame and frame_length elsewhere,
      so I've resolved the warning by renaming signal and signal_* locals
      and parameters to frame and frame_*.
      86476906
  23. Aug 15, 2011
  24. Jul 31, 2011
  25. Jul 29, 2011
  26. Jul 05, 2011
  27. Jun 11, 2011
    • Jean-Marc Valin's avatar
      Addressing multiple LSF-related issues · f6e781ab
      Jean-Marc Valin authored
      - Merged the LPC stabilization from NLSF2A_stable.c into NLSF2A.c
      - The bandwidth expansion in NLSF2A() now operates on int32 LPC coefficients in
      Q17 domain (instead of int16 Q12 coefficients)
      - The function bwexpander_32() has a more precise way of updating the chirp
      variable (round to nearest, instead of round down)
      - Changed a few variables in NLSF_stabilize() from int16 to int32 to avoid signed
      wrap-around (no difference in results as the wrap-around would always be reversed
      later)
      - The LSF codebook for WB speech has a quantization stepsize of 0.15 (was 0.16).
      This doesn't break the bitstream, although it slightly limits quality of signals
      encoded with the old version and decoded with the new one (I can't really hear it
      and PESQ gives high scores as well).  I does improve handling of tonal signals.
      - As discussed: the Q-domain of the poly function is now in Q16 (was Q20)
      - As discussed: limiting the LSFs in NLSF_decode() to 0...32767
      - The silk_NLSF_DELTA_MIN values were lowered to deal with a possible future situation with less or no input HP filtering.
      f6e781ab
  28. May 19, 2011
    • Jean-Marc Valin's avatar
      Squashed commit of the following: · 103302b3
      Jean-Marc Valin authored
      commit 5b64cf7c4d67af9050bc959996ef976ce6326888
      Author: Jean-Marc Valin <jean-marc.valin@octasic.com>
      Date:   Thu May 19 16:40:35 2011 -0400
      
          Fixes a few bugs introduced in the latest update
      
      commit b91eb86025d2de3c4cf04f4fb1aa48a28ad676a3
      Author: Timothy B. Terriberry <tterribe@xiph.org>
      Date:   Thu May 19 16:12:02 2011 -0400
      
          build_draft.sh fixes
      
      commit 0b10c30db7ad60ff7d4bfc1139bdb86e0543c035
      Author: Jean-Marc Valin <jean-marc.valin@octasic.com>
      Date:   Thu May 19 15:30:21 2011 -0400
      
          Fixes the draft build
      
      commit 164424cded5978e657105104e171ac202dde5e5b
      Author: Jean-Marc Valin <jean-marc.valin@octasic.com>
      Date:   Thu May 19 15:00:23 2011 -0400
      
          Updated build system
      
      commit 188d9fcba8c3a1b1ad67c67c430e1b37e3658a40
      Author: Koen Vos <koen.vos@skype.net>
      Date:   Thu May 19 17:14:57 2011 -0400
      
          SILK/Opus update
      103302b3
  29. Apr 28, 2011
  30. Apr 27, 2011
    • Koen Vos's avatar
      Squashed commit of the following: · fcf95bac
      Koen Vos authored and Jean-Marc Valin's avatar Jean-Marc Valin committed
      commit c44b37355295df2963daa724649ff1876b690488
      Author: Jean-Marc Valin <jean-marc.valin@usherbrooke.ca>
      Date:   Wed Apr 27 00:33:12 2011 -0400
      
          decoder size fix
      
      commit 78f864e9ddacd94d03d717d79a6e606712e25edd
      Author: Jean-Marc Valin <jean-marc.valin@usherbrooke.ca>
      Date:   Tue Apr 26 23:26:14 2011 -0400
      
          Makefile fix
      
      commit a0e884e463af88bcaa2f410ea8cc85e5bebd2c3b
      Author: Jean-Marc Valin <jean-marc.valin@usherbrooke.ca>
      Date:   Tue Apr 26 22:53:27 2011 -0400
      
          Making some progress
      
      commit 9e30457f2199bba7b5e37bb577ff75dc85ba9306
      Author: Koen Vos <koen.vos@skype.net>
      Date:   Tue Apr 26 22:29:42 2011 -0400
      
          SILK update with stereo support
      fcf95bac
  31. Feb 14, 2011
  32. Feb 02, 2011
  33. Nov 10, 2010
  34. Jun 30, 2010
Loading