Xiph.org - flac.git/summary

Flac git repository

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

Les articles publiés sur le site

  • metadata_iterators.c : Add missing check for is_writable

    15 janvier 2016, par Erik de Castro Lopo
    metadata_iterators.c: Add missing check for is_writable
    
    Patch-from: lvqcl <lvqcl.mail@gmail.com>
    
    • [DH] src/libFLAC/metadata_iterators.c
  • flacdiff : Improve error msg output

    10 janvier 2016, par Erik de Castro Lopo
    flacdiff: Improve error msg output
    
    Patch-from: lvqcl <lvqcl.mail@gmail.com>
    
    • [DH] src/utils/flacdiff/main.cpp
  • Fix description of —rice-partition-order in flac -H

    9 janvier 2016, par Thomas Zander
    Fix description of --rice-partition-order in flac -H
    
    This is more of a "human language versus programmer parlor" issue.
    src/flac/main.c will return usage error for an argument greater
    than FLAC__MAX_RICE_PARTITION_ORDER (15u).
    While in programming "0..16" usually means "from zero to 15", in
    natural human-to-human talk, it would rather mean "from zero to 16".
    This changes the wording a bit to avoid this misunderstanding.
    
    Closes: http://sourceforge.net/p/flac/bugs/352/
    Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
    
    • [DH] src/flac/main.c
  • bitwriter : Add overflow check

    9 janvier 2016, par Erik de Castro Lopo
    bitwriter: Add overflow check
    
    The old version of `FLAC__bitwriter_write_raw_uint32()` assumes that the
    unused bits of the `val` argument are equal to zero, but don't check it.
    
    This patch adds a new version of that function which does have the check
    and then calls a new function `FLAC__bitwriter_write_raw_uint32_nocheck()`
    which behaves like the old one.
    
    Code updated to use these two functions as needed.
    
    Patch-from: lvqcl <lvqcl.mail@gmail.com>
    
    • [DH] src/libFLAC/bitwriter.c
  • libFLAC : Fix total_samples_estimate

    9 janvier 2016, par Erik de Castro Lopo
    libFLAC: Fix total_samples_estimate
    
    See the SF ticket for details.
    
    Patch-from: lvqcl <lvqcl.mail@gmail.com>
    Closes: https://sourceforge.net/p/flac/bugs/351/
    
    • [DH] src/libFLAC/stream_encoder.c
    • [DH] src/libFLAC/stream_encoder_framing.c