|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "libavutil/loongarch/cpu.h" |
|
#include "libavcodec/hpeldsp.h" |
|
#include "libavcodec/loongarch/hpeldsp_lasx.h" |
|
|
|
void ff_hpeldsp_init_loongarch(HpelDSPContext *c, int flags) |
|
{ |
|
int cpu_flags = av_get_cpu_flags(); |
|
|
|
if (have_lasx(cpu_flags)) { |
|
c->put_pixels_tab[0][0] = ff_put_pixels16_8_lsx; |
|
c->put_pixels_tab[0][1] = ff_put_pixels16_x2_8_lasx; |
|
c->put_pixels_tab[0][2] = ff_put_pixels16_y2_8_lasx; |
|
c->put_pixels_tab[0][3] = ff_put_pixels16_xy2_8_lasx; |
|
|
|
c->put_pixels_tab[1][0] = ff_put_pixels8_8_lasx; |
|
c->put_pixels_tab[1][1] = ff_put_pixels8_x2_8_lasx; |
|
c->put_pixels_tab[1][2] = ff_put_pixels8_y2_8_lasx; |
|
c->put_pixels_tab[1][3] = ff_put_pixels8_xy2_8_lasx; |
|
c->put_no_rnd_pixels_tab[0][0] = ff_put_pixels16_8_lsx; |
|
c->put_no_rnd_pixels_tab[0][1] = ff_put_no_rnd_pixels16_x2_8_lasx; |
|
c->put_no_rnd_pixels_tab[0][2] = ff_put_no_rnd_pixels16_y2_8_lasx; |
|
c->put_no_rnd_pixels_tab[0][3] = ff_put_no_rnd_pixels16_xy2_8_lasx; |
|
|
|
c->put_no_rnd_pixels_tab[1][0] = ff_put_pixels8_8_lasx; |
|
c->put_no_rnd_pixels_tab[1][1] = ff_put_no_rnd_pixels8_x2_8_lasx; |
|
c->put_no_rnd_pixels_tab[1][2] = ff_put_no_rnd_pixels8_y2_8_lasx; |
|
c->put_no_rnd_pixels_tab[1][3] = ff_put_no_rnd_pixels8_xy2_8_lasx; |
|
} |
|
} |
|
|