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

  • various : fix typos

    15 juin, par Clément Péron
    various: fix typos
    
    usefull -> useful
    seperately -> separately
    reciever -> receiver
    
    Signed-off-by: Clément Péron <peron.clem@gmail.com>
    
    • [DH] doc/filters.texi
    • [DH] libavdevice/avfoundation.m
    • [DH] libavfilter/vf_nlmeans_opencl.c
    • [DH] libavformat/mxfenc.c
  • avutil : Fix linking x86 asm constants with Clang in MSVC mode

    12 juin, par Martin Storsjö
    avutil: Fix linking x86 asm constants with Clang in MSVC mode
    
    This fixes building with Clang in MSVC mode, for x86, which was
    broken in 6e49b8699657b808b7dc80033f2c3f2d0e029fa3 (in Nov 2024);
    previously it failed with undefined symbols for the constants
    defined with DECLARE_ASM_CONST, accessed via inline assembly.
    
    Before 57861911a34e1c33796be97f2b2f44e05fffd647, there was an
        #elif defined(__GNUC__) || defined(__clang__)
    case before the
        #elif defined(_MSC_VER)
    case for defining DECLARE_ASM_CONST, which included av_used.
    (This case included the explicit "defined(__clang__)" since
    f637046d3134a331e4b5a7243ac3dfb92735b8a5.)
    
    After 57861911a34e1c33796be97f2b2f44e05fffd647, it used the
    generic definition of DECLARE_ASM_CONST that also included
    av_used - which also worked for Clang in MSVC mode. But after
    6e49b8699657b808b7dc80033f2c3f2d0e029fa3, Clang in MSVC mode
    ended up using the MSVC specific variant which lacked the
    av_used declaration, causing linker errors due to undefined
    symbols.
    
    Signed-off-by: Martin Storsjö <martin@martin.st>
    
    • [DH] libavutil/mem_internal.h
  • avcodec/vvc : parse all SEI messages

    11 juin, par Marvin Scholz
    avcodec/vvc: parse all SEI messages
    
    While the current code iterated over the messages, it always returned
    in the first iteration. Instead keep iterating and warn for failure to
    parse. At time of writing, none of the parsing functions seems to
    actually return an error, ever.
    
    Fix CID 1648348
    
    • [DH] libavcodec/vvc/sei.c
  • avcodec/vvc/dec : fix possible null-pointer dereference

    11 juin, par Marvin Scholz
    avcodec/vvc/dec: fix possible null-pointer dereference
    
    When checking for filmgrain here, needs_fg can be true even when
    film_grain_characteristics is NULL (when aom_film_grain.enable is true),
    therefore this check could end up dereferencing film_grain_characteristics
    even though it is NULL.
    
    Fix CID 1648347
    
    • [DH] libavcodec/vvc/dec.c
  • vulkan : maintain compatibility with older headers

    11 juin, par Lynne
    vulkan: maintain compatibility with older headers
    
    • [DH] libavutil/hwcontext_vulkan.c
    • [DH] libavutil/vulkan.c