Xiph.org - flac.git/summary

Flac git repository

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

Les articles publiés sur le site

  • libFLAC/bitreader.c : Remove redundant/incorrect comment.

    27 juillet 2014, par Erik de Castro Lopo
    libFLAC/bitreader.c : Remove redundant/incorrect comment.
    
    This comment should have been removed in commit eb0c5a37.
    
    Patch-from: lvqcl <lvqcl.mail@gmail.com>
    
    • [DH] src/libFLAC/bitreader.c
  • libFLAC/bitreader : Remove un-needed FLAC__CPUInfo field from FLAC__BitReader.

    27 juillet 2014, par Erik de Castro Lopo
    libFLAC/bitreader : Remove un-needed FLAC__CPUInfo field from FLAC__BitReader.
    
    In FLAC 1.2.0, a new field 'FLAC__CPUInfo cpu_info' was added to the
    FLAC__BitReader struct. It became useless in 1.3.0 because of various
    bitreader optimizations.
    
    Patch-from: lvqcl <lvqcl.mail@gmail.com>
    
    • [DH] src/libFLAC/bitreader.c
    • [DH] src/libFLAC/include/private/bitreader.h
    • [DH] src/libFLAC/stream_decoder.c
  • configure.ac : Fix —disable-sse option.

    27 juillet 2014, par Erik de Castro Lopo
    configure.ac : Fix --disable-sse option.
    
    Based on a patch from lvqcl <lvqcl.mail@gmail.com>.
    
    • [DH] configure.ac
  • configure.ac : Erase default -O2 when setting -O3.

    27 juillet 2014, par Erik de Castro Lopo
    configure.ac : Erase default -O2 when setting -O3.
    
    Previously CFLAGS had a -O3 at the start and a -O2 at the end. According
    to the GCC docs:
    
        https://gcc.gnu.org/onlinedocs/gcc-4.9.1/gcc/Optimize-Options.html
    
        "If you use multiple -O options, with or without level numbers,
        the last such option is the one that is effective" which means that
        GCC doesn't try to use SIMD to vectorize the code, etc."
    
    • [DH] configure.ac
  • configure.ac : Set default CFLAGS to something sensible.

    26 juillet 2014, par Erik de Castro Lopo
    configure.ac : Set default CFLAGS to something sensible.
    
    Preserve the CFLAGS value from the time the configure script is run.
    
    • [DH] configure.ac