1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

change wording in docs

This commit is contained in:
Nils Fenner 2015-10-20 03:41:18 +02:00
parent 2bc3798aa0
commit a675725a5e
No known key found for this signature in database
GPG Key ID: 9591A163FF9BE04C

View File

@ -79,6 +79,9 @@ Audio::~Audio()
audioThread->terminate();
}
/**
Start the audio thread for capture and playback.
*/
void Audio::startAudioThread()
{
if (!audioThread->isRunning())
@ -151,7 +154,9 @@ void Audio::suscribeInput()
}
/**
Call when you need to capture sound from the open input device.
@brief Subscribe to capture sound from the opened input device.
If the input device is not open, it will be opened before capturing.
*/
void Audio::SubscribeInput()
{
@ -181,7 +186,9 @@ void Audio::unsuscribeInput()
}
/**
Call once you don't need to capture on the open input device anymore.
@brief Unsubscribe from capturing from an opened input device.
If the input device has no more subscriptions, it will be closed.
*/
void Audio::UnsubscribeInput()
{