summaryrefslogtreecommitdiff
path: root/libavutil
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2015-06-20 03:36:39 -0300
committerJames Almer <jamrial@gmail.com>2015-06-20 03:39:09 -0300
commit6fb96afdd66c514259e17fff5049b4219adf58b2 (patch)
tree24e25ff5470a9e23ab60e852c174e2c74ee21c6a /libavutil
parent5358953cdfb8fe16e2d9d8cc5df4b417935c6bf2 (diff)
avutil/fixed_dsp: remove ff_ prefix from static function
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavutil')
-rw-r--r--libavutil/fixed_dsp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavutil/fixed_dsp.c b/libavutil/fixed_dsp.c
index 8b25156c05..c2f270d453 100644
--- a/libavutil/fixed_dsp.c
+++ b/libavutil/fixed_dsp.c
@@ -121,7 +121,7 @@ static void vector_fmul_c(int *dst, const int *src0, const int *src1, int len)
}
}
-static int ff_scalarproduct_fixed_c(const int *v1, const int *v2, int len)
+static int scalarproduct_fixed_c(const int *v1, const int *v2, int len)
{
/** p is initialized with 0x40000000 so that the proper rounding will occur
* at the end */
@@ -158,7 +158,7 @@ AVFixedDSPContext * avpriv_alloc_fixed_dsp(int bit_exact)
fdsp->vector_fmul_add = vector_fmul_add_c;
fdsp->vector_fmul_reverse = vector_fmul_reverse_c;
fdsp->butterflies_fixed = butterflies_fixed_c;
- fdsp->scalarproduct_fixed = ff_scalarproduct_fixed_c;
+ fdsp->scalarproduct_fixed = scalarproduct_fixed_c;
return fdsp;
}