git.videolan.org Git - ffmpeg.git/rss log

FFmpeg git repo

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

Les articles publiés sur le site

  • avcodec/cbrt_tablegen : Remove always-false branch

    2 septembre, par Andreas Rheinhardt
    avcodec/cbrt_tablegen: Remove always-false branch
    
    Each ff_cbrt_tableinit*() is called at most once, making this
    check always-false.
    
    Reviewed-by: Zhao Zhili <quinkblack@foxmail.com>
    Reviewed-by: Lynne <dev@lynne.ee>
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
    
    • [DH] libavcodec/cbrt_tablegen.h
  • .forgejo/CODEOWNERS : add myself for various files

    2 septembre, par Niklas Haas
    .forgejo/CODEOWNERS: add myself for various files
    
    • [DH] .forgejo/CODEOWNERS
  • checkasm : sw_ops : Avoid division by zero

    2 septembre, par Martin Storsjö
    checkasm: sw_ops: Avoid division by zero
    
    If we're invoked with range == UINT_MAX, we end up doing
    "rnd() % (UINT_MAX + 1)", which is equal to "rnd() % 0". On
    arm (on all platforms) and on MSVC i386, this ends up crashing
    at runtime.
    
    This fixes the crash.
    
    • [DH] tests/checkasm/sw_ops.c
  • avfilter/af_afade : don't leak memory on error

    2 septembre, par Niklas Haas
    avfilter/af_afade: don't leak memory on error
    
    This first frame was never cleaned up if the second input fails.
    
    • [DH] libavfilter/af_afade.c
  • doc/examples/vaapi_encode : fix invalid check on fwrite

    2 septembre, par Zhao Zhili
    doc/examples/vaapi_encode: fix invalid check on fwrite
    
    enc_pkt->size is 0 after av_packet_unref, which makes the check invalid.
    
    Fix regression from 3e4bfff2.
    
    Co-Authored-by: Jin Bo <jinbo@loongson.cn>
    Signed-off-by: Zhao Zhili <zhilizhao@tencent.com>
    
    • [DH] doc/examples/vaapi_encode.c