Re: [Live-devel] How to redefine "FD_SETSIZE"

2014-04-14 Thread Sergey Kuprienko
Anyway, it does not affect kernel, if you're using linux. 15.04.2014 4:22 пользователь "Warren Young" написал: > On 4/14/2014 08:24, Amir Marzouk wrote: > >> >> I'm looking for how to increase the number of concurrent clients. I >> found in this link that i need to redefine "FD_SETSIZE". but I ha

[Live-devel] RTCPInstance::onExpire do not unscheduled from desctructor

2014-02-14 Thread Sergey Kuprienko
tance::numMembers. It seems RTCPInstance was destroyed due to closing subsessions, but unshedule() of onExpire() was not performed. What are the conditions that may lead to that ? ps. I use several - up to 4 - RTSP clients per single TaskScheduler + dedicated UsageEnvironment. -- Сергей

Re: [Live-devel] Group Sockets select to poll() port

2014-01-24 Thread Sergey Kuprienko
ode at blog would be acceptable ? 2014/1/24 Ross Finlayson > > On Jan 22, 2014, at 6:37 AM, Sergey Kuprienko wrote: > > I've faced problems using live555 to capture many streams per process. > The source is select() calls. It can't accept fd index more than > FD_SET

[Live-devel] Group Sockets select to poll() port

2014-01-22 Thread Sergey Kuprienko
; memset(&pollFd,0,sizeof(pollFd)); pollFd.fd = sock; pollFd.events = POLLIN | POLLERR; int result = poll(&pollFd, 1, 5000); if (result < 0 ) break; #endif 2) I've made poll()-based task scheduler - how can I post it the best way ? -- Сергей Куприенк