]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/mpegaudiodsp.c
H.264: make filter_mb_fast support the case of unavailable top mb
[ffmpeg] / libavcodec / mpegaudiodsp.c
index 57fe962b911f13172f3294349351f6af46f18a1e..438b097d06ba48b5b6c007bc6f0a5cbb76d4020d 100644 (file)
@@ -35,6 +35,7 @@ void ff_mpadsp_init(MPADSPContext *s)
     s->dct32_float = dct.dct32;
     s->dct32_fixed = ff_dct32_fixed;
 
+    if (ARCH_ARM)     ff_mpadsp_init_arm(s);
     if (HAVE_MMX)     ff_mpadsp_init_mmx(s);
     if (HAVE_ALTIVEC) ff_mpadsp_init_altivec(s);
 }