summaryrefslogtreecommitdiff
path: root/libavcodec/ppc/huffyuvdsp_altivec.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/ppc/huffyuvdsp_altivec.c')
-rw-r--r--libavcodec/ppc/huffyuvdsp_altivec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/ppc/huffyuvdsp_altivec.c b/libavcodec/ppc/huffyuvdsp_altivec.c
index 7c34a67ea4..4c16283f07 100644
--- a/libavcodec/ppc/huffyuvdsp_altivec.c
+++ b/libavcodec/ppc/huffyuvdsp_altivec.c
@@ -32,7 +32,7 @@
#include "libavutil/ppc/util_altivec.h"
#include "libavcodec/huffyuvdsp.h"
-#if HAVE_ALTIVEC
+#if HAVE_ALTIVEC && HAVE_BIGENDIAN
static void add_bytes_altivec(uint8_t *dst, uint8_t *src, int w)
{
register int i;
@@ -53,7 +53,7 @@ static void add_bytes_altivec(uint8_t *dst, uint8_t *src, int w)
av_cold void ff_huffyuvdsp_init_ppc(HuffYUVDSPContext *c)
{
-#if HAVE_ALTIVEC
+#if HAVE_ALTIVEC && HAVE_BIGENDIAN
if (!PPC_ALTIVEC(av_get_cpu_flags()))
return;