This is kind of a shot in the dark, but I have been puzzling over a problem for
several days and I am hoping someone here can either rule out Live555 or
confirm that it could be contributing.
I am running an RTSP server application based on Live555 that receives live
H.264 encoded video from a
I happen to use the following data class because I want to hang onto a few
items.
//Call back instance and session pointer container.
class MVSRTSPClient;
class MVSClientData
{
public:
MVSClientData(MVSRTSPClient* instancePtr, MediaSubsession*
subsessionPtr)
> So I am trying to create a event trigger, but I am unsure on how to proceed.
> The taskScheduler->createEventTrigger() function expects a taskFunc object
> and I am not sure what this is.
It's quite simple. It's this:
typedef void TaskFunc(void* clientData);
I.e., it's a void functio
Hi,
So I am trying to create a event trigger, but I am unsure on how to
proceed. The taskScheduler->createEventTrigger() function expects a
taskFunc object and I am not sure what this is. Is it similar to a
callback? If so, how do I cast my function do a taskFunc object? I
currently having someth