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/takdec.c : return proper error codes for avio_read() failures

    21 avril, par James Almer
    avformat/takdec.c: return proper error codes for avio_read() failures
    
    Suggested-by: Nicolas George <george@nsup.org>
    Signed-off-by: James Almer <jamrial@gmail.com>
    
    • [DH] libavformat/takdec.c
  • tools/target_dec_fuzzer : Remove mjpeg hack

    21 avril, par Andreas Rheinhardt
    tools/target_dec_fuzzer: Remove mjpeg hack
    
    ff_mjpeg_decoder is now referenced directly by the relevant
    decoders, so that the linker sees the dependency and
    just does the desired thing. So remove the hack.
    
    (Btw: The preprocessor does not do string comparisons, instead
    undefined tokens in #if checks evaluate to 0, making the check
    true regardless of the actual codec fuzzed (and leading to
    linker errors if the mjpeg decoder is disabled).)
    
    Reviewed-by: Kacper Michajlow <kasper93@gmail.com>
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
    
    • [DH] tools/target_dec_fuzzer.c
  • avcodec/cri,tdsc,tiff : Use ff_mjpeg_decoder directly

    21 avril, par Andreas Rheinhardt
    avcodec/cri,tdsc,tiff: Use ff_mjpeg_decoder directly
    
    This is simpler than calling avcodec_find_decoder().
    Notice that av_codec_init_static() has already been called
    by the time we reach these decoders' init functions,
    so it is not necessary to call avcodec_find_decoder()
    for it (which doesn't do anything for the mjpeg decoder
    anyway).
    
    Reviewed-by: Kacper Michajlow <kasper93@gmail.com>
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
    
    • [DH] libavcodec/cri.c
    • [DH] libavcodec/tdsc.c
    • [DH] libavcodec/tiff.c
  • avcodec/magicyuv : Simplify check for RGB

    21 avril, par Andreas Rheinhardt
    avcodec/magicyuv: Simplify check for RGB
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
    
    • [DH] libavcodec/magicyuv.c
  • avcodec/magicyuv : Set properties via AVPixFmtDescriptor

    21 avril, par Andreas Rheinhardt
    avcodec/magicyuv: Set properties via AVPixFmtDescriptor
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
    
    • [DH] libavcodec/magicyuv.c