Beispiel #1
0
cReceiver::cReceiver(const cChannel *Channel, int Priority)
{
  device = NULL;
  priority = constrain(Priority, MINPRIORITY, MAXPRIORITY);
  numPids = 0;
  SetPids(Channel);
}
Beispiel #2
0
cReceiver::cReceiver(const cChannel *Channel, int Priority)
{
  device = NULL;
  priority = Priority;
  numPids = 0;
  SetPids(Channel);
}
Beispiel #3
0
cLiveReceiver::cLiveReceiver(cLiveStreamer *Streamer, const cChannel *Channel, int Priority, const int *Pids)
 : cReceiver(Channel, Priority)
 , m_Streamer(Streamer)
{
  SetPids(NULL);
  AddPids(Pids);
  DEBUGLOG("Starting live receiver");
}
cLiveReceiver::cLiveReceiver(cVideoInput *VideoInput, const cChannel *Channel, int Priority)
 : cReceiver(Channel, Priority)
 , m_VideoInput(VideoInput)
{
  SetPids(NULL);
}