git.libav.org Git - libav.git/rss log
Libav master git repository
Les articles publiés sur le site
-
vaapi_h265 : Add main 10 encode support
30 septembre 2016, par Mark Thompson -
checkasm : aarch64 : Add filler args to make sure all parameters are passed on the...
30 septembre 2016, par Martin Storsjöcheckasm: aarch64: Add filler args to make sure all parameters are passed on the stack This, combined with clobbering the stack space prior to the call, increases the chances of finding cases where 32 bit parameters are erroneously treated as 64 bit. Signed-off-by: Martin Storsjö <martin@martin.st>
-
aarch64 : Add missing sign extension in ff_h264_idct8_add_neon
30 septembre 2016, par Martin Storsjö -
checkasm : arm/aarch64 : Fix the amount of space reserved for stack parameters
30 septembre 2016, par Martin Storsjöcheckasm: arm/aarch64: Fix the amount of space reserved for stack parameters Even if MAX_ARGS - 2 (for arm) or MAX_ARGS - 7 (for aarch64) parameters are passed on the stack to checkasm_checked_call, we actually only need to store MAX_ARGS - 4 (for arm) or MAX_ARGS - 8 (for aarch64) parameters on the stack when calling the tested function. Signed-off-by: Martin Storsjö <martin@martin.st>
-
checkasm : aarch64 : Clobber the stack before calling functions
30 septembre 2016, par Martin Storsjö