示例#1
0
void Twinamp2dspDll::release(void)
{
    refcount--;
    DPRINTFA("Twinamp2dspDll: %s: %i", hdr->description, refcount);
    if (refcount == 0) {
        DPRINTFA("Twinamp2dspDll: deleting: %s", hdr->description);
        delete this;
    }
}
示例#2
0
文件: log.c 项目: Fluffiest/mpc-hc
void av_vlog(void* avcl, int level, const char *fmt, va_list vl)
{
#if USE_DPRINTF
	allowDPRINTF=1;
	DPRINTFA(fmt, vl);
#else
    av_log_callback(avcl, level, fmt, vl);
#endif
}
示例#3
0
void Twinamp2dspDll::addref(void)
{
    refcount++;
    DPRINTFA("Twinamp2dspDll: %s: %i", hdr->description, refcount);
}