git.videolan.org Git - ffmpeg.git/rss log
FFmpeg git repo
Les articles publiés sur le site
-
avformat/takdec.c : return proper error codes for avio_read() failures
21 avril, par James Almer -
tools/target_dec_fuzzer : Remove mjpeg hack
21 avril, par Andreas Rheinhardttools/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>
-
avcodec/cri,tdsc,tiff : Use ff_mjpeg_decoder directly
21 avril, par Andreas Rheinhardtavcodec/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>
-
avcodec/magicyuv : Simplify check for RGB
21 avril, par Andreas Rheinhardt -
avcodec/magicyuv : Set properties via AVPixFmtDescriptor
21 avril, par Andreas Rheinhardt