|
|
|
@@ -444,20 +444,22 @@ static void avg_pixels8_xy2_altivec(uint8_t *block, const uint8_t *pixels, ptrdi |
|
|
|
} |
|
|
|
#endif /* HAVE_ALTIVEC */ |
|
|
|
|
|
|
|
void ff_hpeldsp_init_ppc(HpelDSPContext* c, int flags) |
|
|
|
av_cold void ff_hpeldsp_init_ppc(HpelDSPContext *c, int flags) |
|
|
|
{ |
|
|
|
#if HAVE_ALTIVEC |
|
|
|
int mm_flags = av_get_cpu_flags(); |
|
|
|
|
|
|
|
if (mm_flags & AV_CPU_FLAG_ALTIVEC) { |
|
|
|
c->put_pixels_tab[0][0] = ff_put_pixels16_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->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[1][3] = put_pixels8_xy2_altivec; |
|
|
|
c->put_no_rnd_pixels_tab[1][3] = put_no_rnd_pixels8_xy2_altivec; |
|
|
|
c->put_pixels_tab[0][3] = put_pixels16_xy2_altivec; |
|
|
|
c->put_no_rnd_pixels_tab[0][3] = put_no_rnd_pixels16_xy2_altivec; |
|
|
|
} |
|
|
|
#endif /* HAVE_ALTIVEC */ |
|
|
|
|