Get number of audio channels
| 356 | |
| 357 | // Get number of audio channels |
| 358 | int Frame::GetAudioChannelsCount() |
| 359 | { |
| 360 | const std::lock_guard<std::recursive_mutex> lock(addingAudioMutex); |
| 361 | if (audio) |
| 362 | return audio->getNumChannels(); |
| 363 | else |
| 364 | return 0; |
| 365 | } |
| 366 | |
| 367 | // Get number of audio samples |
| 368 | int Frame::GetAudioSamplesCount() |
no outgoing calls
no test coverage detected