comparison dsputil.h @ 10113:4b99f60333ca libavcodec

Move DECLARE_ALIGNED_8 definition next to DECLARE_ALIGNED_16
author mru
date Sat, 29 Aug 2009 16:55:46 +0000
parents e3fc952dd4b2
children 8b9fc0c8f1cc
comparison
equal deleted inserted replaced
10112:e3fc952dd4b2 10113:4b99f60333ca
608 void dsputil_init_ppc(DSPContext* c, AVCodecContext *avctx); 608 void dsputil_init_ppc(DSPContext* c, AVCodecContext *avctx);
609 void dsputil_init_sh4(DSPContext* c, AVCodecContext *avctx); 609 void dsputil_init_sh4(DSPContext* c, AVCodecContext *avctx);
610 void dsputil_init_vis(DSPContext* c, AVCodecContext *avctx); 610 void dsputil_init_vis(DSPContext* c, AVCodecContext *avctx);
611 611
612 #define DECLARE_ALIGNED_16(t, v) DECLARE_ALIGNED(16, t, v) 612 #define DECLARE_ALIGNED_16(t, v) DECLARE_ALIGNED(16, t, v)
613 #define DECLARE_ALIGNED_8(t, v) DECLARE_ALIGNED(8, t, v)
613 614
614 #if HAVE_MMX 615 #if HAVE_MMX
615 616
616 #undef emms_c 617 #undef emms_c
617 618
657 658
658 #define mm_flags 0 659 #define mm_flags 0
659 #define mm_support() 0 660 #define mm_support() 0
660 661
661 #endif 662 #endif
662
663 # define DECLARE_ALIGNED_8(t, v) DECLARE_ALIGNED(8, t, v)
664 663
665 #ifndef STRIDE_ALIGN 664 #ifndef STRIDE_ALIGN
666 # define STRIDE_ALIGN 8 665 # define STRIDE_ALIGN 8
667 #endif 666 #endif
668 667