summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2010-10-03 11:55:16 +0000
committerMartin Storsjö <martin@martin.st>2010-10-03 11:55:16 +0000
commit6ecd741713c7058b292878611f87b0673de6c8eb (patch)
treecff714f69a217e471053fec2464d03a1c4ae6898
parent524aae862574cfed0656fd9789edaa66b0817739 (diff)
rtsp: Show the received SDP
Originally committed as revision 25322 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavformat/rtsp.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c
index 5759788b71..72b0ad2b02 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);