Re: [Live-devel] RTSP range clock/npt SDP parse

2014-07-24 Thread Ross Finlayson
On Jul 24, 2014, at 10:36 AM, Paulo Vitor Magacho da Silva wrote: > I've tested in iOS and it only recognized the line using the second version. What specific SDP line are you having trouble scanning? Ross Finlayson Live Networks, Inc. http://www.live555.com/ ___

Re: [Live-devel] RTSP range clock/npt SDP parse

2014-07-24 Thread Paulo Vitor Magacho da Silva
I've tested in iOS and it only recognized the line using the second version. Could the implementation in iOS of sscanf be slightly different ? Thank you 2014-07-24 11:22 GMT-03:00 Ross Finlayson : > looking into file liveMedia/MediaSession.cpp I believe there is an > extra space in parseRangeAtt

Re: [Live-devel] RTSP range clock/npt SDP parse

2014-07-24 Thread Ross Finlayson
> looking into file liveMedia/MediaSession.cpp I believe there is an > extra space in parseRangeAttribute method. > > Instead of: > return sscanf(sdpLine, "a=range: npt = %lg - %lg", &startTime, &endTime) == 2; > I think it should read: > return sscanf(sdpLine, "a=range:npt=%lg - %lg", &startTime,

[Live-devel] RTSP range clock/npt SDP parse

2014-07-23 Thread Paulo Vitor Magacho da Silva
Hi, looking into file liveMedia/MediaSession.cpp I believe there is an extra space in parseRangeAttribute method. Instead of: return sscanf(sdpLine, "a=range: npt = %lg - %lg", &startTime, &endTime) == 2; I think it should read: return sscanf(sdpLine, "a=range:npt=%lg - %lg", &startTime, &endTime)