comparison dsputil.h @ 3728:4d346abd723c libavcodec

ADI Blackfin optimizations patch by Michael Benjamin, neuroptik gmail com
author diego
date Sat, 16 Sep 2006 22:26:09 +0000
parents 9d942506b1f2
children 2ec498208c6a
comparison
equal deleted inserted replaced
3727:eae401c5bf30 3728:4d346abd723c
569 #define DECLARE_ALIGNED_8(t,v) t v __attribute__ ((aligned (8))) 569 #define DECLARE_ALIGNED_8(t,v) t v __attribute__ ((aligned (8)))
570 #define STRIDE_ALIGN 8 570 #define STRIDE_ALIGN 8
571 571
572 void dsputil_init_sh4(DSPContext* c, AVCodecContext *avctx); 572 void dsputil_init_sh4(DSPContext* c, AVCodecContext *avctx);
573 573
574 #elif defined(ARCH_BFIN)
575
576 #define DECLARE_ALIGNED_8(t,v) t v __attribute__ ((aligned (8)))
577 #define STRIDE_ALIGN 8
578
579 void dsputil_init_bfin(DSPContext* c, AVCodecContext *avctx);
580
574 #else 581 #else
575 582
576 #define DECLARE_ALIGNED_8(t,v) t v __attribute__ ((aligned (8))) 583 #define DECLARE_ALIGNED_8(t,v) t v __attribute__ ((aligned (8)))
577 #define STRIDE_ALIGN 8 584 #define STRIDE_ALIGN 8
578 585