Add SND_PCM_TSTAMP_MMAP back

SND_PCM_TSTAMP_MMAP is used (blidnly) by portaudio, unfortunately.
Re-added it not to break API.
This commit is contained in:
Takashi Iwai 2008-01-14 17:15:13 +01:00
parent 50ce5d049e
commit bf004f1c52

View file

@ -283,6 +283,10 @@ typedef enum _snd_pcm_tstamp {
SND_PCM_TSTAMP_NONE = 0, SND_PCM_TSTAMP_NONE = 0,
/** Update timestamp at every hardware position update */ /** Update timestamp at every hardware position update */
SND_PCM_TSTAMP_ENABLE, SND_PCM_TSTAMP_ENABLE,
/** Equivalent with #SND_PCM_TSTAMP_ENABLE,
* just for compatibility with older versions
*/
SND_PCM_TSTAMP_MMAP = SND_PCM_TSTAMP_ENABLE,
SND_PCM_TSTAMP_LAST = SND_PCM_TSTAMP_ENABLE SND_PCM_TSTAMP_LAST = SND_PCM_TSTAMP_ENABLE
} snd_pcm_tstamp_t; } snd_pcm_tstamp_t;