| 271 | } |
| 272 | |
| 273 | void printAudioVector(char const* note, std::vector<unsigned long> const &v) |
| 274 | { |
| 275 | if ((debugafile != nullptr) && |
| 276 | (note != nullptr) && |
| 277 | rtpcheck_debug) |
| 278 | { |
| 279 | pthread_mutex_lock(&debugamutex); |
| 280 | fprintf(debugafile, "TID: %lu %s\n", tid_self(), note); |
| 281 | for (unsigned int i = 0; i < v.size(); i++) |
| 282 | { |
| 283 | fprintf(debugafile, "%lu\n", v[i]); |
| 284 | } |
| 285 | pthread_mutex_unlock(&debugamutex); |
| 286 | } |
| 287 | } |
| 288 | |
| 289 | void printVideoHex(char const* note, char const* string, unsigned int size, unsigned long long extrainfo, int moreinfo) |
| 290 | { |
no test coverage detected