X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavutil%2Fhmac.c;h=e277fd7701d90861f7d462f2f3c709008cb5f08b;hb=a240097ecd4fb1639db99e7becb888ae478405cd;hp=d064a105f420f95c14ea9c4149b566a252c65353;hpb=6fc762b4fd2c28ef7a0689a1df5ce200e5f5948f;p=ffmpeg diff --git a/libavutil/hmac.c b/libavutil/hmac.c index d064a105f42..e277fd7701d 100644 --- a/libavutil/hmac.c +++ b/libavutil/hmac.c @@ -34,11 +34,7 @@ #define MAX_BLOCKLEN 128 typedef void (*hmac_final)(void *ctx, uint8_t *dst); -#if FF_API_CRYPTO_SIZE_T -typedef void (*hmac_update)(void *ctx, const uint8_t *src, int len); -#else typedef void (*hmac_update)(void *ctx, const uint8_t *src, size_t len); -#endif typedef void (*hmac_init)(void *ctx); struct AVHMAC {