Commit d1970929 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/librtmp: fix swfurl

Found-by: 's avatarJULIAN GARDNER <joolzg@btinternet.com>
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 55d592f7
......@@ -169,7 +169,7 @@ static int rtmp_open(URLContext *s, const char *uri, int flags)
}
if (ctx->swfurl) {
av_strlcat(filename, " swfUrl=", len);
av_strlcat(filename, ctx->pageurl, len);
av_strlcat(filename, ctx->swfurl, len);
}
if (ctx->flashver) {
av_strlcat(filename, " flashVer=", len);
......
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