]> git.sesse.net Git - ffmpeg/blobdiff - libavutil/mem.h
avcodec/avcodec.h: Add encryption info side data.
[ffmpeg] / libavutil / mem.h
index 9e344bd2c33558c53e7292b11ea1d4014878f6df..7e0b12a8a782cef6bebe93374fcc1fbb7351d8fb 100644 (file)
     #define DECLARE_ASM_CONST(n,t,v)    const t __attribute__ ((aligned (n))) v
 #elif defined(__DJGPP__)
     #define DECLARE_ALIGNED(n,t,v)      t __attribute__ ((aligned (FFMIN(n, 16)))) v
+    #define DECLARE_ASM_ALIGNED(n,t,v)  t av_used __attribute__ ((aligned (FFMIN(n, 16)))) v
     #define DECLARE_ASM_CONST(n,t,v)    static const t av_used __attribute__ ((aligned (FFMIN(n, 16)))) v
 #elif defined(__GNUC__) || defined(__clang__)
     #define DECLARE_ALIGNED(n,t,v)      t __attribute__ ((aligned (n))) v