MCPcopy Create free account
hub / github.com/SIPp/sipp / printVideoVector

Function printVideoVector

src/rtpstream.cpp:307–321  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

305}
306
307void 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
324void printLocalAudioSrtpStuff(SrtpInfoParams &p)

Callers 1

Calls 2

tid_selfFunction · 0.85
sizeMethod · 0.80

Tested by

no test coverage detected