git.videolan.org Git - ffmpeg.git/rss log
FFmpeg git repo
Les articles publiés sur le site
-
avcodec/hashtable : Only align complete entries
3 juin, par Andreas Rheinhardtavcodec/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>
-
tests/fate/libavcodec : Run hashtable test
3 juin, par Andreas Rheinhardt -
avcodec/hashtable : Zero-initialize hashtable
3 juin, par Andreas Rheinhardtavcodec/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>
-
avcodec/Makefile : Only compile hashtable.o when needed
3 juin, par Andreas Rheinhardt -
avutil/frame : Fix av_realloc_array() argument order
3 juin, par Andreas Rheinhardt