Commit 6c7a0535 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '8e1fe345'

* commit '8e1fe345':
  rtmp: Detect and warn if the user tries to pass librtmp style parameters
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 06186a31 8e1fe345
......@@ -2310,6 +2310,13 @@ static int rtmp_open(URLContext *s, const char *uri, int flags)
hostname, sizeof(hostname), &port,
path, sizeof(path), s->filename);
if (strchr(path, ' ')) {
av_log(s, AV_LOG_WARNING,
"Detected librtmp style URL parameters, these aren't supported "
"by the libavformat internal RTMP handler currently enabled. "
"See the documentation for the correct way to pass parameters.\n");
}
if (auth[0]) {
char *ptr = strchr(auth, ':');
if (ptr) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment