From 3d1690b8c69c5bfad165224393bedd806e30476e Mon Sep 17 00:00:00 2001 From: James Almer Date: Fri, 16 Oct 2015 03:04:20 -0300 Subject: avutil: undo FF_API_CRYPTO_CONTEXT deprecation It's been argued that the benefits of the current implementation far outweight those of making the structs opaque. This deprecation is not present in any release, so it can be safely removed. Reviewed-by: Ronald S. Bultje Signed-off-by: James Almer --- libavutil/blowfish.h | 5 ----- 1 file changed, 5 deletions(-) (limited to 'libavutil/blowfish.h') diff --git a/libavutil/blowfish.h b/libavutil/blowfish.h index d163fd3578..9e289a40da 100644 --- a/libavutil/blowfish.h +++ b/libavutil/blowfish.h @@ -23,7 +23,6 @@ #define AVUTIL_BLOWFISH_H #include -#include "version.h" /** * @defgroup lavu_blowfish Blowfish @@ -31,16 +30,12 @@ * @{ */ -#if FF_API_CRYPTO_CONTEXT #define AV_BF_ROUNDS 16 typedef struct AVBlowfish { uint32_t p[AV_BF_ROUNDS + 2]; uint32_t s[4][256]; } AVBlowfish; -#else -typedef struct AVBlowfish AVBlowfish; -#endif /** * Allocate an AVBlowfish context. -- cgit v1.2.3