Stefan Schuermans commited on 2019-09-01 13:03:30
Showing 1 changed files, with 5 additions and 1 deletions.
| ... | ... |
@@ -178,6 +178,10 @@ void set_playback(Data &data, std::string const &name) |
| 178 | 178 |
data.playback = dir.getFile(name + ".wav").getPath(); |
| 179 | 179 |
} |
| 180 | 180 |
|
| 181 |
+/** |
|
| 182 |
+ * @brief start playback of sound |
|
| 183 |
+ * @param[in,out] data data of SIP client |
|
| 184 |
+ */ |
|
| 181 | 185 |
void start_playback(Data &data) |
| 182 | 186 |
{
|
| 183 | 187 |
if (data.lc && ! data.playback.empty()) {
|
| ... | ... |
@@ -543,7 +547,7 @@ void do_hangup(Data &data) |
| 543 | 547 |
|
| 544 | 548 |
/** |
| 545 | 549 |
* @brief linphone worker thread |
| 546 |
- * @param[in] soundDir directory of sound files |
|
| 550 |
+ * @param[in] configData configuration data |
|
| 547 | 551 |
* @param[in,out] data shared data for communication with main Blinker thread |
| 548 | 552 |
*/ |
| 549 | 553 |
void worker(SipPhone::ConfigData const &configData, |
| 550 | 554 |