Xiph.org - flac.git/summary

Flac git repository

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

Les articles publiés sur le site

  • Simplified logic of parsing sizes of rice-partitions

    2 février 2020, par Ulrik Mikaelsson
    Simplified logic of parsing sizes of rice-partitions
    
    > if the partition order is zero, n = frame's blocksize - predictor order
    > else if this is not the first partition of the subframe,
    >   n = (frame's blocksize / (2^partition order))
    > else n = (frame's blocksize / (2^partition order)) - predictor order
    
    if the partition order is zero, then partition_number can only be zero
    if the partition order is zero, then
      (frame's blocksize / (2^partition order))
      is (frame's blocksize / 1) == frame's blocksize
    
    • [DH] doc/html/format.html
    • [DH] src/libFLAC/stream_decoder.c
  • Fix nullptr dereference in FLAC++

    26 décembre 2019, par Tamás Zahola
    Fix nullptr dereference in FLAC++
    
    • [DH] src/libFLAC++/metadata.cpp
  • CMake : Handier way to find Iconv

    21 décembre 2019, par Vitaliy Kirsanov
    CMake: Handier way to find Iconv
    
    • [DH] CMakeLists.txt
    • [DH] src/CMakeLists.txt
    • [DH] src/libFLAC++/CMakeLists.txt
    • [DH] src/libFLAC/CMakeLists.txt
    • [DH] src/plugin_common/CMakeLists.txt
    • [DH] src/share/utf8/CMakeLists.txt
  • libFLAC++ : Fix mistyped identifier name

    30 novembre 2019, par Andrey Astafyev
    libFLAC++: Fix mistyped identifier name
    
    • [DH] src/test_libFLAC++/encoders.cpp
  • libFLAC : Removed useless comparison

    30 novembre 2019, par Andrey Astafyev
    libFLAC: Removed useless comparison
    
    • [DH] src/libFLAC/stream_decoder.c