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/decode : Only use ff_progress_frame_get_buffer() with blank input

    11 avril, par Andreas Rheinhardt
    avcodec/decode: Only use ff_progress_frame_get_buffer() with blank input
    
    All users (namely HEVC) that use ff_progress_frame_alloc()
    should just use ff_thread_get_buffer(). Using
    ff_progress_frame_get_buffer() is not a must; it is merely
    a convenience wrapper.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
    
    • [DH] libavcodec/decode.c
    • [DH] libavcodec/hevc/refs.c
    • [DH] libavcodec/progressframe.h
  • fftools/ffmpeg_filter : Move some declaration to new header file

    11 avril, par softworkz
    fftools/ffmpeg_filter: Move some declaration to new header file
    
    to allow filtergraph printing to access the information.
    
    Signed-off-by: softworkz <softworkz@hotmail.com>
    
    • [DH] fftools/ffmpeg_filter.c
    • [DH] fftools/ffmpeg_filter.h
  • fftools/textformat : Extract and generalize textformat api from ffprobe.c

    11 avril, par softworkz
    fftools/textformat: Extract and generalize textformat api from ffprobe.c
    
    Signed-off-by: softworkz <softworkz@hotmail.com>
    
    • [DH] fftools/textformat/avtextformat.c
    • [DH] fftools/textformat/avtextformat.h
    • [DH] fftools/textformat/avtextwriters.h
    • [DH] fftools/textformat/tf_compact.c
    • [DH] fftools/textformat/tf_default.c
    • [DH] fftools/textformat/tf_flat.c
    • [DH] fftools/textformat/tf_ini.c
    • [DH] fftools/textformat/tf_json.c
    • [DH] fftools/textformat/tf_xml.c
    • [DH] fftools/textformat/tw_avio.c
    • [DH] fftools/textformat/tw_buffer.c
    • [DH] fftools/textformat/tw_stdout.c
  • avformat/fifo : Check for keyframe video type before stop dropping

    10 avril, par Arthur Grillo
    avformat/fifo: Check for keyframe video type before stop dropping
    
    The current behavior when using restart_with_keyframe is that it will
    recover if it also encounters any audio packet, as they are flagged as a
    keyframe.
    
    The expectation is that packets are dropped until the next _video_
    keyframe.
    
    To fix that, check if exists a video stream, if it exists check the
    packet stream codec type, only letting it recover when it is a video
    one. If there is no video stream, resume to the original behavior, not
    checking the codec type.
    
    Fixes ticket: #11467
    
    Signed-off-by: Arthur Grillo <arthurgrillo@riseup.net>
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
    
    • [DH] libavformat/fifo.c
  • avcodec/asvenc : Use tighter MAX_MB_SIZE constant

    10 avril, par Andreas Rheinhardt
    avcodec/asvenc: Use tighter MAX_MB_SIZE constant
    
    Also document the constant.
    
    Reviewed-by: Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
    
    • [DH] libavcodec/asvenc.c