| 204 | } |
| 205 | |
| 206 | void StreamManager::checkForSessionTimeout() { |
| 207 | base::MutexLock lock(_mutex); |
| 208 | |
| 209 | assert(!_stream.empty()); |
| 210 | for (SpStream stream : _stream) { |
| 211 | if (stream->streamInUse()) { |
| 212 | stream->checkForSessionTimeout(); |
| 213 | } |
| 214 | } |
| 215 | } |
| 216 | |
| 217 | std::string StreamManager::getDescribeMediaLevelString(const int streamID) const { |
| 218 | base::MutexLock lock(_mutex); |
nothing calls this directly
no test coverage detected