the newest available SDP (Session Description Protocol) is defined in RFC 4566 (2006) and its ch10 describes changes from RFC 2327 (1998).
I am trying to check which SDP RFC is used in the newest VLC-version. VLC-wiki says: "SDP is defined in RFC2327" but is that still correct information?
In one older discussion on 2006:
viewtopic.php?f=4&t=25859&p=79753&hilit=4566#p79753
it was said about 4566 that
"However this RFC is very new, since it is from last July. Our implementation is still following the previous one. We are going to fix it. Hopefully very soon."
I also searched the source code both by 4566 and 2327 and found these:
stream_out/rtp.c
Code: Select all
* SDPGenerate
*****************************************************************************/
/* FIXME http://www.faqs.org/rfcs/rfc2327.html
Code: Select all
/* create the SDP for a muxed stream (only once) */
/* FIXME http://www.faqs.org/rfcs/rfc4566.html
Thanks.