Xiph.org - flac.git/summary

Flac git repository

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

Les articles publiés sur le site

  • flac and metaflac : Don’t always call setlocale() in Windows.

    19 juillet 2014, par Erik de Castro Lopo
    flac and metaflac : Don't always call setlocale() in Windows.
    
    Windows (MSVC, MinGW) versions of setlocale don't care about LC_*
    environment variables. For example, flac cannot pass the test for
    --until and --skip options the script calls it with --skip=0:01.1001
    and it expects decimal comma (--skip=0:01,1001) on some locales.
    
    Solve this (on Windows) by calling setlocale(LC_ALL, "") if some
    LC_* variable is set to "C".
    
    Patch-from: lvqcl <lvqcl.mail@gmail.com>
    
    • [DH] src/flac/main.c
    • [DH] src/metaflac/main.c
  • libFLAC/.../crc.h : Remove un-nneded parens in FLAC__CRC16_UPDATE macro.

    19 juillet 2014, par Erik de Castro Lopo
    libFLAC/.../crc.h : Remove un-nneded parens in FLAC__CRC16_UPDATE macro.
    
    Patch-from: lvqcl <lvqcl.mail@gmail.com>
    
    • [DH] src/libFLAC/include/private/crc.h
  • Remove old/broken PPC/Altivec code.

    13 juillet 2014, par Erik de Castro Lopo
    Remove old/broken PPC/Altivec code.
    
    * Removes FLAC__lpc_restore_signal_asm_ppc_altivec_16*
      from lpc.h and stream_decoder.c
    * Removes PPC-specific code from cpu.c and cpu.h
    * Removes PPC stuff from libFLAC/Makefile.lite and build/*.mk
    * Removes as/gas/PPC-specific stuff from configure.ac and
      libFLAC/Makefile.am*
    * Removes libFLAC/ppc folder and remove "src/libFLAC/ppc*/Makefile"
      lines from configure.ac
    
    Patch-from: lvqcl <lvqcl.mail@gmail.com>
    
    • [DH] build/compile.mk
    • [DH] build/exe.mk
    • [DH] build/lib.mk
    • [DH] configure.ac
    • [DH] src/libFLAC/Makefile.am
    • [DH] src/libFLAC/Makefile.lite
    • [DH] src/libFLAC/cpu.c
    • [DH] src/libFLAC/include/private/cpu.h
    • [DH] src/libFLAC/include/private/lpc.h
    • [DH] src/libFLAC/ppc/Makefile.am
    • [DH] src/libFLAC/ppc/as/Makefile.am
    • [DH] src/libFLAC/ppc/as/lpc_asm.s
    • [DH] src/libFLAC/ppc/gas/Makefile.am
    • [DH] src/libFLAC/ppc/gas/lpc_asm.s
    • [DH] src/libFLAC/stream_decoder.c
  • flac/main.c : Improved option validation with —force-raw-format.

    13 juillet 2014, par Erik de Castro Lopo
    flac/main.c : Improved option validation with --force-raw-format.
    
    Patch-from:  lvqcl <lvqcl.mail@gmail.com>
    
    • [DH] src/flac/main.c
  • test/test_flac.sh : Add —force-raw-format as needed.

    13 juillet 2014, par Erik de Castro Lopo
    test/test_flac.sh : Add --force-raw-format as needed.
    
    Patch-from: lvqcl <lvqcl.mail@gmail.com>
    
    • [DH] test/test_flac.sh