Re: [Live-devel] How to compile in linux

2015-11-27 Thread Ross Finlayson
> Hi , I'm new in compiling software on Linux (ubuntu) (If you haven’t already done so, see ) > and generate the make files with the next code: > > > wget http://www.live555.com/liveMedia/public/live555-latest.tar.gz > $ tar xvf live555-latest.tar.

[Live-devel] How to compile in linux

2015-11-27 Thread Ing. Nelson Rodriguez
Hi , I'm new in compiling software on Linux (ubuntu), and generate the make files with the next code: wget http://www.live555.com/liveMedia/public/live555-latest.tar.gz $ tar xvf live555-latest.tar.gz $ cd live $ ./genMakefiles linux $ make $ sudo cp -r $HOME/live /usr/lib $ make clean

Re: [Live-devel] RTSP Server Packet Loss

2015-11-27 Thread Ross Finlayson
No, there is no bug here (and so, there will be no change to the code). UDP packets are not expected to be sent/received reliably; occasional packet loss can (and in general, will) occur. This can occur for several reasons - including congestion on your network, which is the case here. If a U

Re: [Live-devel] How to flush/clear UDP buffer

2015-11-27 Thread Ross Finlayson
> I have a decoding pipeline for RTSP cameras. There are times in my > application in which I do not want to decode, because images are not > displayed. However I want to keep the connection open. I have a subclass of > RTSPClient that is constantly receiving from the network. Why don’t you sen

[Live-devel] RTSP Server Packet Loss

2015-11-27 Thread Martin Sherburn
Dear Live555 Developers, I have discovered a bug whereby UDP packets are getting lost using live555MediaServer. The issue is that the socket used for sending the packets is set to non-blocking mode. Occasionally when the application sends a lot of data in a short amount of time the sendto funct

[Live-devel] How to flush/clear UDP buffer

2015-11-27 Thread Sergio Basurco
Hi all, I have a decoding pipeline for RTSP cameras. There are times in my application in which I do not want to decode, because images are not displayed. However I want to keep the connection open. I have a subclass of RTSPClient that is constantly receiving from the network. I have noticed