summaryrefslogtreecommitdiff
path: root/ffmpeg/libavcodec/rdft.c
diff options
context:
space:
mode:
authorTim Redfern <tim@eclectronics.org>2013-12-29 12:19:38 +0000
committerTim Redfern <tim@eclectronics.org>2013-12-29 12:19:38 +0000
commitf7813a5324be39d13ab536c245d15dfc602a7849 (patch)
treefad99148b88823d34a5df2f0a25881a002eb291b /ffmpeg/libavcodec/rdft.c
parentb7a5a477b8ff4d4e3028b9dfb9a9df0a41463f92 (diff)
basic type mechanism working
Diffstat (limited to 'ffmpeg/libavcodec/rdft.c')
-rw-r--r--ffmpeg/libavcodec/rdft.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ffmpeg/libavcodec/rdft.c b/ffmpeg/libavcodec/rdft.c
index ebddd8b..218dd4c 100644
--- a/ffmpeg/libavcodec/rdft.c
+++ b/ffmpeg/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);