Xiph.org - flac.git/summary

Flac git repository

http://git.xiph.org/?p=flac.git;a=summary

Les articles publiés sur le site

  • Only compile and run tests when running ’make check’

    15 janvier 2017, par David Seifert
    Only compile and run tests when running 'make check'
    
    Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
    
    • [DH] src/test_grabbag/cuesheet/Makefile.am
    • [DH] src/test_grabbag/picture/Makefile.am
    • [DH] src/test_libFLAC++/Makefile.am
    • [DH] src/test_libFLAC/Makefile.am
    • [DH] src/test_seeking/Makefile.am
    • [DH] src/test_streams/Makefile.am
  • Do not override CFLAGS, as CFLAGS is a user flag.

    15 janvier 2017, par David Seifert
    Do not override CFLAGS, as CFLAGS is a user flag.
    
    * Furthermore, use NDEBUG globally to detect the presence
      of building with more debug output information.
      AX_CHECK_ENABLE_DEBUG is easier to use, and nowadays
      Gnome has also switched to it from its own custom solution.
    
    Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
    
    • [DH] configure.ac
    • [DH] include/FLAC/assert.h
    • [DH] m4/ax_check_enable_debug.m4
    • [DH] src/libFLAC/cpu.c
    • [DH] src/libFLAC/lpc.c
    • [DH] src/libFLAC/stream_encoder.c
    • [DH] src/plugin_common/Makefile.am
    • [DH] src/plugin_common/charset.c
    • [DH] src/plugin_xmms/http.c
    • [DH] src/share/Makefile.am
  • bitmath.h : MSVS unsigned fix

    15 janvier 2017, par Erik de Castro Lopo
    bitmath.h: MSVS unsigned fix
    
    The orignal code had `unsigned long` inside `#ifdef MSVC`. It was then changed
    to `uint64_t` which was incorrect because on Windows `sizze long == 4`.
    Change it now to `uint32_t` which is always correct regardless of OS, compiler
    or architecture.
    
    • [DH] src/libFLAC/include/private/bitmath.h
  • bitmath.h : More unsigned fixes

    15 janvier 2017, par Erik de Castro Lopo
    bitmath.h: More unsigned fixes
    
    • [DH] src/libFLAC/include/private/bitmath.h
  • libFLAC/cpu.c : Replace memory.h include with string.h

    14 janvier 2017, par sezero
    libFLAC/cpu.c: Replace memory.h include with string.h
    
    cpu.c was the only source to use memory.h instead of string.h.
    
    Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
    
    • [DH] src/libFLAC/cpu.c