diff --git a/trunk/research/players/srs_bwt.html b/trunk/research/players/srs_bwt.html index 78574adda..09f26aac3 100644 --- a/trunk/research/players/srs_bwt.html +++ b/trunk/research/players/srs_bwt.html @@ -63,9 +63,9 @@ bandwidth.on_update_status = function(status) { $("#check_status").text(status); } - bandwidth.on_srs_info = function(srs_server, srs_primary_authors, srs_id, srs_pid, srs_server_ip) { + bandwidth.on_srs_info = function(srs_server, srs_primary, srs_authors, srs_id, srs_pid, srs_server_ip) { $("#check_info").text( - "server:" + srs_server + ", authors:" + srs_primary_authors + + "server:" + srs_server + ", primary:" + srs_primary + ", authors:" + srs_authors + ", srs_id:" + srs_id + ", srs_pid:" + srs_pid + ", ip:" + srs_server_ip ); } diff --git a/trunk/research/players/srs_bwt/release/srs_bwt.swf b/trunk/research/players/srs_bwt/release/srs_bwt.swf index 756ac76bb..0bc6df727 100755 Binary files a/trunk/research/players/srs_bwt/release/srs_bwt.swf and b/trunk/research/players/srs_bwt/release/srs_bwt.swf differ diff --git a/trunk/research/players/srs_bwt/src/srs_bwt.as b/trunk/research/players/srs_bwt/src/srs_bwt.as index c2d6aca26..4fd5fdead 100755 --- a/trunk/research/players/srs_bwt/src/srs_bwt.as +++ b/trunk/research/players/srs_bwt/src/srs_bwt.as @@ -139,7 +139,7 @@ package customItems.push(new ContextMenuItem("Server: " + srs_server)); } if (srs_primary != null) { - customItems.push(new ContextMenuItem("PrimaryAuthors: " + srs_primary)); + customItems.push(new ContextMenuItem("Primary: " + srs_primary)); } if (srs_authors != null) { customItems.push(new ContextMenuItem("Authors: " + srs_authors)); diff --git a/trunk/research/players/srs_player/release/srs_player.swf b/trunk/research/players/srs_player/release/srs_player.swf index 8d2cdecf9..a6754aedc 100755 Binary files a/trunk/research/players/srs_player/release/srs_player.swf and b/trunk/research/players/srs_player/release/srs_player.swf differ diff --git a/trunk/research/players/srs_player/src/srs_player.as b/trunk/research/players/srs_player/src/srs_player.as index e69f2c97e..8fbf2bb8d 100755 --- a/trunk/research/players/srs_player/src/srs_player.as +++ b/trunk/research/players/srs_player/src/srs_player.as @@ -282,7 +282,7 @@ package customItems.push(new ContextMenuItem("Server: " + srs_server)); } if (srs_primary != null) { - customItems.push(new ContextMenuItem("PrimaryAuthors: " + srs_primary)); + customItems.push(new ContextMenuItem("Primary: " + srs_primary)); } if (srs_authors != null) { customItems.push(new ContextMenuItem("Authors: " + srs_authors)); diff --git a/trunk/research/players/srs_publisher/release/srs_publisher.swf b/trunk/research/players/srs_publisher/release/srs_publisher.swf index e26e55464..15e92bba0 100755 Binary files a/trunk/research/players/srs_publisher/release/srs_publisher.swf and b/trunk/research/players/srs_publisher/release/srs_publisher.swf differ diff --git a/trunk/research/players/srs_publisher/src/srs_publisher.as b/trunk/research/players/srs_publisher/src/srs_publisher.as index 2669e708b..40f02eae1 100755 --- a/trunk/research/players/srs_publisher/src/srs_publisher.as +++ b/trunk/research/players/srs_publisher/src/srs_publisher.as @@ -148,7 +148,7 @@ package customItems.push(new ContextMenuItem("Server: " + srs_server)); } if (srs_primary != null) { - customItems.push(new ContextMenuItem("PrimaryAuthors: " + srs_primary)); + customItems.push(new ContextMenuItem("Primary: " + srs_primary)); } if (srs_authors != null) { customItems.push(new ContextMenuItem("Authors: " + srs_authors));