git.videolan.org Git - ffmpeg.git/rss log
FFmpeg git repo
Les articles publiés sur le site
-
tests/swscale : use hex format for flags values
31 mars, par Niklas Haas -
fftools/ffprobe : Fix hypothetical stack buffer overflow
31 mars, par Andreas Rheinhardt -
doc/encoders : Move FFV1 encoder to video encoder section
31 mars, par Andreas Rheinhardt -
configure : Allow mixing declarations and statements
30 mars, par Andreas Rheinhardtconfigure: Allow mixing declarations and statements This C90 rule forces us to use a too big scope and should therefore be dropped. Given that we already require C11, all supported compilers can handle mixed declarations and statements just fine. Reviewed-by: Zhao Zhili <quinkblack-at-foxmail.com@ffmpeg.org> Reviewed-by: Marvin Scholz <epirat07@gmail.com> Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Reviewed-by: softworkz . <softworkz-at-hotmail.com@ffmpeg.org> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-
avutil/tests/channel_layout : Improve enum range check
30 mars, par Andreas Rheinhardtavutil/tests/channel_layout: Improve enum range check Both GCC and Clang use unsigned as underlying type of an enum with no negative enumeration constants, making checks like "layout->order >= 0" here tautologically true. Clang warns about this. Combine both range checks by casting to unsigned to suppress this warning. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>