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) == 2;

Instead of:
int sscanfResult = sscanf(sdpLine, "a=range:clock=%[^-\r\n]-%[^\r\n]", as,
ae);
I think it should read:
int sscanfResult = sscanf(sdpLine, "a=range:clock=%[^-\r\n]-%[^\r\n]", as,
ae);

Could you confirm if this is indeed the case ? Or can you at least
support both cases ?

Thank you,
Paulo Vitor
_______________________________________________
live-devel mailing list
live-devel@lists.live555.com
http://lists.live555.com/mailman/listinfo/live-devel

Reply via email to