diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-11-11 13:45:34 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-11-11 13:45:34 +0000 |
commit | 810ddddbc0d5f6587b9154115fa60d546d728310 (patch) | |
tree | 67256930a6cd947fb3f09b070b19dedd4fbbcd10 /src/libffmpeg/libavcodec/mdct.c | |
parent | e38a8cca2c6be40954a44f167f7cc9fac0813ede (diff) | |
download | xine-lib-810ddddbc0d5f6587b9154115fa60d546d728310.tar.gz xine-lib-810ddddbc0d5f6587b9154115fa60d546d728310.tar.bz2 |
sync ffmpeg
- add wma decoder
- fix mmx macro
- remove changes from fdct_mmx.c (it should work fine now with the mmx macro fix)
CVS patchset: 3234
CVS date: 2002/11/11 13:45:34
Diffstat (limited to 'src/libffmpeg/libavcodec/mdct.c')
-rw-r--r-- | src/libffmpeg/libavcodec/mdct.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/libffmpeg/libavcodec/mdct.c b/src/libffmpeg/libavcodec/mdct.c index baab5d315..0f70ed850 100644 --- a/src/libffmpeg/libavcodec/mdct.c +++ b/src/libffmpeg/libavcodec/mdct.c @@ -21,7 +21,7 @@ /* * init MDCT or IMDCT computation */ -int mdct_init(MDCTContext *s, int nbits, int inverse) +int ff_mdct_init(MDCTContext *s, int nbits, int inverse) { int n, n4, i; float alpha; @@ -69,8 +69,8 @@ int mdct_init(MDCTContext *s, int nbits, int inverse) * @param input N/2 samples * @param tmp N/2 samples */ -void imdct_calc(MDCTContext *s, FFTSample *output, - const FFTSample *input, FFTSample *tmp) +void ff_imdct_calc(MDCTContext *s, FFTSample *output, + const FFTSample *input, FFTSample *tmp) { int k, n8, n4, n2, n, j; const uint16_t *revtab = s->fft.revtab; @@ -121,8 +121,8 @@ void imdct_calc(MDCTContext *s, FFTSample *output, * @param out N/2 samples * @param tmp temporary storage of N/2 samples */ -void mdct_calc(MDCTContext *s, FFTSample *out, - const FFTSample *input, FFTSample *tmp) +void ff_mdct_calc(MDCTContext *s, FFTSample *out, + const FFTSample *input, FFTSample *tmp) { int i, j, n, n8, n4, n2, n3; FFTSample re, im, re1, im1; @@ -162,7 +162,7 @@ void mdct_calc(MDCTContext *s, FFTSample *out, } } -void mdct_end(MDCTContext *s) +void ff_mdct_end(MDCTContext *s) { av_freep(&s->tcos); av_freep(&s->tsin); |