> ---
>  libavcodec/dct-test.c |    6 +++---
>  1 files changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/libavcodec/dct-test.c b/libavcodec/dct-test.c
> index 2c59cd9..1787ef6 100644
> --- a/libavcodec/dct-test.c
> +++ b/libavcodec/dct-test.c
> @@ -53,8 +53,8 @@ void ff_bfin_idct(DCTELEM *block);
>  void ff_bfin_fdct(DCTELEM *block);
>
>  // ALTIVEC
> -void fdct_altivec(DCTELEM *block);
> -//void idct_altivec(DCTELEM *block);?? no routine
> +void ff_fdct_altivec(DCTELEM *block);
> +//void ff_idct_altivec(DCTELEM *block);?? no routine
>
>  // ARM
>  void ff_j_rev_dct_arm(DCTELEM *data);
> @@ -95,7 +95,7 @@ static const struct algo fdct_tab[] = {
>  #endif
>
>  #if HAVE_ALTIVEC
> -    { "altivecfdct",    fdct_altivec,          NO_PERM,
> AV_CPU_FLAG_ALTIVEC },
> +    { "altivecfdct",    ff_fdct_altivec,       NO_PERM,
> AV_CPU_FLAG_ALTIVEC },
>  #endif
>
>  #if ARCH_BFIN
> --
> 1.7.3.1

Thanks. This fixes the problem on my PPC machine.

--
    -Mike Melanson

_______________________________________________
libav-devel mailing list
libav-devel@libav.org
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to