lavc/aarch64: Hook up the existing ff_pix_abs16_neon to the sad[0] function pointer

Signed-off-by: Hubert Mazur <hum@semihalf.com>
Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
Hubert Mazur 2022-06-29 10:24:39 +02:00 committed by Martin Storsjö
parent 846488cca8
commit eb7ab3928f
1 changed files with 2 additions and 0 deletions

View File

@ -35,5 +35,7 @@ av_cold void ff_me_cmp_init_aarch64(MECmpContext *c, AVCodecContext *avctx)
if (have_neon(cpu_flags)) {
c->pix_abs[0][0] = ff_pix_abs16_neon;
c->pix_abs[0][3] = ff_pix_abs16_xy2_neon;
c->sad[0] = ff_pix_abs16_neon;
}
}