[FFmpeg-cvslog] r25323 - trunk/libavformat/rtsp.c
mstorsjo
subversion
Sun Oct 3 13:56:38 CEST 2010
Author: mstorsjo
Date: Sun Oct 3 13:56:38 2010
New Revision: 25323
Log:
rtsp: In the muxer, show the generated with verbose log level
It is only useful for debugging, so it doesn't have to be shown every time.
Modified:
trunk/libavformat/rtsp.c
Modified: trunk/libavformat/rtsp.c
==============================================================================
--- trunk/libavformat/rtsp.c Sun Oct 3 13:55:16 2010 (r25322)
+++ trunk/libavformat/rtsp.c Sun Oct 3 13:56:38 2010 (r25323)
@@ -1359,7 +1359,7 @@ static int rtsp_setup_output_streams(AVF
av_free(sdp);
return AVERROR_INVALIDDATA;
}
- av_log(s, AV_LOG_INFO, "SDP:\n%s\n", sdp);
+ av_log(s, AV_LOG_VERBOSE, "SDP:\n%s\n", sdp);
ff_rtsp_send_cmd_with_content(s, "ANNOUNCE", rt->control_uri,
"Content-Type: application/sdp\r\n",
reply, NULL, sdp, strlen(sdp));
More information about the ffmpeg-cvslog
mailing list