> I think MediaSession::initializeWithSDP() is not parsing first SDP line
> (which is usually v=0, though unused).
No, that is incorrect. The existing code works correctly, parsing all SDP
lines. You're on a 'wild goose chase'.
Ross Finlayson
Live Networks, Inc.
http://www.live555.com/
Hi,
I think MediaSession::initializeWithSDP() is not parsing first SDP line
(which is usually v=0, though unused).
I've corrected it as follow:
// Begin by processing all SDP lines until we see the first "m="
char const* sdpLine;
char const* nextSDPLine = sdpDescription;
while (1) {