]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/videodsp.c
avcodec/motionpixels: use av_mallocz_array()
[ffmpeg] / libavcodec / videodsp.c
index 13e4a7b4b142aeb9ce78865bc358f7d1e165a6d6..ba618a7bbc6dd6a75cc9b84da83ec382d67ad642 100644 (file)
@@ -44,6 +44,8 @@ av_cold void ff_videodsp_init(VideoDSPContext *ctx, int bpc)
         ctx->emulated_edge_mc = ff_emulated_edge_mc_16;
     }
 
+    if (ARCH_AARCH64)
+        ff_videodsp_init_aarch64(ctx, bpc);
     if (ARCH_ARM)
         ff_videodsp_init_arm(ctx, bpc);
     if (ARCH_PPC)