git.libav.org Git - libav.git/rss log

Libav master git repository

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

Les articles publiés sur le site

  • matroskadec : don’t warn about unknown spherical medata when none is present

    3 novembre 2017, par James Almer
    matroskadec: don't warn about unknown spherical medata when none is present
    
    track->video.projection.type is set to 0 (a Matroska specific "No spherical
    metadata present" value, with no related AVSphericalMapping) by default on
    files without the element.
    
    This removes bogus warnings on every single matroska file without Spherical
    metadata.
    
    Signed-off-by: James Almer <jamrial@gmail.com>
    
    • [DBH] libavformat/matroskadec.c
  • matroskadec : allow RealAudio/Cook/Sipro streams of flavor 0

    2 novembre 2017, par Sean McGovern
    matroskadec: allow RealAudio/Cook/Sipro streams of flavor 0
    
    Regression since 569d18aa9dc989c37bb4d4b968026fe5afa6fff9.
    
    Bug-Id: 1055
    Cc: libav-stable@libav.org
    
    • [DBH] libavformat/matroskadec.c
  • avconv.c : fix calculation of input file duration in seek_to_start()

    30 octobre 2017, par Peter Große
    avconv.c: fix calculation of input file duration in seek_to_start()
    
    Fixes looping files without audio or when using stream_copy, where
    ist->nb_samples is not set since no decoding is done.
    
    Signed-off-by: Diego Biurrun <diego@biurrun.de>
    
    • [DBH] avtools/avconv.c
  • configure : Stop using dlltool to create an import library

    30 octobre 2017, par Martin Storsjö
    configure: Stop using dlltool to create an import library
    
    There shouldn't be any functional difference between the import
    library created by dlltool and the one produced by the linker itself.
    Keep installing it with both names though, for compatibility with users
    that expect both to exist.
    
    The dlltool step was added in ec10a9ab4; prior to that, a MSVC
    compatible import library was generated using lib.exe. After that
    commit, there was no functional difference between the two import
    libraries (and since MSVC 2012, link.exe works just fine with the
    GNU binutils generated one).
    
    Signed-off-by: Martin Storsjö <martin@martin.st>
    
    • [DBH] configure
  • dashenc : copy stream frame rate to output stream

    26 octobre 2017, par Peter Große
    dashenc: copy stream frame rate to output stream
    
    Leads to setting of DefaultDuration in Matroska muxer based on frame rate instead of timebase.
    Fixes playback in Chrome.
    
    Signed-off-by: Peter Große <pegro@friiks.de>
    Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
    
    • [DBH] libavformat/dashenc.c