aboutsummaryrefslogtreecommitdiff
path: root/include/pcm.h
diff options
context:
space:
mode:
authorDavid Henningsson <david.henningsson@canonical.com>2015-08-24 20:37:29 +0200
committerTakashi Iwai <tiwai@suse.de>2015-08-24 22:26:11 +0200
commit3313f8740d936b1dbc6391ce3227ba467c6f603d (patch)
treec87464e07e93ea7079e0f0ed75a4af0fffe3b408 /include/pcm.h
parent5b518c91594d3b0c8847a87d9b65877f74c7a87b (diff)
pcm: Fix doxygen for two enums
The doxygen comments were wrong, making doxygen output weird. Signed-off-by: David Henningsson <david.henningsson@canonical.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'include/pcm.h')
-rw-r--r--include/pcm.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/pcm.h b/include/pcm.h
index a1d14a98..0be1a321 100644
--- a/include/pcm.h
+++ b/include/pcm.h
@@ -324,9 +324,9 @@ typedef enum _snd_pcm_tstamp {
} snd_pcm_tstamp_t;
typedef enum _snd_pcm_tstamp_type {
- SND_PCM_TSTAMP_TYPE_GETTIMEOFDAY = 0, /** gettimeofday equivalent */
- SND_PCM_TSTAMP_TYPE_MONOTONIC, /** posix_clock_monotonic equivalent */
- SND_PCM_TSTAMP_TYPE_MONOTONIC_RAW, /** monotonic_raw (no NTP) */
+ SND_PCM_TSTAMP_TYPE_GETTIMEOFDAY = 0, /**< gettimeofday equivalent */
+ SND_PCM_TSTAMP_TYPE_MONOTONIC, /**< posix_clock_monotonic equivalent */
+ SND_PCM_TSTAMP_TYPE_MONOTONIC_RAW, /**< monotonic_raw (no NTP) */
SND_PCM_TSTAMP_TYPE_LAST = SND_PCM_TSTAMP_TYPE_MONOTONIC_RAW,
} snd_pcm_tstamp_type_t;
@@ -527,11 +527,11 @@ int snd_pcm_unlink(snd_pcm_t *pcm);
/** channel map list type */
enum snd_pcm_chmap_type {
- SND_CHMAP_TYPE_NONE = 0,/** unspecified channel position */
- SND_CHMAP_TYPE_FIXED, /** fixed channel position */
- SND_CHMAP_TYPE_VAR, /** freely swappable channel position */
- SND_CHMAP_TYPE_PAIRED, /** pair-wise swappable channel position */
- SND_CHMAP_TYPE_LAST = SND_CHMAP_TYPE_PAIRED, /** last entry */
+ SND_CHMAP_TYPE_NONE = 0,/**< unspecified channel position */
+ SND_CHMAP_TYPE_FIXED, /**< fixed channel position */
+ SND_CHMAP_TYPE_VAR, /**< freely swappable channel position */
+ SND_CHMAP_TYPE_PAIRED, /**< pair-wise swappable channel position */
+ SND_CHMAP_TYPE_LAST = SND_CHMAP_TYPE_PAIRED, /**< last entry */
};
/** channel positions */