summaryrefslogtreecommitdiff
path: root/libavutil/hmac.c
diff options
context:
space:
mode:
authorHendrik Leppkes <h.leppkes@gmail.com>2015-09-05 18:01:38 +0200
committerHendrik Leppkes <h.leppkes@gmail.com>2015-09-05 18:07:20 +0200
commit137f0759933390ecbde2bff0e009deabb4273c72 (patch)
treea2144da021098c3100c594520dc082e7e037f43e /libavutil/hmac.c
parent545559e43db5c55924bb9ecedf7465fa58f2f9a6 (diff)
lavu/hmac: remove deprecated type ids
Diffstat (limited to 'libavutil/hmac.c')
-rw-r--r--libavutil/hmac.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/libavutil/hmac.c b/libavutil/hmac.c
index 0cf4cd6b25..3e11509a27 100644
--- a/libavutil/hmac.c
+++ b/libavutil/hmac.c
@@ -81,9 +81,6 @@ AVHMAC *av_hmac_alloc(enum AVHMACType type)
c->hash = av_sha_alloc();
break;
case AV_HMAC_SHA224:
-#if FF_API_HMAC
- case AV_HMAC_SHA224_DEPRECATED:
-#endif
c->blocklen = 64;
c->hashlen = 28;
c->init = sha224_init;
@@ -92,9 +89,6 @@ AVHMAC *av_hmac_alloc(enum AVHMACType type)
c->hash = av_sha_alloc();
break;
case AV_HMAC_SHA256:
-#if FF_API_HMAC
- case AV_HMAC_SHA256_DEPRECATED:
-#endif
c->blocklen = 64;
c->hashlen = 32;
c->init = sha256_init;