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 : Tweak printing of ignored tests

    29 décembre 2016, par Martin Storsjö
    fate: Tweak printing of ignored tests
    
    Use a tab instead of two spaces, skip the fate prefix for the test name.
    
    This makes IGNORE line fit in even better with the other make printouts.
    
    Signed-off-by: Martin Storsjö <martin@martin.st>
    
    • [DBH] tests/fate-run.sh
  • fate : Unset the sig variable if ignoring a test failure

    28 décembre 2016, par Martin Storsjö
    fate: Unset the sig variable if ignoring a test failure
    
    Otherwise the .rep file would still contain a signal instead of a
    zero, even if the process returned success.
    
    Signed-off-by: Martin Storsjö <martin@martin.st>
    
    • [DBH] tests/fate-run.sh
  • h264_cavlc : check the value of run_before

    28 décembre 2016, par Anton Khirnov
    h264_cavlc: check the value of run_before
    
    Section 9.2.3.2 of the spec implies that run_before must not be larger
    than zeros_left.
    
    Fixes invalid reads with corrupted files.
    
    CC: libav-stable@libav.org
    Bug-Id: 1000
    Found-By: Kamil Frankowicz
    
    • [DBH] libavcodec/h264_cavlc.c
  • h2645_parse : use the bytestream2 API for packet splitting

    28 décembre 2016, par Anton Khirnov
    h2645_parse: use the bytestream2 API for packet splitting
    
    The code does some nontrivial jumping around in the buffer, so it is
    safer to use a checked API rather than do everything manually.
    
    Fixes a bug in nalff parsing, where the length field is currently not
    counted in the buffer size check, resulting in possible overreads with
    invalid files.
    
    CC: libav-stable@libav.org
    Bug-Id: 1002
    Found-By: Kamil Frankowicz
    
    • [DBH] libavcodec/h2645_parse.c
  • h264dec : initialize field_started to 0 on each decode call

    28 décembre 2016, par Anton Khirnov
    h264dec: initialize field_started to 0 on each decode call
    
    It might be incorrectly set to 1 if the previous call exited with an
    error.
    
    Bug-Id: 1019
    CC: libav-stable@libav.org
    
    • [DBH] libavcodec/h264dec.c