From 93cade48254ae96da96a70cefab2d45921dfb92d Mon Sep 17 00:00:00 2001 From: "Reynaldo H. Verdejo Pinochet" Date: Fri, 16 May 2014 13:39:03 -0400 Subject: [PATCH] rtmpproto: info out for unsupported auth vars Should aid debugging badly formatted URLs Signed-off-by: Reynaldo H. Verdejo Pinochet --- libavformat/rtmpproto.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavformat/rtmpproto.c b/libavformat/rtmpproto.c index b65521bdd5..7aa8b51593 100644 --- a/libavformat/rtmpproto.c +++ b/libavformat/rtmpproto.c @@ -1724,6 +1724,8 @@ static int handle_connect_error(URLContext *s, const char *desc) challenge = value; } else if (!strcmp(ptr, "nonce")) { nonce = value; + } else { + av_log(s, AV_LOG_INFO, "Ignoring unsupported var %s\n", ptr); } } else { av_log(s, AV_LOG_WARNING, "Variable %s has NULL value\n", ptr);