From: Pierre Ynard Date: Thu, 21 Jan 2010 20:17:57 +0000 (+0100) Subject: rtp sout: fix comment about TTL X-Git-Tag: 1.1.0-ff~1065 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=09b2d92372c384a51696a6c917d9f103609ba399;p=vlc rtp sout: fix comment about TTL We don't use the TTL value in SDP anymore, but we still do in RTSP --- diff --git a/modules/stream_out/rtp.c b/modules/stream_out/rtp.c index fb32570dfa..e20669e40a 100644 --- a/modules/stream_out/rtp.c +++ b/modules/stream_out/rtp.c @@ -457,9 +457,9 @@ static int Open( vlc_object_t *p_this ) if( p_sys->i_ttl == -1 ) { /* Normally, we should let the default hop limit up to the core, - * but we have to know it to build our SDP properly, which is why - * we ask the core. FIXME: broken when neither sout-rtp-ttl nor - * ttl are set. */ + * but we have to know it to write our RTSP headers properly, + * which is why we ask the core. FIXME: broken when neither + * sout-rtp-ttl nor ttl are set. */ p_sys->i_ttl = var_InheritInteger( p_stream, "ttl" ); }