Skip to content
Snippets Groups Projects
  1. Oct 18, 2023
  2. Oct 15, 2023
  3. Jun 16, 2023
  4. May 29, 2018
  5. Feb 20, 2018
  6. 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
      Verified
      d6d70371
  7. Dec 18, 2016
  8. 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.
      Unverified
      3fdfcd40
  9. Nov 05, 2016
  10. Oct 28, 2016
  11. Oct 05, 2016
  12. Jul 17, 2016
  13. Jun 30, 2016
  14. Dec 04, 2015
  15. Aug 20, 2015
  16. Feb 27, 2015
  17. Feb 24, 2015
  18. May 14, 2014
    • Ralph Giles's avatar
      Fix type conversion warning. · 3996642c
      Ralph Giles authored
      Use abs(sweep_bps) instead of fabs(). "sweep_bps" is an integer,
      and on some compilers this line generates a warning.
      
      Patch from Tina le Grand.
      Reviewed by Jean-Marc Valin
      3996642c
  19. Nov 19, 2013
  20. Nov 15, 2013
  21. Oct 28, 2013
  22. Oct 12, 2013
  23. Jun 30, 2013
Loading