comparison dsputil.h @ 11368:3d4f64b8fb10 libavcodec

Move DECLARE_ALIGNED_{8,16} macros to mem.h These macros naturally belong next to the generic DECLARE_ALIGNED macro.
author mru
date Sat, 06 Mar 2010 12:40:43 +0000
parents 0fc1cdd984b7
children 98970e51365a
comparison
equal deleted inserted replaced
11367:fec27e2a7570 11368:3d4f64b8fb10
661 void dsputil_init_mmx(DSPContext* c, AVCodecContext *avctx); 661 void dsputil_init_mmx(DSPContext* c, AVCodecContext *avctx);
662 void dsputil_init_ppc(DSPContext* c, AVCodecContext *avctx); 662 void dsputil_init_ppc(DSPContext* c, AVCodecContext *avctx);
663 void dsputil_init_sh4(DSPContext* c, AVCodecContext *avctx); 663 void dsputil_init_sh4(DSPContext* c, AVCodecContext *avctx);
664 void dsputil_init_vis(DSPContext* c, AVCodecContext *avctx); 664 void dsputil_init_vis(DSPContext* c, AVCodecContext *avctx);
665 665
666 #define DECLARE_ALIGNED_16(t, v, ...) DECLARE_ALIGNED(16, t, v)
667 #define DECLARE_ALIGNED_8(t, v, ...) DECLARE_ALIGNED(8, t, v)
668
669 #if HAVE_MMX 666 #if HAVE_MMX
670 667
671 #undef emms_c 668 #undef emms_c
672 669
673 static inline void emms(void) 670 static inline void emms(void)