]> git.sesse.net Git - ffmpeg/blobdiff - libavutil/hmac.c
swscale/utils: If the source has no alpha then disable alpha blendaway
[ffmpeg] / libavutil / hmac.c
index 0cf4cd6b25d7351992f9e734f4daf5b8572e9e30..3e11509a278e0e6a999b108cb08949eb1e6f7a7b 100644 (file)
@@ -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;