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

  • avformat : remove deprecated FF_API_ALLOW_FLUSH

    19 février, par James Almer
    avformat: remove deprecated FF_API_ALLOW_FLUSH
    
    Deprecated since 2023-10-02.
    
    Signed-off-by: James Almer <jamrial@gmail.com>
    
    • [DH] libavdevice/pulse_audio_enc.c
    • [DH] libavformat/avformat.h
    • [DH] libavformat/fifo.c
    • [DH] libavformat/hlsenc.c
    • [DH] libavformat/matroskaenc.c
    • [DH] libavformat/movenc.c
    • [DH] libavformat/mpegtsenc.c
    • [DH] libavformat/oggenc.c
    • [DH] libavformat/tee.c
    • [DH] libavformat/tests/fifo_muxer.c
    • [DH] libavformat/version_major.h
  • overlay_vulkan : remove unused variable

    19 février, par Lynne
    overlay_vulkan: remove unused variable
    
    Forgotten to be removed after the recent port to imageLoad()
    
    • [DH] libavfilter/vf_overlay_vulkan.c
  • vulkan : don't query video queue properties unless the extension is enabled

    19 février, par Lynne
    vulkan: don't query video queue properties unless the extension is enabled
    
    Fixes validation errors.
    
    • [DH] libavutil/hwcontext_vulkan.c
    • [DH] libavutil/vulkan.c
  • avcodec/ffv1_parser : Rename close to ffv1_close

    19 février, par Zhao Zhili
    avcodec/ffv1_parser: Rename close to ffv1_close
    
    This fixed wasm checkasm failure
    
    $ wasm-tools validate tests/checkasm/checkasm
    error: wasisdk://v25.0/build/sysroot/wasi-libc-wasm32-wasip1-threads/libc-top-half/musl/src/stdio/__stdio_close.c:24:9 function `__stdio_close` failed to validate
    
    Caused by:
        0: func 4581 failed to validate
        1: type mismatch: expected i32 but nothing on stack (at offset 0x43b770)
    
    Since close is declared as static function, it's more like a bug
    in wasi sdk, but we can workaround it easily.
    
    Signed-off-by: Zhao Zhili <zhilizhao@tencent.com>
    Reviewed-by: James Almer <jamrial@gmail.com>
    
    • [DH] libavcodec/ffv1_parser.c
  • ffv1dec : set f->state_transition for default range coder table

    18 février, par Lynne
    ffv1dec: set f->state_transition for default range coder table
    
    The table is only set when f->ac is set to CUSTOM. Setting it
    for default range coder tables simplifies hardware accelerator code.
    
    • [DH] libavcodec/ffv1_parse.c