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

Function printAudioVector

src/rtpstream.cpp:273–287  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

271}
272
273void 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
289void printVideoHex(char const* note, char const* string, unsigned int size, unsigned long long extrainfo, int moreinfo)
290{

Callers 1

Calls 2

tid_selfFunction · 0.85
sizeMethod · 0.80

Tested by

no test coverage detected