Skip to content
Snippets Groups Projects
  1. Jul 06, 2017
  2. Jun 26, 2017
  3. Jun 19, 2017
  4. Jun 10, 2017
  5. Jun 06, 2017
  6. Jun 04, 2017
  7. Jun 01, 2017
  8. May 26, 2017
  9. May 23, 2017
  10. May 17, 2017
  11. Apr 28, 2017
  12. Feb 27, 2017
    • Mark Harris's avatar
      Fix compiler warnings · d6d70371
      Mark Harris authored
      - celt/modes.c:430:14: warning: cast from 'const unsigned char *' to
        'opus_int16 *' increases required alignment from 1 to 2 [-Wcast-align]
      - 'C[0][1]' may be used uninitialized [-Wmaybe-uninitialized]
      - Unused variable/parameter
      - Value stored is never read
      - MSVC warnings about "possible loss of data" due to type conversions
      - MSVC warning C4146: unary minus operator applied to unsigned type
      - silk/NLSF_del_dec_quant.c:137:20: warning: array subscript is above
        array bounds [-Warray-bounds] (gcc -O3 false positive)
      - src/mlp_train.h:39:20: warning: function declaration isn't a prototype
        [-Wstrict-prototypes]
      - Remove SMALL_FOOTPRINT code from SSE 4.1 FIR implementation, matching
        the C implementation.
      
      The clang -Wcast-align warnings with SSE intrinsics are a known
      clang issue: https://llvm.org/bugs/show_bug.cgi?id=20670
      d6d70371
  13. Feb 14, 2017
  14. Dec 22, 2016
  15. Dec 20, 2016
    • Jean-Marc Valin's avatar
      Makes analysis run at 24 kHz, with 20-ms frames · cf9409fe
      Jean-Marc Valin authored
      The change also makes the analysis run for sampling rates of 16 kHz and 24 kHz
      since the features are only computed on the 0-8 kHz band. The longer time
      window (20 ms instead of 10 ms) makes the tonality estimator more reliable
      for low-pitch harmonics.
      cf9409fe
  16. Dec 18, 2016
  17. Dec 16, 2016
  18. Nov 11, 2016
    • Ralph Giles's avatar
      Remove commented-out DEBUG_STORE_DATA calls. r=keon · 3fdfcd40
      Ralph Giles authored
      Also remove the SILK_DEBUG_STORE_CLOSE_FILES flush call from
      opus_demo.
      
      This is debugging code which is no longer used, but defining
      the symbols for SILK_DEBUG_STORE_CLOSE_FILES and calling it
      from opus_demo causes linking problems on Microsoft Visual Studio
      where we have strict controls on public symbols and want to
      test the compiled DLL.
      
      Since the code isn't in active use, it's better to remove it
      to avoid clutter and address the linking issue.
      3fdfcd40
  19. Nov 06, 2016
  20. Nov 05, 2016
  21. Nov 02, 2016
    • Mark Harris's avatar
      Reduce redundancy when SILK uses too many bits · 20bf3b33
      Mark Harris authored
      Fix Hybrid redundancy assertion failure in ec_enc_shrink(), even
      if SILK produces more than maxBits, by reducing or eliminating
      redundancy when necessary.  Don't reserve space for redundancy that
      is too small to be used for redundancy.  When there is not enough
      space for redundancy, allow the regular frame to use all the bits.
      20bf3b33
    • Mark Harris's avatar
      Fix redundancy on SILK 80+ms bandwidth switch · 1fd53f9a
      Mark Harris authored
      With packets of 80 ms or more, a SILK bandwidth switch was missing
      the second half of the redundancy, because st->silk_bw_switch was
      cleared too early before any recursive calls.
      1fd53f9a
  22. Oct 31, 2016
  23. Oct 28, 2016
  24. Oct 27, 2016
  25. Oct 05, 2016
  26. Sep 20, 2016
Loading