From 3d40c1ee742db5f13ebcf53c2d1fa4bf4f39bcd2 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Wed, 8 May 2013 00:57:57 +0200 Subject: x86: dsputil: Move TRANSPOSE4 macro to the only place it is used --- libavcodec/x86/cavsdsp.c | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'libavcodec/x86/cavsdsp.c') diff --git a/libavcodec/x86/cavsdsp.c b/libavcodec/x86/cavsdsp.c index 38235f0a48..83a7451c76 100644 --- a/libavcodec/x86/cavsdsp.c +++ b/libavcodec/x86/cavsdsp.c @@ -123,6 +123,17 @@ static inline void cavs_idct8_1d(int16_t *block, uint64_t bias) ); } +#define SBUTTERFLY(a,b,t,n,m)\ + "mov" #m " " #a ", " #t " \n\t" /* abcd */\ + "punpckl" #n " " #b ", " #a " \n\t" /* aebf */\ + "punpckh" #n " " #b ", " #t " \n\t" /* cgdh */\ + +#define TRANSPOSE4(a,b,c,d,t)\ + SBUTTERFLY(a,b,t,wd,q) /* a=aebf t=cgdh */\ + SBUTTERFLY(c,d,b,wd,q) /* c=imjn b=kolp */\ + SBUTTERFLY(a,c,d,dq,q) /* a=aeim d=bfjn */\ + SBUTTERFLY(t,b,c,dq,q) /* t=cgko c=dhlp */ + static void cavs_idct8_add_mmx(uint8_t *dst, int16_t *block, int stride) { int i; -- cgit v1.2.3