Xiph.org - flac.git/summary

Flac git repository

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

Les articles publiés sur le site

  • Fix use of FLAC__SSE_OS configure variable

    19 juin 2016, par Erik de Castro Lopo
    Fix use of FLAC__SSE_OS configure variable
    
    • [DH] configure.ac
    • [DH] src/libFLAC/cpu.c
  • Fix nasm compile on OS X / Darwin

    13 juin 2016, par Erik de Castro Lopo
    Fix nasm compile on OS X / Darwin
    
    Apparently this had been fixes in Audacity and other projects
    but no one had bothered to feed them back upstream. Thanks to
    lvqcl for researching this and finding the relevant patches.
    Thanks to Ozkan Sezer for validating them.
    
    Closes:  https://sourceforge.net/p/flac/bugs/438/
    
    • [DH] src/libFLAC/ia32/nasm.h
  • libFLAC : More metadata_iterators fixes

    22 mai 2016, par Erik de Castro Lopo
    libFLAC: More metadata_iterators fixes
    
    The previous fixes for metadata_iterators didn't completely fix the problem.
    
    The behavior of chain_prepare_for_write_() must always be the same as the
    behavior of FLAC__metadata_chain_check_if_tempfile_needed(). Before this
    fix, one check was missing in FLAC__metadata_chain_check_if_tempfile_needed(),
    and also chain_prepare_for_write_() checked the sizes of the metadata blocks
    *after* making the changes to the chain, while
    FLAC__metadata_chain_check_if_tempfile_needed() does it *before* the changes.
    
    This patch changes FLAC__metadata_chain_check_if_tempfile_needed() so that it
    keeps some info (lbs_state, lbs_size) about estimated changes and then uses
    it to check the block sizes.
    
    It also simplifies FLAC__metadata_chain_check_if_tempfile_needed() a little.
    
    Patch-from: lvqcl <lvqcl.mail@gmail.com>
    
    • [DH] src/libFLAC/metadata_iterators.c
  • test/Makefile.lite : Remove call to old script

    12 mai 2016, par Erik de Castro Lopo
    test/Makefile.lite: Remove call to old script
    
    • [DH] test/Makefile.lite
  • Makefile.lite : Pick up `CFLAGS` from the environment

    12 mai 2016, par Erik de Castro Lopo
    Makefile.lite: Pick up `CFLAGS` from the environment
    
    This allows extra CFLAGS to be set on the command line. Eg
    
         CFLAGS=Werror make -f Makefile.lite
    
    • [DH] build/exe.mk
    • [DH] build/lib.mk