]> git.sesse.net Git - ffmpeg/blobdiff - libavutil/blowfish.h
ffmpeg: When streamcopying, only add the input seek position when copying timestamps.
[ffmpeg] / libavutil / blowfish.h
index d163fd3578becff370973ab651596d3a2fbfdf1e..9e289a40dabe535dc151a2345f49a753f3f640e2 100644 (file)
@@ -23,7 +23,6 @@
 #define AVUTIL_BLOWFISH_H
 
 #include <stdint.h>
-#include "version.h"
 
 /**
  * @defgroup lavu_blowfish Blowfish
  * @{
  */
 
-#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.