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

  • aarch64 : Add parentheses around the offset parameter in movrel

    16 février 2017, par Martin Storsjö
    aarch64: Add parentheses around the offset parameter in movrel
    
    This fixes building with clang for linux with PIC enabled.
    
    Signed-off-by: Martin Storsjö <martin@martin.st>
    
    • [DBH] libavutil/aarch64/asm.S
  • vaapi_encode : Discard output buffer if picture submission fails

    16 février 2017, par Mark Thompson
    vaapi_encode: Discard output buffer if picture submission fails
    
    Previously this was leaking, though it actually hit an assert making
    sure that the buffer had already been cleared when freeing the picture.
    
    • [DBH] libavcodec/vaapi_encode.c
  • matroskaenc : factor ts_offset into block timecode computation

    15 février 2017, par John Stebbins
    matroskaenc: factor ts_offset into block timecode computation
    
    ts_offset was added to cluster timecode, but then effectively subtracted
    back off the block timecode
    
    When setting initial_padding for an audio stream, the timestamps are
    written incorrectly to the mkv file.  cluster timecode gets written
    as pts0 + ts_offset which is correct, but then block timecode gets
    written as pts - cluster timecode which expanded is
    pts - (pts0 + ts_offset).  Adding cluster and block tc back together:
    cluster + block = (pts0 + ts_offset) + (pts - (pts0 + ts_offset)) = pts
    But the result should be pts + ts_offset since demux will subtract the
    CodecDelay element from pts and set initial_padding to CodecDelay.
    This patch gives the correct result.
    
    • [DBH] libavformat/matroskaenc.c
  • h264_sei : Check actual presence of picture timing SEI message

    15 février 2017, par Michael Niedermayer
    h264_sei: Check actual presence of picture timing SEI message
    
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
    
    • [DBH] libavcodec/h264_parser.c
    • [DBH] libavcodec/h264_sei.c
    • [DBH] libavcodec/h264_sei.h
    • [DBH] libavcodec/h264_slice.c
  • mov : Validate spherical metadata version

    15 février 2017, par Vittorio Giovara
    mov: Validate spherical metadata version
    
    • [DBH] libavformat/mov.c