| 305 | } |
| 306 | |
| 307 | void printVideoVector(char const* note, std::vector<unsigned long> const &v) |
| 308 | { |
| 309 | if ((debugvfile != nullptr) && |
| 310 | (note != nullptr) && |
| 311 | rtpcheck_debug) |
| 312 | { |
| 313 | pthread_mutex_lock(&debugvmutex); |
| 314 | fprintf(debugvfile, "TID: %lu %s\n", tid_self(), note); |
| 315 | for (unsigned int i = 0; i < v.size(); i++) |
| 316 | { |
| 317 | fprintf(debugvfile, "%lu\n", v[i]); |
| 318 | } |
| 319 | pthread_mutex_unlock(&debugvmutex); |
| 320 | } |
| 321 | } |
| 322 | |
| 323 | #ifdef USE_TLS |
| 324 | void printLocalAudioSrtpStuff(SrtpInfoParams &p) |
no test coverage detected