On Sat, Oct 1, 2016 at 3:30 PM, Luca Barbato <lu_z...@gentoo.org> wrote:
> Confirmed to work by checkasm.
> ---
>  libavcodec/ppc/huffyuvdsp_altivec.c | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/libavcodec/ppc/huffyuvdsp_altivec.c 
> b/libavcodec/ppc/huffyuvdsp_altivec.c
> index 337328a..7c34a67 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 && HAVE_BIGENDIAN
> +#if HAVE_ALTIVEC
>  static void add_bytes_altivec(uint8_t *dst, uint8_t *src, int w)
>  {
>      register int i;
> @@ -49,14 +49,14 @@ static void add_bytes_altivec(uint8_t *dst, uint8_t *src, 
> int w)
>      for (; i < w; i++)
>          dst[i] = src[i];
>  }
> -#endif /* HAVE_ALTIVEC && HAVE_BIGENDIAN */
> +#endif /* HAVE_ALTIVEC */
>
>  av_cold void ff_huffyuvdsp_init_ppc(HuffYUVDSPContext *c)
>  {
> -#if HAVE_ALTIVEC && HAVE_BIGENDIAN
> +#if HAVE_ALTIVEC
>      if (!PPC_ALTIVEC(av_get_cpu_flags()))
>          return;
>
>      c->add_bytes = add_bytes_altivec;
> -#endif /* HAVE_ALTIVEC && HAVE_BIGENDIAN */
> +#endif /* HAVE_ALTIVEC */
>  }
> --

Maybe mention the hash that broke the optimization?
Ok either way.
-- 
Vittorio
_______________________________________________
libav-devel mailing list
libav-devel@libav.org
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to