Browse Source

rtmpproto: send swfverify value as swfurl if latter is unused

Replicates lavf/librtmp.c behavior in L145-152 and rtmpdump's
behavior with "--swfVfy <url>" passing the url to swfUrl.

Fixes bug 943.

Signed-off-by: Martin Storsjö <martin@martin.st>
tags/n4.0
Ricardo Constantino Martin Storsjö 8 years ago
parent
commit
d4f3c26b70
1 changed files with 5 additions and 2 deletions
  1. +5
    -2
      libavformat/rtmpproto.c

+ 5
- 2
libavformat/rtmpproto.c View File

@@ -339,9 +339,12 @@ static int gen_connect(URLContext *s, RTMPContext *rt)
ff_amf_write_field_name(&p, "flashVer");
ff_amf_write_string(&p, rt->flashver);

if (rt->swfurl) {
if (rt->swfurl || rt->swfverify) {
ff_amf_write_field_name(&p, "swfUrl");
ff_amf_write_string(&p, rt->swfurl);
if (rt->swfurl)
ff_amf_write_string(&p, rt->swfurl);
else
ff_amf_write_string(&p, rt->swfverify);
}

ff_amf_write_field_name(&p, "tcUrl");


Loading…
Cancel
Save