Xiph.org - flac.git/summary

Flac git repository

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

Les articles publiés sur le site

  • oss-fuzz : Add fuzzing headers

    17 novembre 2019, par Erik de Castro Lopo
    oss-fuzz: Add fuzzing headers
    
    These includes header files were taken from:
    
        https://github.com/guidovranken/fuzzing-headers.git
    
    with some minor changes required to make them compile cleanly
    with the extra compiler warning flags used by the FLAC build
    system.
    
    • [DH] oss-fuzz/fuzzing/Readme.md
    • [DH] oss-fuzz/fuzzing/datasource/datasource.hpp
    • [DH] oss-fuzz/fuzzing/datasource/id.hpp
    • [DH] oss-fuzz/fuzzing/exception.hpp
    • [DH] oss-fuzz/fuzzing/memory.hpp
    • [DH] oss-fuzz/fuzzing/types.hpp
  • libFLAC++ : Add libFLAC++-static.la target for oss-fuzzers

    17 novembre 2019, par Erik de Castro Lopo
    libFLAC++: Add libFLAC++-static.la target for oss-fuzzers
    
    • [DH] src/libFLAC++/Makefile.am
  • cmake_minimum_required() cleanup :

    13 novembre 2019, par sezero
    cmake_minimum_required() cleanup:
    
    - document version requirements in the top-level file.
    - remove incorrect version requirements from sub-dirs.
    - set min. required version to 3.5 in top-level file.
    - set minimun required version to 3.9 under docs/ .
    - make documents building an option (on by default.)
      so, the tree can be built using cmake-3.5 using
     -DBUILD_DOCS=0 on the command line.
    
    • [DH] CMakeLists.txt
    • [DH] doc/CMakeLists.txt
    • [DH] src/CMakeLists.txt
    • [DH] src/libFLAC/CMakeLists.txt
    • [DH] src/libFLAC/ia32/CMakeLists.txt
  • cmake : use proper pkg-config install path variable

    12 novembre 2019, par DeadSix27
    cmake: use proper pkg-config install path variable
    
    • [DH] src/libFLAC++/CMakeLists.txt
    • [DH] src/libFLAC/CMakeLists.txt
  • flac/main.c : replace an snprintf() call with flac_snprintf()

    10 novembre 2019, par sezero
    flac/main.c: replace an snprintf() call with flac_snprintf()
    
    flac_snprintf() is used everywhere else in there. that single instance
    of plain snprintf() was added in commit 04974d27. fixes flac.exe build
    with older msvc versions.
    
    • [DH] src/flac/main.c