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/hashtable : Only align complete entries

    3 juin, par Andreas Rheinhardt
    avcodec/hashtable: Only align complete entries
    
    It is unnecessary to align both key and val, as they are only accessed
    via memcpy()/memcmp(), which has no alignment requirements.
    We only need to ensure that that the entries as a whole
    are suitable aligned for the probe sequence length.
    
    Reviewed-by: Emma Worley <emma@emma.gg>
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
    
    • [DH] libavcodec/hashtable.c
  • tests/fate/libavcodec : Run hashtable test

    3 juin, par Andreas Rheinhardt
    tests/fate/libavcodec: Run hashtable test
    
    Reviewed-by: Emma Worley <emma@emma.gg>
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
    
    • [DH] tests/fate/libavcodec.mak
  • avcodec/hashtable : Zero-initialize hashtable

    3 juin, par Andreas Rheinhardt
    avcodec/hashtable: Zero-initialize hashtable
    
    Otherwise ff_hashtable_freep() would try to free uninitialized
    pointers upon allocation error (which happens in the corresponding
    test tool).
    
    Reviewed-by: Emma Worley <emma@emma.gg>
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
    
    • [DH] libavcodec/hashtable.c
  • avcodec/Makefile : Only compile hashtable.o when needed

    3 juin, par Andreas Rheinhardt
    avcodec/Makefile: Only compile hashtable.o when needed
    
    Reviewed-by: Emma Worley <emma@emma.gg>
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
    
    • [DH] libavcodec/Makefile
  • avutil/frame : Fix av_realloc_array() argument order

    3 juin, par Andreas Rheinhardt
    avutil/frame: Fix av_realloc_array() argument order
    
    This is not a real bug, but mostly cosmetic. Fixes ticket #11620.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
    
    • [DH] libavutil/frame.c