# HG changeset patch # User michael # Date 1086714077 0 # Node ID a8100a516b0a2cd297a462a1daec16f5c496a037 # Parent 4a0ec90318049eebbec76c36b18f30390666366c gcc bug workaround by (Jonathan Gray ) diff -r 4a0ec9031804 -r a8100a516b0a svq1.c --- a/svq1.c Tue Jun 08 02:41:41 2004 +0000 +++ b/svq1.c Tue Jun 08 17:01:17 2004 +0000 @@ -914,6 +914,9 @@ #define QUALITY_THRESHOLD 100 #define THRESHOLD_MULTIPLIER 0.6 +#if defined(HAVE_ALTIVEC) +#undef vector +#endif static int encode_block(SVQ1Context *s, uint8_t *src, uint8_t *ref, uint8_t *decoded, int stride, int level, int threshold, int lambda, int intra){ int count, y, x, i, j, split, best_mean, best_score, best_count;