mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-10-29 05:40:25 -04:00
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>
This commit is contained in:
parent
5b518c9159
commit
3313f8740d
1 changed files with 8 additions and 8 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue