if (alen)
{
// Log::getInstance()->log("AFeed", Log::DEBUG, "Written %i", alen);
- cb.call();
+ cb.call(this);
}
else
{
if (alen)
{
Log::getInstance()->log("AFeedR", Log::DEBUG, "Written %i", alen);
- cb.call();
+ cb.call(this);
}
else
{
class Callback
{
public:
- virtual void call()=0;
+ virtual void call(void* caller)=0;
};
#endif
virtual void test2()=0;
#endif
- virtual void call()=0; // for callback interface
+ virtual void call(void*)=0; // for callback interface
virtual void threadMethod()=0; // for thread interface
virtual void threadPostStopCleanup()=0;
audio->play();
- call();
+ call(this);
return 1;
}
}
-void PlayerRadio::call()
+void PlayerRadio::call(void* caller)
{
Log::getInstance()->log("PlayerRadio", Log::DEBUG, "playerradio called\n");
// threadSignalNoLock();
void jumpToPercent(int percent);
void skipForward();
void skipBackward();
- void call(); // for callback interface
+ void call(void*); // for callback interface
void setPosition(ULLONG position);
void setLength(ULLONG length);
}
-void PlayerVideo::call()
+void PlayerVideo::call(void* caller)
{
threadSignalNoLock();
}
void jumpToPercent(int percent);
void skipForward(int seconds);
void skipBackward(int seconds);
- void call(); // for callback interface
+ void call(void*); // for callback interface
void setPosition(ULLONG position);
void setLength(ULLONG length);
#ifdef DEV
if (vlen)
{
// Log::getInstance()->log("VFeed", Log::DEBUG, "Written %i", vlen);
- cb.call();
+ cb.call(this);
}
else
{