Commit 9573d389 authored by diego's avatar diego

Refactor the FOUROF macro using the AVV macro.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@12139 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent df7d4dd7
...@@ -66,12 +66,8 @@ do { \ ...@@ -66,12 +66,8 @@ do { \
} }
#ifdef __APPLE_CC__ #define FOUROF(a) AVV(a,a,a,a)
#define FOUROF(a) (a)
#else
// slower, for dumb non-apple GCC
#define FOUROF(a) {a,a,a,a}
#endif
int dct_quantize_altivec(MpegEncContext* s, int dct_quantize_altivec(MpegEncContext* s,
DCTELEM* data, int n, DCTELEM* data, int n,
int qscale, int* overflow) int qscale, int* overflow)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment