From: Martin Storsjö Date: Sun, 3 Oct 2010 11:55:16 +0000 (+0000) Subject: rtsp: Show the received SDP X-Git-Tag: v0.7b1~2011 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6ecd741713c7058b292878611f87b0673de6c8eb;p=platform%2Fupstream%2Flibav.git rtsp: Show the received SDP Originally committed as revision 25322 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index 5759788..72b0ad2 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -1315,6 +1315,7 @@ static int rtsp_setup_input_streams(AVFormatContext *s, RTSPMessageHeader *reply return AVERROR_INVALIDDATA; } + av_log(s, AV_LOG_VERBOSE, "SDP:\n%s\n", content); /* now we got the SDP description, we parse it */ ret = sdp_parse(s, (const char *)content); av_freep(&content);