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

  • tests/swscale : use hex format for flags values

    31 mars, par Niklas Haas
    tests/swscale: use hex format for flags values
    
    • [DH] libswscale/tests/swscale.c
  • fftools/ffprobe : Fix hypothetical stack buffer overflow

    31 mars, par Andreas Rheinhardt
    fftools/ffprobe: Fix hypothetical stack buffer overflow
    
    It can't really happen, because no currently used pixel format
    has a name exceeding the size of the buffer.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
    
    • [DH] fftools/ffprobe.c
  • doc/encoders : Move FFV1 encoder to video encoder section

    31 mars, par Andreas Rheinhardt
    doc/encoders: Move FFV1 encoder to video encoder section
    
    It is not an audio encoder.
    
    Reviewed-by: Gyan Doshi <ffmpeg@gyani.pro>
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
    
    • [DH] doc/encoders.texi
  • configure : Allow mixing declarations and statements

    30 mars, par Andreas Rheinhardt
    configure: 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>
    
    • [DH] configure
    • [DH] doc/developer.texi
  • avutil/tests/channel_layout : Improve enum range check

    30 mars, par Andreas Rheinhardt
    avutil/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>
    
    • [DH] libavutil/tests/channel_layout.c