]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/celp_math.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavcodec / celp_math.c
index d85277f2097adc32e11e2b79ee2310ae09a7f9e3..443bd7f0e70c99864b2f5adc32a6cb00024b2c7d 100644 (file)
@@ -218,3 +218,11 @@ float ff_dot_productf(const float* a, const float* b, int length)
 
     return sum;
 }
+
+void ff_celp_math_init(CELPMContext *c)
+{
+    c->dot_productf   = ff_dot_productf;
+
+    if(HAVE_MIPSFPU)
+        ff_celp_math_init_mips(c);
+}