[linux-dvb] Pipe ok! Set filtering dmx...

2003-03-17 Thread Andrea Gerardi
Hi list
my pipe is ok! The last question is: there's a way to set the 
dmx_pes_filter_params.pid = ANY_PID  to obtain each pid on the transponder? 
This is my last limitations, please send me a reply! Thanks to all.

_
Vinci la nuova Nissan Micra con MSN Messenger! http://www.msn.it/messenger/


--
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with unsubscribe linux-dvb as 
subject.


[linux-dvb] Pipe?

2003-03-14 Thread Andrea Gerardi
Hi list,
I need use pipe to analyze consecutive pid of ts. With this code:
if(pid=fork()0) perror(\nfork error\n);

else if (pid0)
{//parent
close(fd[0]);
//tuning operation and get fd_dvr handle
   close(fd[1]);
if (waitpid(pid,NULL,0)0) perror(waitpid error);
exit(0);
}
else if (pid==0)
{//child
close(fd[1]);
close(fd[0]);
exit(0);
}




_
Vinci la nuova Nissan Micra con MSN Messenger! http://www.msn.it/messenger/


--
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with unsubscribe linux-dvb as 
subject.