1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

checkasm: add a verbose check function for uint32_t data

This commit is contained in:
James Darnley 2022-10-26 17:51:36 +02:00
parent 0f252dfa95
commit 1936c06f02
2 changed files with 2 additions and 0 deletions

View File

@ -918,5 +918,6 @@ int checkasm_check_##type(const char *const file, const int line, \
DEF_CHECKASM_CHECK_FUNC(uint8_t, "%02x")
DEF_CHECKASM_CHECK_FUNC(uint16_t, "%04x")
DEF_CHECKASM_CHECK_FUNC(uint32_t, "%08x")
DEF_CHECKASM_CHECK_FUNC(int16_t, "%6d")
DEF_CHECKASM_CHECK_FUNC(int32_t, "%9d")

View File

@ -296,6 +296,7 @@ int checkasm_check_##type(const char *const file, const int line, \
DECL_CHECKASM_CHECK_FUNC(uint8_t);
DECL_CHECKASM_CHECK_FUNC(uint16_t);
DECL_CHECKASM_CHECK_FUNC(uint32_t);
DECL_CHECKASM_CHECK_FUNC(int16_t);
DECL_CHECKASM_CHECK_FUNC(int32_t);