view ppc/dsputil_ppc.c @ 747:3d4377531f6c libavcodec

mpeg4 header parser clenup (needed for parsing of VOL header in avctx->extradata)
author michaelni
date Mon, 14 Oct 2002 12:21:54 +0000
parents 0012f75c92bb
children 14d84a5e77a4
line wrap: on
line source

#include "../../config.h"
#include "../dsputil.h"

#ifdef HAVE_ALTIVEC
#include "dsputil_altivec.h"
#endif

void dsputil_init_ppc(void)
{
#if HAVE_ALTIVEC
    if (has_altivec()) {
        pix_abs16x16 = pix_abs16x16_altivec;
        pix_abs8x8 = pix_abs8x8_altivec;
        pix_sum = pix_sum_altivec;
    } else
#endif
    {
        /* Non-AltiVec PPC optimisations here */
    }
}