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

  • fate : Add tests for mov display matrix

    24 octobre 2016, par Vittorio Giovara
    fate: Add tests for mov display matrix
    
    Rotation, sample/display aspect ratio and pure matrix export.
    
    Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
    
    • [DBH] tests/Makefile
    • [DBH] tests/fate-run.sh
    • [DBH] tests/fate/mov.mak
    • [DBH] tests/ref/fate/mov-dar
    • [DBH] tests/ref/fate/mov-display-matrix
    • [DBH] tests/ref/fate/mov-rotation
    • [DBH] tests/ref/fate/mov-sar
  • avprobe : Add -show_stream_entry to get a single stream property

    24 octobre 2016, par Vittorio Giovara
    avprobe: Add -show_stream_entry to get a single stream property
    
    This is needed for improved fate testing and it is modeled after
    -show_format_entry. The main behavioral difference is that when a print
    function is called with an empty key, rather than discarding it, the
    closes key in the hierarchy is used instead.
    
    Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
    
    • [DBH] avprobe.c
  • scale_npp : fix passthrough mode

    24 octobre 2016, par Yogender Gupta
    scale_npp: fix passthrough mode
    
    Signed-off-by: Anton Khirnov <anton@khirnov.net>
    
    • [DBH] libavfilter/vf_scale_npp.c
  • dvbsubdec : Fixed segfault when decoding subtitles

    21 octobre 2016, par Lorenz Brun
    dvbsubdec: Fixed segfault when decoding subtitles
    
    This fixes a segfault (originally found in Movian, but traced to libav)
    when decoding subtitles because only an array of rects is allocated,
    but not the actual structs it contains. The issue was probably
    introduced in commit 2383323 where the loop to allocate the rects in
    the array was thrown away.
    
    Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
    
    • [DBH] libavcodec/dvbsubdec.c
  • bktr : Use memset(0) instead of zero initialization for struct sigaction

    21 octobre 2016, par Diego Biurrun
    bktr: Use memset(0) instead of zero initialization for struct sigaction
    
    sigaction is not defined in standards as a struct starting with another
    struct. Some *BSD variants do however, resulting in a warning from the
    zero initialization, which this change eliminates.
    
    This partially reverts a92be9b856bd11b081041c43c25d442028fe9a63.
    
    • [DBH] libavdevice/bktr.c