comparison dsputil.h @ 5703:ec04964a1d1a libavcodec

VIS-specific code should be enabled conditional to HAVE_VIS, not ARCH_SPARC.
author diego
date Sun, 23 Sep 2007 21:59:09 +0000
parents 8691652d9dce
children d7970c9e3049
comparison
equal deleted inserted replaced
5702:72c65bca55db 5703:ec04964a1d1a
536 536
537 /* SPARC/VIS IDCT needs 8-byte aligned DCT blocks */ 537 /* SPARC/VIS IDCT needs 8-byte aligned DCT blocks */
538 #define DECLARE_ALIGNED_8(t, v) DECLARE_ALIGNED(8, t, v) 538 #define DECLARE_ALIGNED_8(t, v) DECLARE_ALIGNED(8, t, v)
539 #define STRIDE_ALIGN 8 539 #define STRIDE_ALIGN 8
540 540
541 #elif defined(ARCH_SPARC) 541 #elif defined(HAVE_VIS)
542 542
543 /* SPARC/VIS IDCT needs 8-byte aligned DCT blocks */ 543 /* SPARC/VIS IDCT needs 8-byte aligned DCT blocks */
544 #define DECLARE_ALIGNED_8(t, v) DECLARE_ALIGNED(8, t, v) 544 #define DECLARE_ALIGNED_8(t, v) DECLARE_ALIGNED(8, t, v)
545 #define STRIDE_ALIGN 8 545 #define STRIDE_ALIGN 8
546 546