view ppc/dsputil_ppc.c @ 808:e9bfaabcf07d libavcodec

fixed nb_block_sizes detection - fixed codec_id test (avctx->codec_id does not need to be initialized)
author bellard
date Thu, 31 Oct 2002 00:07:13 +0000
parents 14d84a5e77a4
children ace3ccd18dd2
line wrap: on
line source

#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 */
    }
}