No need to expose internal function

This commit is contained in:
Mike H 2018-02-16 21:28:21 +00:00 committed by GitHub
parent 7b4af3a136
commit aebe96338c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -44,7 +44,6 @@ Result audoutGetAudioOutState(AudioOutState *State);
Result audoutStartAudioOut(void); Result audoutStartAudioOut(void);
Result audoutStopAudioOut(void); Result audoutStopAudioOut(void);
Result audoutAppendAudioOutBuffer(AudioOutBuffer *Buffer); Result audoutAppendAudioOutBuffer(AudioOutBuffer *Buffer);
Result audoutRegisterBufferEvent(Handle *BufferEvent);
Result audoutGetReleasedAudioOutBuffer(AudioOutBuffer *Buffer, u32 *ReleasedBuffersCount); Result audoutGetReleasedAudioOutBuffer(AudioOutBuffer *Buffer, u32 *ReleasedBuffersCount);
Result audoutContainsAudioOutBuffer(AudioOutBuffer *Buffer, bool *ContainsBuffer); Result audoutContainsAudioOutBuffer(AudioOutBuffer *Buffer, bool *ContainsBuffer);
@ -56,7 +55,7 @@ Result audoutContainsAudioOutBuffer(AudioOutBuffer *Buffer, bool *ContainsBuffer
void audoutPlayBuffer(AudioOutBuffer *source, AudioOutBuffer *released); void audoutPlayBuffer(AudioOutBuffer *source, AudioOutBuffer *released);
/// These return the state associated with the currently active audio output device. /// These return the state associated with the currently active audio output device.
u32 audoutGetSampleRate(void); u32 audoutGetSampleRate(void); ///< Supported sample rate (48000Hz).
u32 audoutGetChannelCount(void); u32 audoutGetChannelCount(void); ///< Supported channel count (2 channels).
PcmFormat audoutGetPcmFormat(void); PcmFormat audoutGetPcmFormat(void); ///< Supported PCM format (INT16).
AudioOutState audoutGetDeviceState(void); AudioOutState audoutGetDeviceState(void); ///< Initial device state (stopped).