Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Poliakovski <max_pole@gmx.de>2013-10-02 03:55:13 +0400
committerMichael Niedermayer <michaelni@gmx.at>2013-10-02 12:21:14 +0400
commit3d80ab015fa12218289bac0b4be424186000dcff (patch)
tree15589aa99a734818cba5ccb99bfa036e1a7bb28d /libavcodec/atrac.h
parentcc2330fe3a012605ffbbb1bc42d31db0f8273826 (diff)
atrac: Move doxygen comments to the header
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/atrac.h')
-rw-r--r--libavcodec/atrac.h16
1 files changed, 15 insertions, 1 deletions
diff --git a/libavcodec/atrac.h b/libavcodec/atrac.h
index 18b4fddf40..164be65e0c 100644
--- a/libavcodec/atrac.h
+++ b/libavcodec/atrac.h
@@ -31,7 +31,21 @@
extern float ff_atrac_sf_table[64];
+/**
+ * Generate common tables.
+ */
void ff_atrac_generate_tables(void);
-void ff_atrac_iqmf (float *inlo, float *inhi, unsigned int nIn, float *pOut, float *delayBuf, float *temp);
+
+/**
+ * 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);
#endif /* AVCODEC_ATRAC_H */