Re: [Live-devel] Problem when multi client connect to server using OndemandServerMediaSubsession

2014-09-04 Thread Nguyen Van Long
Dear Ross, I would like to give many thanks for your suggestions. It seems you are right in my case. I will try to use another codec (H.264) as well as change from streaming unicast to multicast. Thank again for your help. From: Nguyen Van Long [mailto:lon...@elcom.com.vn] Sent: Thursday, S

Re: [Live-devel] Please help: I have difficulties implementing the right classes

2014-09-04 Thread Ross Finlayson
> Could it be that calling deliverFrame() multiple times might be wrong? Yes, that's wrong. Your "doGetNextFrame()" function should deliver one, and only one, H.264 NAL unit (note, not a H.264 'frame') each time it's called. Note that if - at the time that "doGetNextFrame()" is called - no H.2

Re: [Live-devel] Please help: I have difficulties implementing the right classes

2014-09-04 Thread Fabrice Triboix
Hi Ross, Thanks for your comment. Here is the implementation of doGetNextFrame() in my class (which is indeed derived from FramedSource): void CAvSource::doGetNextFrame() { // Forward all frames in the input AV buffer while (getTopMetadata() != NULL) { deliverFrame(); } }

Re: [Live-devel] Please help: I have difficulties implementing the right classes

2014-09-04 Thread Ross Finlayson
> I am trying to build an RTSP server using liveMedia to stream H.264 in real > time from a live encoder. In essence, as soon as I try to connect with VLC, > liveMedia abort()s with the following message: > FramedSource[0xbe838]::getNextFrame(): attempting to read more than once at > the same t

[Live-devel] Please help: I have difficulties implementing the right classes

2014-09-04 Thread Fabrice Triboix
Hello, I am trying to build an RTSP server using liveMedia to stream H.264 in real time from a live encoder. In essence, as soon as I try to connect with VLC, liveMedia abort()s with the following message: FramedSource[0xbe838]::getNextFrame(): attempting to read more than once at the same time

Re: [Live-devel] Problem when multi client connect to server using OndemandServerMediaSubsession

2014-09-04 Thread Ross Finlayson
> I had seen the answer at > http://lists.live555.com/pipermail/live-devel/2014-September/thread.html > although I didn’t received email from mailing list (may be our mail server’s > down or something cause to lost email …) You're on the mailing list, so you should be receiving mailing list mes

Re: [Live-devel] Problem when multi client connect to server using OndemandServerMediaSubsession

2014-09-04 Thread Nguyen Van Long
Dear Ross, I had seen the answer at http://lists.live555.com/pipermail/live-devel/2014-September/thread.html although I didn't received email from mailing list (may be our mail server's down or something cause to lost email .) and I would like to thank you for your quick answer. As your suggestio