This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
avutil/hmac: support another ABI difference to the fork
spotted this and so adding it. Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n2.8
Michael Niedermayer
10 years ago
parent
865564c466
commit
8c5cc7b7fb
1 changed files
with
5 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+5
-0
libavutil/hmac.h
+ 5
- 0
libavutil/hmac.h
View File
@@ -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,
Write
Preview
Loading…
Cancel
Save