diff options
author | Maxim Poliakovski <max_pole@gmx.de> | 2013-10-02 01:55:13 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-10-02 10:21:14 +0200 |
commit | 3d80ab015fa12218289bac0b4be424186000dcff (patch) | |
tree | 15589aa99a734818cba5ccb99bfa036e1a7bb28d /libavcodec/atrac.c | |
parent | cc2330fe3a012605ffbbb1bc42d31db0f8273826 (diff) | |
download | ffmpeg-3d80ab015fa12218289bac0b4be424186000dcff.tar.gz |
atrac: Move doxygen comments to the header
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/atrac.c')
-rw-r--r-- | libavcodec/atrac.c | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/libavcodec/atrac.c b/libavcodec/atrac.c index 9787c842ca..a31af92474 100644 --- a/libavcodec/atrac.c +++ b/libavcodec/atrac.c @@ -45,10 +45,6 @@ static const float qmf_48tap_half[24] = { -0.043596379, -0.099384367, 0.13207909, 0.46424159 }; -/** - * Generate common tables - */ - av_cold void ff_atrac_generate_tables(void) { int i; @@ -67,20 +63,7 @@ av_cold void ff_atrac_generate_tables(void) } } - -/** - * Quadrature mirror synthesis filter. - * - * @param inlo lower part of spectrum - * @param inhi higher part of spectrum - * @param nIn size of spectrum buffer - * @param pOut out buffer - * @param delayBuf delayBuf buffer - * @param temp temp buffer - */ - - -void ff_atrac_iqmf (float *inlo, float *inhi, unsigned int nIn, float *pOut, float *delayBuf, float *temp) +void ff_atrac_iqmf(float *inlo, float *inhi, unsigned int nIn, float *pOut, float *delayBuf, float *temp) { int i, j; float *p1, *p3; |