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/sbcenc : Mark sbc_encode_init() as av_cold

    6 mars, par Andreas Rheinhardt
    avcodec/sbcenc: Mark sbc_encode_init() as av_cold
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
    
    • [DH] libavcodec/sbcenc.c
  • tests/swscale : allow testing only unscaled convertors

    6 mars, par Niklas Haas
    tests/swscale: allow testing only unscaled convertors
    
    I need this to be able to test the new unscaled conversion code more quickly.
    We re-order the flags order to make 0 the first entry, so we don't set any
    flags when performing unscaled tests.
    
    • [DH] libswscale/tests/swscale.c
  • swscale/graph : make noop loop more robust

    6 mars, par Niklas Haas
    swscale/graph: make noop loop more robust
    
    The current loop only works if the input and output have the same number
    of planes. However, with the new scaling logic, we can also optimize into a
    noop the case where the input has extra unneeded planes.
    
    For the memcpy fallback to work in these cases we have to instead check if
    the *output* pointer is set, rather than the input pointer.
    
    • [DH] libswscale/graph.c
  • swscale/graph : prefer bools to ints

    6 mars, par Niklas Haas
    swscale/graph: prefer bools to ints
    
    This is more consistent with the rest of the newly added code, which
    universally switched to using bools for boolean values.
    
    • [DH] libswscale/format.c
    • [DH] libswscale/format.h
    • [DH] libswscale/graph.h
  • swscale/graph : move vshift() and shift_img() to shared header

    6 mars, par Niklas Haas
    swscale/graph: move vshift() and shift_img() to shared header
    
    I need to reuse these inside `ops.c`.
    
    • [DH] libswscale/graph.c
    • [DH] libswscale/graph.h