You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
avutil/hmac: support another ABI difference to the fork
spotted this and so adding it. Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
@@ -23,6 +23,7 @@
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
#include "libavutil/avconfig.h"
|
||||
/**
|
||||
* @defgroup lavu_hmac HMAC
|
||||
* @ingroup lavu_crypto
|
||||
@@ -32,7 +33,11 @@
|
||||
enum AVHMACType {
|
||||
AV_HMAC_MD5,
|
||||
AV_HMAC_SHA1,
|
||||
#if AV_HAVE_INCOMPATIBLE_LIBAV_ABI
|
||||
AV_HMAC_SHA224,
|
||||
#else
|
||||
AV_HMAC_SHA224 = 10,
|
||||
#endif
|
||||
AV_HMAC_SHA256,
|
||||
AV_HMAC_SHA384,
|
||||
AV_HMAC_SHA512,
|
||||
|
Reference in New Issue
Block a user