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/
___
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
> 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,
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)