diff options
author | Måns Rullgård <mans@mansr.com> | 2010-03-06 12:40:43 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-03-06 12:40:43 +0000 |
commit | 4b9905d1dcd193b41d914de5947e8ae77fbfcdff (patch) | |
tree | af978946087dd5c85753c00ee10d8993248abfbe /libavcodec | |
parent | 3de42635bdb4b807910c53cb416625f843f92ad5 (diff) | |
download | ffmpeg-4b9905d1dcd193b41d914de5947e8ae77fbfcdff.tar.gz |
Move DECLARE_ALIGNED_{8,16} macros to mem.h
These macros naturally belong next to the generic DECLARE_ALIGNED
macro.
Originally committed as revision 22230 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/dsputil.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index eb75a5224f..44946e1a6d 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -663,9 +663,6 @@ void dsputil_init_ppc(DSPContext* c, AVCodecContext *avctx); void dsputil_init_sh4(DSPContext* c, AVCodecContext *avctx); void dsputil_init_vis(DSPContext* c, AVCodecContext *avctx); -#define DECLARE_ALIGNED_16(t, v, ...) DECLARE_ALIGNED(16, t, v) -#define DECLARE_ALIGNED_8(t, v, ...) DECLARE_ALIGNED(8, t, v) - #if HAVE_MMX #undef emms_c |