]> git.sesse.net Git - ffmpeg/commitdiff
rtmpproto: info out for unsupported auth vars
authorReynaldo H. Verdejo Pinochet <r.verdejo@sisa.samsung.com>
Fri, 16 May 2014 17:39:03 +0000 (13:39 -0400)
committerReynaldo H. Verdejo Pinochet <r.verdejo@sisa.samsung.com>
Fri, 16 May 2014 21:31:48 +0000 (17:31 -0400)
Should aid debugging badly formatted URLs

Signed-off-by: Reynaldo H. Verdejo Pinochet <r.verdejo@sisa.samsung.com>
libavformat/rtmpproto.c

index b65521bdd5bfa85ce6ad245f8683a7427f7b4515..7aa8b515936b0c8989ba02f82505e9c116c5ccf0 100644 (file)
@@ -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);