Browse Source

rtmpproto: Don't include the libavformat version as "clientid"

When acting as server, the server can include a "clientid" property
in some status messages. But this should be a unique number
identifying the client session, not identifying the server itself.
In practice, omitting it works just as well as including this
incorrect field.

Signed-off-by: Martin Storsjö <martin@martin.st>
tags/n3.3
Martin Storsjö 9 years ago
parent
commit
9f23f77a53
1 changed files with 0 additions and 3 deletions
  1. +0
    -3
      libavformat/rtmpproto.c

+ 0
- 3
libavformat/rtmpproto.c View File

@@ -1874,9 +1874,6 @@ static int write_status(URLContext *s, RTMPPacket *pkt,
ff_amf_write_string(&pp, statusmsg);
ff_amf_write_field_name(&pp, "details");
ff_amf_write_string(&pp, filename);
ff_amf_write_field_name(&pp, "clientid");
snprintf(statusmsg, sizeof(statusmsg), "%s", LIBAVFORMAT_IDENT);
ff_amf_write_string(&pp, statusmsg);
ff_amf_write_object_end(&pp);

spkt.size = pp - spkt.data;


Loading…
Cancel
Save