Xiph.org - mirrors/vorbis.git/summary

Vorbis git repository

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

Les articles publiés sur le site

  • Commit patch in Trac #2067

    12 janvier 2015, par Monty
    Commit patch in Trac #2067
    replaces -O20 with -O3 in configure.ac
    
    
    git-svn-id: http://svn.xiph.org/trunk/vorbis@19433 0101bb08-14d6-0310-b084-bc0e0c8e3800
    
    • [DH] configure.ac
  • Reorder declaration and initialization of ci and hi so that declaraion is not occurri...

    12 janvier 2015, par Monty
    Reorder declaration and initialization of ci and hi so that declaraion is not occurring after the rate <=0 check.
    
    
    git-svn-id: http://svn.xiph.org/trunk/vorbis@19432 0101bb08-14d6-0310-b084-bc0e0c8e3800
    
    • [DH] lib/vorbisenc.c
  • Reject multiple headers of the same type.

    7 janvier 2015, par Tim Terriberry
    Reject multiple headers of the same type.
    
    A common application pattern is to call vorbis_synthesis_headerin()
     and count how many times it succeeds.
    If you feed it multiple valid comment headers, they will all
     succeed, meaning you can be fooled into think you have a valid
     Vorbis file despite never seeing a setup header.
    This patch makes libvorbis reject multiple headers of the same type,
     preventing this from occurring.
    
    
    git-svn-id: http://svn.xiph.org/trunk/vorbis@19426 0101bb08-14d6-0310-b084-bc0e0c8e3800
    
    • [DH] lib/info.c
  • Bump libvorbisenc version for 1.3.5 release.

    5 janvier 2015, par Ralph Giles
    Bump libvorbisenc version for 1.3.5 release.
    
    
    git-svn-id: http://svn.xiph.org/trunk/vorbis@19425 0101bb08-14d6-0310-b084-bc0e0c8e3800
    
    • [DH] configure.ac
    • [DH] lib/info.c
  • Fix encoder crash with non-positive sample rates.

    5 janvier 2015, par Ralph Giles
    Fix encoder crash with non-positive sample rates.
    
    Input files with sampling rate 0 are useless and can make
    libvorbis access invalid memory because the logic in
    _vp_psy_init (and probably other functions) isn't prepared for
    it. A sanity check lets the library refuse those inputs
    gracefully in the initialization functions before they can
    do harm.
    
    Patch by Martin Steghöfer <martin@steghoefer.eu>
    
    Fixes #2078
    Bug-Debian: https://bugs.debian.org/716613
    
    
    
    git-svn-id: http://svn.xiph.org/trunk/vorbis@19422 0101bb08-14d6-0310-b084-bc0e0c8e3800
    
    • [DH] lib/vorbisenc.c