| 68 | |
| 69 | |
| 70 | void welsCodecTrace::StaticCodecTrace (void* pCtx, const int32_t iLevel, const char* Str_Format, va_list vl) { |
| 71 | welsCodecTrace* self = (welsCodecTrace*) pCtx; |
| 72 | self->CodecTrace (iLevel, Str_Format, vl); |
| 73 | } |
| 74 | |
| 75 | void welsCodecTrace::CodecTrace (const int32_t iLevel, const char* Str_Format, va_list vl) { |
| 76 | if (m_iTraceLevel < iLevel) { |
nothing calls this directly
no test coverage detected