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/libsvtav1 : unbreak build with latest svtav1

    22 février, par Gyan Doshi
    avcodec/libsvtav1: unbreak build with latest svtav1
    
    SVT-AV1 made a change in their public API in 988e930c but without a
    version bump or any other accessible marker, thus breaking ffmpeg build
    with current versions of SVT-AV1.
    
    They have finally bumped versions a month later, so check added.
    
    • [DH] libavcodec/libsvtav1.c
  • ffv1enc_vulkan : disable autodetection of async_depth

    21 février, par Lynne
    ffv1enc_vulkan: disable autodetection of async_depth
    
    The issue is that this could consume gigabytes of VRAM at higher
    resolutions for not that much of a speedup.
    Automatic detection was not a good idea as we can't know how much
    VRAM is actually free.
    Just remove it.
    
    • [DH] libavcodec/ffv1enc_vulkan.c
  • avformat/webvttdec : Add webvtt extension and MIME type

    21 février, par softworkz
    avformat/webvttdec: Add webvtt extension and MIME type
    
    The webvtt extension is sometimes used in HLS playlists.
    
    Signed-off-by: softworkz <softworkz@hotmail.com>
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
    
    • [DH] libavformat/webvttdec.c
  • swscale/graph : expose ff_sws_graph_add_pass

    21 février, par Niklas Haas
    swscale/graph: expose ff_sws_graph_add_pass
    
    So we can move pass-adding business logic outside of graph.c.
    
    • [DH] libswscale/graph.c
    • [DH] libswscale/graph.h
  • avformat/hls demuxer : Add WebVTT subtitle support

    21 février, par softworkz
    avformat/hls demuxer: Add WebVTT subtitle support
    
    This add support for WebVTT subtitles in HLS streams.
    Just like for separate audio streams, it supports all available
    WebVTT streams in all renditions.
    No new options are added, it just works and provides subtitles streams
    like any other demuxer.
    The code prevents downloading subtitle segments which are farther
    in the future than the main segments, to avoid loading hundreds
    of subtitle segments in advance.
    
    Signed-off-by: softworkz <softworkz@hotmail.com>
    
    • [DH] libavformat/hls.c