1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-07-20 11:14:12 +02:00

avcodec/lossless_videodsp: add missing call to ff_llviddsp_init_ppc()

Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
James Almer 2017-01-12 22:56:50 -03:00
parent 6d4c9f2ade
commit 6596b34954

View File

@ -107,6 +107,8 @@ void ff_llviddsp_init(LLVidDSPContext *c)
c->add_left_pred_int16 = add_left_pred_int16_c;
if (ARCH_PPC)
ff_llviddsp_init_ppc(c);
if (ARCH_X86)
ff_llviddsp_init_x86(c);
}