Conditionally export a few more AFMT_* macros: AFMT_U16_NE, AFMT_S32_LE,
AFMT_S32_BE, AFMT_MPEG.
This commit is contained in:
parent
a17fa89a2b
commit
0f26054736
|
@ -997,6 +997,18 @@ initossaudiodev(void)
|
|||
#ifdef AFMT_S16_NE
|
||||
_EXPORT_INT(m, AFMT_S16_NE);
|
||||
#endif
|
||||
#ifdef AFMT_U16_NE
|
||||
_EXPORT_INT(m, AFMT_U16_NE);
|
||||
#endif
|
||||
#ifdef AFMT_S32_LE
|
||||
_EXPORT_INT(m, AFMT_S32_LE);
|
||||
#endif
|
||||
#ifdef AFMT_S32_BE
|
||||
_EXPORT_INT(m, AFMT_S32_BE);
|
||||
#endif
|
||||
#ifdef AFMT_MPEG
|
||||
_EXPORT_INT(m, AFMT_MPEG);
|
||||
#endif
|
||||
|
||||
/* Expose the sound mixer device numbers. */
|
||||
_EXPORT_INT(m, SOUND_MIXER_NRDEVICES);
|
||||
|
|
Loading…
Reference in New Issue