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

  • fftools/ffprobe : Make pix_fmt output bitexact

    21 mars, par Andreas Rheinhardt
    fftools/ffprobe: Make pix_fmt output bitexact
    
    It is currently not due to endianness. This forced to add
    workarounds with sed in fate/mxf.mak (which are removed
    in this commit).
    This is supposed to fix the enhanced-flv-hevc-hdr10 test
    on big endian systems.
    
    Reviewed-by: Zhao Zhili <quinkblack-at-foxmail.com@ffmpeg.org>
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
    
    • [DH] fftools/ffprobe.c
    • [DH] tests/fate/mxf.mak
    • [DH] tests/ref/fate/enhanced-flv-hevc-hdr10
  • doc/filters : add thumbnail_cuda entry

    21 mars, par Danil Iashchenko
    doc/filters: add thumbnail_cuda entry
    
    Also update thumbnail_cuda filter description.
    
    • [DH] doc/filters.texi
    • [DH] libavfilter/vf_thumbnail_cuda.c
  • configure : add option to select use of response files

    21 mars, par Gyan Doshi
    configure: add option to select use of response files
    
    • [DH] configure
    • [DH] ffbuild/library.mak
  • avcodec/ffv1dec : remove unused var

    20 mars, par Michael Niedermayer
    avcodec/ffv1dec: remove unused var
    
    • [DH] libavcodec/ffv1dec.c
  • avcodec/ffv1 : Implement 2D RLE for remap

    20 mars, par Michael Niedermayer
    avcodec/ffv1: Implement 2D RLE for remap
    
    ATM this performs as well or better as any other algorithm tried.
    Its simple for the decoder.
    On the encoder side complexity depends on how parameters are
    chosen. But with a fixed mul_count of 1 and basic heuristic
    it performs as well as any more complex choice i tried so far.
    
    The encoder code here is flexible and allows mul_count > 1
    and also can easily be used to exactly test various parameters.
    
    With mul_count=512 we can gain another 6% in remap table size
    for fixed point in float data. (this is not implemented in this
    patch though)
    
    Sponsored-by: Sovereign Tech Fund
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
    
    • [DH] libavcodec/ffv1dec.c
    • [DH] libavcodec/ffv1enc.c