[Pkg-voip-commits] [janus] 11/37: Merge tag 'upstream/0.2.2'

Jonas Smedegaard dr at jones.dk
Mon Mar 13 19:14:32 UTC 2017


This is an automated email from the git hooks/post-receive script.

js pushed a commit to branch master
in repository janus.

commit ed38bee81bea490079d87cc1ebbd1f6827f9eafd
Merge: b5c713e 5c3c029
Author: Jonas Smedegaard <dr at jones.dk>
Date:   Sun Mar 12 14:13:03 2017 +0100

    Merge tag 'upstream/0.2.2'
    
    Upstream version 0.2.2
    
    # gpg: Signature made Sun Mar 12 14:12:57 2017 CET
    # gpg:                using RSA key 2C7C3146C1A00121
    # gpg: Good signature from "Jonas Smedegaard <dr at jones.dk>"
    # gpg:                 aka "Jonas Smedegaard <jonas at homebase.dk>"
    # gpg:                 aka "Jonas Smedegaard <js at debian.org>"
    # gpg:                 aka "[jpeg image of size 4165]"

 .gitattributes                               |    1 -
 .gitignore                                   |   47 -
 COPYING                                      |    8 +
 Makefile.am                                  |   44 +-
 README.md                                    |   30 +-
 conf/janus.cfg.sample.in                     |   42 +-
 conf/janus.eventhandler.sampleevh.cfg.sample |   34 +
 conf/janus.plugin.audiobridge.cfg.sample     |    2 +
 conf/janus.plugin.echotest.cfg.sample        |    5 +-
 conf/janus.plugin.recordplay.cfg.sample.in   |    2 +
 conf/janus.plugin.sip.cfg.sample             |    5 +-
 conf/janus.plugin.streaming.cfg.sample.in    |    9 +
 conf/janus.plugin.textroom.cfg.sample        |    2 +
 conf/janus.plugin.videocall.cfg.sample       |    5 +-
 conf/janus.plugin.videoroom.cfg.sample       |    2 +
 conf/janus.plugin.voicemail.cfg.sample       |    2 +
 configure.ac                                 |   73 +-
 docs/Makefile.am                             |    3 -
 docs/header.html                             |    6 +-
 docs/janus-doxygen.cfg                       |    4 +-
 dtls.c                                       |  188 +--
 dtls.h                                       |   21 +-
 events.c                                     |  236 +++
 events.h                                     |   39 +
 events/eventhandler.h                        |  226 +++
 events/janus_sampleevh.c                     |  617 +++++++
 html/Makefile.am                             |   15 +
 html/admin.html                              |  155 ++
 html/admin.js                                |  929 +++++++++++
 html/audiobridgetest.html                    |  110 ++
 html/audiobridgetest.js                      |  338 ++++
 html/citeus.html                             |  100 ++
 html/css/demo.css                            |   99 ++
 html/demos.html                              |  101 ++
 html/devicetest.html                         |  138 ++
 html/devicetest.js                           |  416 +++++
 html/docs/index.html                         |   46 +
 html/echotest.html                           |  127 ++
 html/echotest.js                             |  368 +++++
 html/favicon.ico                             |  Bin 0 -> 1150 bytes
 html/footer.html                             |    1 +
 html/index.html                              |   72 +
 html/janus-logo.png                          |  Bin 0 -> 19595 bytes
 html/janus.js                                | 2243 +++++++++++++++++++++++++
 html/janus.nojquery.js                       | 2291 ++++++++++++++++++++++++++
 html/meetecho-logo.png                       |  Bin 0 -> 9574 bytes
 html/navbar.html                             |   44 +
 html/recordplaytest.html                     |  108 ++
 html/recordplaytest.js                       |  434 +++++
 html/screensharingtest.html                  |  129 ++
 html/screensharingtest.js                    |  482 ++++++
 html/siptest.html                            |  142 ++
 html/siptest.js                              |  603 +++++++
 html/streamingtest.html                      |  106 ++
 html/streamingtest.js                        |  246 +++
 html/support.html                            |   91 +
 html/textroomtest.html                       |  122 ++
 html/textroomtest.js                         |  394 +++++
 html/up_arrow.png                            |  Bin 0 -> 5327 bytes
 html/videocalltest.html                      |  143 ++
 html/videocalltest.js                        |  532 ++++++
 html/videoroomtest.html                      |  142 ++
 html/videoroomtest.js                        |  521 ++++++
 html/voicemailtest.html                      |   83 +
 html/voicemailtest.js                        |  219 +++
 ice.c                                        |  171 +-
 ice.h                                        |   11 +-
 ip-utils.c                                   |  200 +++
 ip-utils.h                                   |  193 +++
 janus.1                                      |  129 ++
 janus.c                                      |  440 ++++-
 janus.ggo                                    |    5 +-
 janus.h                                      |   25 +-
 mainpage.dox                                 |  388 +++--
 plugins/janus_audiobridge.c                  |  492 +++++-
 plugins/janus_echotest.c                     |   30 +-
 plugins/janus_recordplay.c                   |   40 +
 plugins/janus_sip.c                          |  602 ++++---
 plugins/janus_streaming.c                    |  746 +++++++--
 plugins/janus_textroom.c                     |  582 +++++--
 plugins/janus_videocall.c                    |   79 +-
 plugins/janus_videoroom.c                    |  664 ++++++--
 plugins/janus_voicemail.c                    |   19 +
 plugins/plugin.h                             |   13 +-
 plugins/streams/test_gstreamer_1.sh          |    2 +-
 postprocessing/janus-pp-rec.1                |   46 +
 postprocessing/janus-pp-rec.c                |   54 +-
 record.c                                     |   53 +-
 record.h                                     |    6 +
 rtp.c                                        |  160 +-
 rtp.h                                        |   49 +
 transports/janus_http.c                      |   39 +
 transports/janus_mqtt.c                      |   42 +
 transports/janus_pfunix.c                    |   42 +-
 transports/janus_rabbitmq.c                  |   15 +
 transports/janus_websockets.c                |  100 +-
 transports/transport.h                       |   10 +-
 utils.c                                      |   20 +
 utils.h                                      |    5 +
 99 files changed, 18176 insertions(+), 1039 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-voip/janus.git



More information about the Pkg-voip-commits mailing list