diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-02-08 15:55:52 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-02-13 20:23:39 +0100 |
commit | c6507946d428ee082676d5917fbb3eb0d1d7eb2e (patch) | |
tree | fbb72fc9588bb89559975e09aa84955a1680155b /libavcodec/dsputil.h | |
parent | 157542ebc15dd175e5b4d14ffa92afd74ab4a991 (diff) | |
download | ffmpeg-c6507946d428ee082676d5917fbb3eb0d1d7eb2e.tar.gz |
dsputil: Move STRIDE_ALIGN macro to the only place it is used
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index 4b697ef9fa..f95077f0f4 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -397,10 +397,4 @@ void ff_dsputil_init_ppc(DSPContext* c, AVCodecContext *avctx); void ff_dsputil_init_sh4(DSPContext* c, AVCodecContext *avctx); void ff_dsputil_init_vis(DSPContext* c, AVCodecContext *avctx); -#if (ARCH_ARM && HAVE_NEON) || ARCH_PPC || HAVE_MMX -# define STRIDE_ALIGN 16 -#else -# define STRIDE_ALIGN 8 -#endif - #endif /* AVCODEC_DSPUTIL_H */ |