Re: [Live-devel] H264VideoFramer truncating frames

2015-03-20 Thread Gilles Chanteperdrix
On Fri, Mar 20, 2015 at 09:28:52PM +1300, Ross Finlayson wrote: > > Besides, my encoder has options for VUI but the documentation states that > > these parameters are ignored. > > Well, it sounds like you need to get your encoder fixed. > > Remember, your encoder is something that you have paid

Re: [Live-devel] H264VideoFramer truncating frames

2015-03-20 Thread Gilles Chanteperdrix
On Fri, Mar 20, 2015 at 09:28:52PM +1300, Ross Finlayson wrote: > > Besides, my encoder has options for VUI but the documentation states that > > these parameters are ignored. > > Well, it sounds like you need to get your encoder fixed. > > Remember, your encoder is something that you have paid

Re: [Live-devel] lookupServerMediaSession on live555MediaServer

2015-03-20 Thread Ross Finlayson
> I am trying to implement a media server to stream also live sessions > constructed 'on the fly'. > Analyzing the behaviour of DynamicRTSPServer contained in live555MediaServer, > I noted that when a client demand a stream to the server (i.e a 264 stream > file), lookupServerMediaSession is ca

[Live-devel] lookupServerMediaSession on live555MediaServer

2015-03-20 Thread Massimo Guarino
I am trying to implement a media server to stream also live sessions constructed 'on the fly'. Analyzing the behaviour of DynamicRTSPServer contained in live555MediaServer, I noted that when a client demand a stream to the server (i.e a 264 stream file), lookupServerMediaSession is called twice, b

Re: [Live-devel] Digest authentication and stale nonces

2015-03-20 Thread Deanna Earley
Thank you. That is now correctly resending the request when the nonce is reported as stale: GET_PARAMETER rtsp://10.1.3.47/onvif-media/media.amp?profile=icana_0&sessiontimeout=60&streamtype=unicast RTSP/1.0 CSeq: 8 Authorization: Digest username="onvif", realm="AXIS_WS_00408CC17E5B", nonce="00

Re: [Live-devel] Possible bug in RTPInterface::sendDataOverTCP

2015-03-20 Thread Hardik Sangani
Hi , Thanks for your instant reply, I am not saying there is bug in code. I am really sorry if you felt so. we are using live555 code as RTSP server, we started with doing UDP streaming which works very well, now our customer wants to change it to TCP. so we are trying to debug. we are using wis

Re: [Live-devel] Possible bug in RTPInterface::sendDataOverTCP

2015-03-20 Thread Ross Finlayson
> I am trying to stream rtp over tcp and i am facing the issue like stream is > stopping after 3-4 mins(I am using VLC as a client) Oh please! Why do you think that this means that there is a bug in our code at all, let alone a bug in one specific function? I assume (although you didn’t say ex

Re: [Live-devel] Possible bug in RTPInterface::sendDataOverTCP

2015-03-20 Thread Hardik
Hi I am trying to stream rtp over tcp and i am facing the issue like stream is stopping after 3-4 mins(I am using VLC as a client), i applied following patch but didn't work for me. - sendResult = send(socketNum, (char const*)(&data[numBytesSentSoFar]), numBytesRemainingToSend, 0/*flag

Re: [Live-devel] H264VideoFramer truncating frames

2015-03-20 Thread Ross Finlayson
> Besides, my encoder has options for VUI but the documentation states that > these parameters are ignored. Well, it sounds like you need to get your encoder fixed. Remember, your encoder is something that you have paid for. Whereas this software is something that you have paid nothing for. T

Re: [Live-devel] H264VideoFramer truncating frames

2015-03-20 Thread Robert Smith
This would still depend on a constant frame rate though? I can't guarantee that the source or encoder won't drop frames so it needs to be robust against that. Besides, my encoder has options for VUI but the documentation states that these parameters are ignored. On 03/19/2015 10:47 AM, Ross