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

  • vulkan/rangecoder : minor cleanup

    16 avril, par Lynne
    vulkan/rangecoder: minor cleanup
    
    • [DH] libavcodec/vulkan/rangecoder.comp
  • vulkan : use a single command buffer per command buffer pool

    16 avril, par Lynne
    vulkan: use a single command buffer per command buffer pool
    
    We violated the spec, which, despite the actual command buffer pool
    *not* being involved in any functions which require external synchronization
    of the pool, *require* external synchronization even if only the
    command buffers are used.
    
    This also has the effect of *significantly* speeding up execution
    in case command buffers are contended.
    
    • [DH] libavutil/hwcontext_vulkan.c
    • [DH] libavutil/vulkan.c
    • [DH] libavutil/vulkan.h
  • avformat/movenc : fix VVC encoding with leading pictures

    16 avril, par Gabriel Hege
    avformat/movenc: fix VVC encoding with leading pictures
    
    The default behavior for VVenC (since v1.10.0) is to create an IDR with
    leading pictures for the first picture in decoding order (POC 32). This
    leads to FFmpeg generating an edit list with an empty entry, skipping
    the leading pictures.
    
    This patch fixes the calculation for the start_pts, while the DTS is
    negative (as produced by vvenc).
    
    Signed-off-by: Gabriel Hege <g+ffmpeg@hege.cc>
    
    • [DH] libavformat/movenc.c
  • fftools/tf_internal : Use av_default_item_name

    16 avril, par softworkz
    fftools/tf_internal: Use av_default_item_name
    
    Reviewed-by: Stefano Sabatini <stefasab@gmail.com>
    Signed-off-by: softworkz <softworkz@hotmail.com>
    
    • [DH] fftools/textformat/tf_internal.h
  • avcodec/dvbsubenc : Check nb_colors before using it

    16 avril, par Andreas Rheinhardt
    avcodec/dvbsubenc: Check nb_colors before using it
    
    Avoids a potential overflow when multiplying nb_colors by 6.
    Also make the nb_colors check a bit more strict.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
    
    • [DH] libavcodec/dvbsubenc.c