summaryrefslogtreecommitdiff
path: root/libavcodec/aac.h
diff options
context:
space:
mode:
authorReinhard Tartler <siretart@tauware.de>2011-07-01 15:32:21 +0200
committerReinhard Tartler <siretart@tauware.de>2011-07-02 13:52:29 +0200
commit21a19b7912fe0622f3d1748ff102fcc7bc7a974a (patch)
treec2628a0a5ad09d419f33feba7e4744f84ca968d9 /libavcodec/aac.h
parent7655cfb1b8d8a70e8cc4b1ca811bfc3f293768d8 (diff)
doxygen: Prefer member groups over grouping into modules
Before this, almost all module groups have been used for grouping functions and fields in structures semantically. This causes them to not appear properly in the file documentation and needlessly clutters up the "Modules" index. Additionally, this commit streamlines some spelling and appearances.
Diffstat (limited to 'libavcodec/aac.h')
-rw-r--r--libavcodec/aac.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/libavcodec/aac.h b/libavcodec/aac.h
index 76b6a7821b..4861ec0320 100644
--- a/libavcodec/aac.h
+++ b/libavcodec/aac.h
@@ -258,7 +258,7 @@ typedef struct {
DynamicRangeControl che_drc;
/**
- * @defgroup elements Channel element related data.
+ * @name Channel element related data
* @{
*/
enum ChannelPosition che_pos[4][MAX_ELEM_ID]; /**< channel element channel mapping with the
@@ -270,14 +270,15 @@ typedef struct {
/** @} */
/**
- * @defgroup temporary aligned temporary buffers (We do not want to have these on the stack.)
+ * @name temporary aligned temporary buffers
+ * (We do not want to have these on the stack.)
* @{
*/
DECLARE_ALIGNED(32, float, buf_mdct)[1024];
/** @} */
/**
- * @defgroup tables Computed / set up during initialization.
+ * @name Computed / set up during initialization
* @{
*/
FFTContext mdct;
@@ -289,7 +290,7 @@ typedef struct {
/** @} */
/**
- * @defgroup output Members used for output interleaving.
+ * @name Members used for output interleaving
* @{
*/
float *output_data[MAX_CHANNELS]; ///< Points to each element's 'ret' buffer (PCM output).