|
|
|
@ -449,18 +449,19 @@ static void avg_pixels8_xy2_altivec(uint8_t *block, const uint8_t *pixels, ptrdi |
|
|
|
|
av_cold void ff_hpeldsp_init_ppc(HpelDSPContext *c, int flags) |
|
|
|
|
{ |
|
|
|
|
#if HAVE_ALTIVEC |
|
|
|
|
if (av_get_cpu_flags() & AV_CPU_FLAG_ALTIVEC) { |
|
|
|
|
c->avg_pixels_tab[0][0] = ff_avg_pixels16_altivec; |
|
|
|
|
c->avg_pixels_tab[1][0] = avg_pixels8_altivec; |
|
|
|
|
c->avg_pixels_tab[1][3] = avg_pixels8_xy2_altivec; |
|
|
|
|
|
|
|
|
|
c->put_pixels_tab[0][0] = ff_put_pixels16_altivec; |
|
|
|
|
c->put_pixels_tab[1][3] = put_pixels8_xy2_altivec; |
|
|
|
|
c->put_pixels_tab[0][3] = put_pixels16_xy2_altivec; |
|
|
|
|
|
|
|
|
|
c->put_no_rnd_pixels_tab[0][0] = ff_put_pixels16_altivec; |
|
|
|
|
c->put_no_rnd_pixels_tab[1][3] = put_no_rnd_pixels8_xy2_altivec; |
|
|
|
|
c->put_no_rnd_pixels_tab[0][3] = put_no_rnd_pixels16_xy2_altivec; |
|
|
|
|
} |
|
|
|
|
if (!(av_get_cpu_flags() & AV_CPU_FLAG_ALTIVEC)) |
|
|
|
|
return; |
|
|
|
|
|
|
|
|
|
c->avg_pixels_tab[0][0] = ff_avg_pixels16_altivec; |
|
|
|
|
c->avg_pixels_tab[1][0] = avg_pixels8_altivec; |
|
|
|
|
c->avg_pixels_tab[1][3] = avg_pixels8_xy2_altivec; |
|
|
|
|
|
|
|
|
|
c->put_pixels_tab[0][0] = ff_put_pixels16_altivec; |
|
|
|
|
c->put_pixels_tab[1][3] = put_pixels8_xy2_altivec; |
|
|
|
|
c->put_pixels_tab[0][3] = put_pixels16_xy2_altivec; |
|
|
|
|
|
|
|
|
|
c->put_no_rnd_pixels_tab[0][0] = ff_put_pixels16_altivec; |
|
|
|
|
c->put_no_rnd_pixels_tab[1][3] = put_no_rnd_pixels8_xy2_altivec; |
|
|
|
|
c->put_no_rnd_pixels_tab[0][3] = put_no_rnd_pixels16_xy2_altivec; |
|
|
|
|
#endif /* HAVE_ALTIVEC */ |
|
|
|
|
} |
|
|
|
|