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/hls : Partially revert "reduce default max reload to 3"

    27 février, par softworkz
    avformat/hls: Partially revert "reduce default max reload to 3"
    
    (setting to 100 as a reasonable compromise)
    
    The change has caused regressions for many users and consumers.
    Playlist reloads only happen when a playlist doesn't indicate that it
    has ended (via #EXT-X-ENDLIST), which means that the addition of future
    segments is still expected.
    It is well possible that an HLS server is temporarily unable to serve
    further segments but resumes after some time, either indicating a
    discontinuity or even by fully catching up.
    With a segment length of 3s, a max_reload value of 1000 corresponds to
    a duration of 50 minutes which appears to be a reasonable default.
    
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
    
    • [DH] libavformat/hls.c
  • doc/developer : Better {} style rule

    27 février, par Michael Niedermayer
    doc/developer: Better {} style rule
    
    This makes developer.texi consistent with tools/patcheck
    
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
    
    • [DH] doc/developer.texi
  • fftools/ffmpeg_dec : remove side data copy block

    26 février, par James Almer
    fftools/ffmpeg_dec: remove side data copy block
    
    It's no longer needed now that lavc handles this.
    
    Signed-off-by: James Almer <jamrial@gmail.com>
    
    • [DH] fftools/ffmpeg_dec.c
  • avcodec/decode : inject missing global side data to output frames

    26 février, par James Almer
    avcodec/decode: inject missing global side data to output frames
    
    ff_decode_frame_props() injects global side data passed by the caller (Usually
    coming from the container) but ignores the global side data the decoder
    gathered from the bitstream itself.
    This commit amends this.
    
    Signed-off-by: James Almer <jamrial@gmail.com>
    
    • [DH] libavcodec/decode.c
  • avfilter/dnn_detect : fail on filter if mandatory anchor option is missing

    26 février, par Leandro Santiago
    avfilter/dnn_detect: fail on filter if mandatory anchor option is missing
    
    It prevents the filter of running in case such option is missing,
    failing early, during init() instead of simply logging an error
    during runtime.
    
    Signed-off-by: Leandro Santiago <leandrosansilva@gmail.com>
    Reviewed-by: Wenbin Chen <wenbin.chen@intel.com>
    Reviewed-by: Guo Yejun <yejun.guo@intel.com>
    
    • [DH] libavfilter/vf_dnn_detect.c