From: Kostya Shishkov Date: Sun, 22 Nov 2009 08:42:55 +0000 (+0000) Subject: Print error when RTMP protocol can't open connection X-Git-Tag: v0.6~2609 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=fe52395878d4f0010829e0acfed34f3fe1972efe;p=coroid%2Flibav_saccubus.git Print error when RTMP protocol can't open connection Originally committed as revision 20574 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/libavformat/rtmpproto.c b/libavformat/rtmpproto.c index 980b2d6c8..7b4f9eb7e 100644 --- a/libavformat/rtmpproto.c +++ b/libavformat/rtmpproto.c @@ -590,8 +590,10 @@ static int rtmp_open(URLContext *s, const char *uri, int flags) port = RTMP_DEFAULT_PORT; snprintf(buf, sizeof(buf), "tcp://%s:%d", hostname, port); - if (url_open(&rt->stream, buf, URL_RDWR) < 0) + if (url_open(&rt->stream, buf, URL_RDWR) < 0) { + av_log(LOG_CONTEXT, AV_LOG_ERROR, "Cannot open connection %s\n", buf); goto fail; + } if (!is_input) { av_log(LOG_CONTEXT, AV_LOG_ERROR, "RTMP output is not supported yet.\n");