summaryrefslogtreecommitdiff
path: root/libavcodec/rdft.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-05-01 18:16:32 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-05-01 18:16:32 +0200
commit04fa81877913798bf4badfa472c8653219f2aeb1 (patch)
tree875c341ee83d0b4916b59a40fad7e4a58c9aeac4 /libavcodec/rdft.c
parentcae8f469fee7c32685f04a2b507251119d6875ef (diff)
parent088f38a4f9f54bb923405c67c9e72d96d90aa284 (diff)
Merge commit '088f38a4f9f54bb923405c67c9e72d96d90aa284'
* commit '088f38a4f9f54bb923405c67c9e72d96d90aa284': avcodec: Drop unnecessary ff_ name prefixes from static functions Conflicts: libavcodec/ass.c libavcodec/h264_parser.c libavcodec/utils.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/rdft.c')
-rw-r--r--libavcodec/rdft.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/rdft.c b/libavcodec/rdft.c
index ebddd8b56b..218dd4c249 100644
--- a/libavcodec/rdft.c
+++ b/libavcodec/rdft.c
@@ -54,7 +54,7 @@ static SINTABLE_CONST FFTSample * const ff_sin_tabs[] = {
* the two real FFTs into one complex FFT. Unmangle the results.
* ref: http://www.engineeringproductivitytools.com/stuff/T0001/PT10.HTM
*/
-static void ff_rdft_calc_c(RDFTContext* s, FFTSample* data)
+static void rdft_calc_c(RDFTContext *s, FFTSample *data)
{
int i, i1, i2;
FFTComplex ev, od;
@@ -120,7 +120,7 @@ av_cold int ff_rdft_init(RDFTContext *s, int nbits, enum RDFTransformType trans)
s->tsin[i] = sin(i*theta);
}
#endif
- s->rdft_calc = ff_rdft_calc_c;
+ s->rdft_calc = rdft_calc_c;
if (ARCH_ARM) ff_rdft_init_arm(s);