Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Suggestion] Started the refactoring of the janus.js #1830

Merged
merged 18 commits into from Dec 4, 2019

Conversation

oscarvadillog
Copy link
Contributor

I admire this project and all the work and effort behind it, in fact it's a key component of my current project.

I would like to participate in the refactoring of the janus.js library. In my opinion, it can be improved a lot in terms of good practices of JavaScript (ES5) without affecting the behavior with the Janus Server.

This is a first commit where I've shown my idea. If you find it interesting let me know and I'll continue refactoring and advancing in this pull request. 😆

@lminiero
Copy link
Member

Before even looking at this, I see a lot of changes to code style that are not needed at all, and make it pretty much impossible to just focus on the changes: e.g., a ton of if( turned to if (. Our code style is the former, so please don't change that and others.

@oscarvadillog
Copy link
Contributor Author

I only tried to align and use always the same code style. The current code has lines with if( and others with if (. Example.. You also use double and single quotes at the same time.

On the other hand, I think there are many conditions that could be simplified, for example:
if(plugin === undefined || plugin === null) { turn to if (!plugin)
or if(apisecret !== null && apisecret !== undefined) turn to if (apisecret)

Of course I respect your style guide, my intention was only to align the code and always use the same rules. I personally like Airbnb guide style, but I understand you have yours.

In any case, this PR was just a suggestion, supposed to be unnecessary. We can close it if you want 😄

@lminiero
Copy link
Member

I'm ok keeping it open, and I appreciate any attempt to improve the code, so thanks for that! But I won't look at it if more than half the changes have nothing to do with the patch, because I honestly don't have the time to discriminate actual improvements from visual things. If you update the patch to just keep the meaningful changes, happy to review.

@oscarvadillog
Copy link
Contributor Author

What about changes like this? 4ba444a

@lminiero
Copy link
Member

Thanks, much more readable and easier to follow this way!

@oscarvadillog
Copy link
Contributor Author

WIP 👍

@oscarvadillog
Copy link
Contributor Author

It may be enough for now. There are many lines already modified.
All demos tested in Chrome and FF and I didn't detect anything broken.

@lminiero
Copy link
Member

@oscarvadillog thanks! Apologies for the late reply, we've been busy with a few conferences. @atoppi @GaijinKa can you have a look?

Copy link
Member

@lminiero lminiero left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Waiting for my (way more JS-savvy than I am) colleagues to look at the code, I gave a quick glance to see if I could spot anything strange, and added some notes. It's not an exhaustive review (I'll do another round in a later moment), and some notes may actually refer to similar occurrences in different parts of the code.

html/janus.js Show resolved Hide resolved
html/janus.js Outdated Show resolved Hide resolved
html/janus.js Outdated Show resolved Hide resolved
html/janus.js Outdated Show resolved Hide resolved
html/janus.js Outdated Show resolved Hide resolved
html/janus.js Outdated Show resolved Hide resolved
html/janus.js Outdated Show resolved Hide resolved
Copy link
Member

@atoppi atoppi left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Except for the comments I posted, it looks good to me.
Thanks @oscarvadillog for the effort.

html/janus.js Show resolved Hide resolved
html/janus.js Outdated Show resolved Hide resolved
html/janus.js Outdated Show resolved Hide resolved
html/janus.js Outdated Show resolved Hide resolved
html/janus.js Outdated Show resolved Hide resolved
html/janus.js Outdated Show resolved Hide resolved
html/janus.js Outdated Show resolved Hide resolved
html/janus.js Outdated Show resolved Hide resolved
html/janus.js Outdated Show resolved Hide resolved
html/janus.js Outdated Show resolved Hide resolved
Copy link
Contributor

@mtltechtemp mtltechtemp left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why not take the opportunity to make it an ES6 class?

In addition to having a more readable code many people would be more inclined to contribute to the code because many stop when they see ES5 class.

Edit: And for backwards compatibility you just have to provide a version transpiled by Babel.

There's also Lebab which could help to perform safe transform on the code. (It does exactly the opposite of what Babel does)

@lminiero
Copy link
Member

lminiero commented Nov 8, 2019

I would personally object to anything that sensibly transforms the code, since again, I'm the one supposed to maintain it, and I have no intention of doing so with a much more complex JS code I'd likely not understand. Besides, I don't want any dependency in there (if that's what you meant by Babel).

@mtltechtemp
Copy link
Contributor

mtltechtemp commented Nov 8, 2019

I would personally object to anything that sensibly transforms the code, since again, I'm the one supposed to maintain it, and I have no intention of doing so with a much more complex JS code I'd likely not understand. Besides, I don't want any dependency in there (if that's what you meant by Babel).

I think you're wrong. ES6 looks like C, C#.
I believe it be easier for you since you're a C guy.

Edit: Babel is not a dependency. It is a code transform tool.

@lminiero
Copy link
Member

lminiero commented Nov 8, 2019

Be that as it may, I won't accept any major change to janus.js until the unified-plan branch is merged. It would generate a ton of conflicts with the changes we have there, and I have to fight with those enough as it is.

@mtltechtemp
Copy link
Contributor

Be that as it may, I won't accept any major change to janus.js until the unified-plan branch is merged. It would generate a ton of conflicts with the changes we have there, and I have to fight with those enough as it is.

It's not about to be fussioned since it's been sleeping since December 8, 2018. (Except for bugfixes)
Or am I wrong?

@lminiero
Copy link
Member

lminiero commented Nov 8, 2019

I still want it to be merged, and it will be merged. I wanted to avoid doing that until enough people test it and tell me it's ok, as I wanted to be sure it wouldn't break too many things. Unfortunately that hasn't happened, so one day I'll just do it.

@mtltechtemp
Copy link
Contributor

I still want it to be merged, and it will be merged. I wanted to avoid doing that until enough people test it and tell me it's ok, as I wanted to be sure it wouldn't break too many things. Unfortunately that hasn't happened, so one day I'll just do it.

Well, you did your job, you warned and asked for feedback.
It's been almost a year, I think it's time.

@lminiero
Copy link
Member

lminiero commented Nov 8, 2019

Well, you did your job, you warned and asked for feedback.
It's been almost a year, I think it's time.

That's what I wanted to hear! 😄
Jokes apart, I'll probably send a last reminder after the IETF (last week of November), to then merge as the first thing on 2020. The plan is to keep the latest 0.x version as a separate branch anyway, rather than a tag as we did so far with versions: while we won't develop new features or accept pull requests on that, it would still allow us to push fixes when needed while people transition to the new version.

@oscarvadillog
Copy link
Contributor Author

Thanks for all your comments @atoppi

What do we do with the for ... in loops? Right now there are 11 loops in the janus.js file

@atoppi
Copy link
Member

atoppi commented Nov 8, 2019

Maybe @lminiero has some comments about this but if you ask me I'd switch the for ... in loops on the arrays with the appropriate for ... of constructs.

@oscarvadillog
Copy link
Contributor Author

Ok, we wait for @lminiero
If you agree I can make that change in all the loops.

@lminiero
Copy link
Member

lminiero commented Nov 8, 2019

Sure: as far as I've understood it should be a simple change in the way the for loop is invoked, and so nothing too disruptive. Thanks again for taking care of all this, it's hugely appreciated!

@oscarvadillog
Copy link
Contributor Author

Already done

@atoppi
Copy link
Member

atoppi commented Nov 8, 2019

Hi @oscarvadillog,
there two issues:

  1. When using the for ... of loop you could already get the element of the array.

This means that the old

for(var index in config.pc.getSenders()) {
  // get "s"
  var s = config.pc.getSenders()[index];

become

for(var s of config.pc.getSenders()) {
  // already got "s"

But you are still reading the element

for(var index of config.pc.getSenders()) {
  var s = config.pc.getSenders()[index];

and this is breaking the code.

  1. You have to change the construct only for the Arrays, not also for the Object.
    For example Janus.sessions is an Object, so you need to keep the for ... in (unless you are not inspecting an iterable object, but this is not our case).

@oscarvadillog
Copy link
Contributor Author

That's right! I'll check back later.

@oscarvadillog
Copy link
Contributor Author

Already done, your review @atoppi please

@lminiero
Copy link
Member

He's currently abroad for a conference, so he'll probably only be able to review when he's back, towards the end of the week. From a quick glance, it looks fine to me, but I don't trust myself much when it comes to JavaScript 🙂

Copy link
Member

@lminiero lminiero left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

While we wait for the green light from @atoppi, I had another look at the changes and added a few more notes. Apart from that, this is good to merge for me 👍 (after I test it, of course, which I haven't done yet)

html/janus.js Outdated Show resolved Hide resolved
html/janus.js Outdated Show resolved Hide resolved
html/janus.js Outdated Show resolved Hide resolved
html/janus.js Outdated Show resolved Hide resolved
html/janus.js Outdated Show resolved Hide resolved
html/janus.js Outdated Show resolved Hide resolved
@oscarvadillog
Copy link
Contributor Author

Resolved. Thx @lminiero 😄

@oscarvadillog
Copy link
Contributor Author

Waiting for the green light from @atoppi ❤️

@atoppi
Copy link
Member

atoppi commented Nov 29, 2019

Sorry guys for the late reply, LGTM 👍

@lminiero
Copy link
Member

lminiero commented Dec 4, 2019

Merging then, thanks @oscarvadillog for the great work!

@lminiero lminiero merged commit 7969b9a into meetecho:master Dec 4, 2019
pawnnail pushed a commit to pawnnail/janus-gateway that referenced this pull request Dec 12, 2019
voicenter added a commit to voicenter/janus-gateway that referenced this pull request Apr 24, 2020
* Updated link to project in resources (docs)

* Add exception var to catch stmt to fix rollup (meetecho#1848)

* Fixed typo

* fix nullptr dereference in streaming plugin (meetecho#1855)

* VP9 SVC fixes (meetecho#1849)

* Fixed SIP hangup not sending CANCEL, when inviting (fixes meetecho#1856)

* Use strtol more, and add checks when atoi is used (meetecho#1852)

* Fixed broken code in AudioBridge

* Fixed regression when setting up DataChannels

* Fix RTP fuzzing target according to recent VP9 changes.

* Fixed rare race condition in HTTP plugin that could cause leak (fixes meetecho#1665)

* add missing closing curly bracket (meetecho#1859)

* Don't scan libnice version if it wasn't retrieved (fixes meetecho#1858)

* Fixed wrong clock rate being used for RTP header updates when using G.722

* Feature/ignore unreachable ice server (meetecho#1854)

* Keep track of clock rates associated to payload types, for RTCP

* Don't send RTCP SR if outgoing media has been disabled via SDP update

* Bumped version in postprocessing tool as well

* Fixes to RTSP latching procedure (fixes meetecho#1536, replaces meetecho#1851) (meetecho#1866)

* New functionality to add custom Contact URI params to SIP REGISTER (meetecho#1874)

* Reduced verbosity of some lines in the SIP plugin

* Reduced default twcc_period value from 1s to 200ms

* SIP plugin: custom (non-standard) headers on incoming events (requests) (meetecho#1873)

* Bumped to version 0.8.0

* Gzip compression utility in the core (and sample event handler) (meetecho#1846)

* New category of plugins for modular logging (meetecho#1814)

* Fixed linking error for post-rocessing tools after recent changes

* Remove option to enable rtx (now always supported, when negotiated) (meetecho#1877)

* Updated documentation to include some info on the new logger modules

* Avoid gzip functions when fuzzing in OSS and add zlib dependency when fuzzing locally.

* Fixed exception to GPL code (see meetecho#713)

* Fixed wrong default folder for loggers

* Added link to new video on Simulcast and SVC to docs

* Add CHANGELOG.md file into the project (meetecho#1885)

* Fix RTSP SETUP when url includes query string parameters (fixes meetecho#1869) (meetecho#1875)

* Added changelog (and info on tagged versions) to documentation

* [Suggestion] Started the refactoring of the janus.js (meetecho#1830)

* Make sure libcurl is available before using CURL_AT_LEAST_VERSION (fixes meetecho#1887)

* Fixed small typos in demos

* Fixed obsolete value for TWCC period default in docs/hints

* Make sure the installed libcurl knows about CURL_AT_LEAST_VERSION

* Fixed variable shadowing

* Added fwrite checks in record.c (warnings only)

* Updated changelog (v0.8.0)

* Bumped to version 0.8.1

* Remove SIPre plugin from the repo (meetecho#1894)

* Binary data support in data channels (meetecho#1878)

* Fixed typo in SIP plugin

* Allow RTCP ports to be picked randomly using 0, in Streaming plugin

* Check if rtcp port is > 0 before creating a RTCP socket.

* Revert "Check if rtcp port is > 0 before creating a RTCP socket."

This reverts commit a0b7dbf.

* Check if rtcp port is > 0 before creating a RTCP socket, in Videoroom plugin.

* Add in mountpoint/forwarder create response the allocated RTCP ports.

* he 'referred_by' field currently holds the SIP URI value copied from the (meetecho#1896)

* Fixed warnings introduced in meetecho#1896

* Fixed leak in SIP plugin (fixes meetecho#1897)

* Fixed occasional memory leak in Streaming plugin (fixes meetecho#1900)

* Fix out of bounds array access for last_spatial_layer (meetecho#1906)

* startup: only close the logger directory if it was opened (meetecho#1903)

* Only close the event handlers directory if it was opened (see meetecho#1903)

* fixed typo (meetecho#1916)

* Move loggers cleanup to end of logger thread (fixes meetecho#1904)

* Fixed late initialization of janus.js constructor callbacks (fixes meetecho#1912)

* Added reference to Snap repo in resources (docs)

* Fixed warnings when building DTLS bio code

* Don't keep TextRoom plugin loaded if data channels were not compiled

* Updated year in demos and docs

* Use sendBeacon instead of sync XHR in onbeforeunload (fixes meetecho#1902) (meetecho#1918)

* Fixed occasional buffer overflow error when post-processing H.264 recordings

* Increase buffer when post-processing VP8/VP9 recordings too (see previous commit)

* Updated Changelog

* Bumped to version 0.8.2

* Fix a possible race condition when joining as a subscriber and destroying the session. (meetecho#1911)

* More verbose output on postprocessing output error

* Fixed reference to deprecated configuration file

* Added check on AudioBridge instance in setup_media (fixes meetecho#1923)

* Added missing check on SDP attribute value existence

* Add new configuration property to add protected folders not to save to (meetecho#1919)

* Fixed undefined reference when building postprocessor utilities

* Better parsing of RTSP messages (see meetecho#1922) (meetecho#1925)

* Fixed undefined reference when building fuzzers

* Add missing mutex unlocks in videoroom message handler.

* Add math library when fuzzing locally.

* Add audio skew compensation to janus-pp-rec. (meetecho#1870)

* Updated man file for janus-pp-rec

* Remove odd respond to automatically responded OPTIONS request (meetecho#1930)

* Fix g_async_queue usage (meetecho#1929)

* typo (meetecho#1934)

AudioBridge documentation typo in request mute|unmute

* Fixed broken links in docs (plugins list)

* Removed deprecated warning in screensharing demo

* Removed deprecated text from screensharing demo

* Fixed helpers not being able to send SUBSCRIBE requests in SIP plugin

* Small tweaks after static analysis

* Added Coverity badge

* Janus Travis CI integration (meetecho#1932)

* Updated Changelog (0.8.2)

* Bumped to version 0.9.0

* Refactoring of core-plugin callbacks and RTP extensions termination (meetecho#1884)

* Support for transport-wide CC on outgoing streams (meetecho#1889)

* Dynamically update NACK queue size depending on RTT (meetecho#1867)

* Fixed broken RTP fuzzer

* Fixed typo when adding audio attribute to SDP

* Fixed RTCP parsing issue found by OSS-fuzz

* Fix volume-related functions in janus.js (meetecho#1935)

* Fixed leak when parsing broken TWCC RTCP message (Credit to OSS-Fuzz)

* Add travis_retry to git clone commands.

* Fixed occasional segfault when parsing TWCC RTCP message (Credit to OSS-Fuzz)

* Add OSS-Fuzz badge.

* Fixed regression on video bitrates when using monodirectional PeerConnections

* Update janus_audiobridge.c (meetecho#1938)

The target of participant should also acknowledge the latest mute/unmute status which has been made by administrator.

* Travis libnice clang flags (meetecho#1941)

Do not check cast-alignment errors when compiling libnice with clang.

* Fixed occasional error messages on console when trying to add RTP extensions

* Update debugging section in Janus documentation.

* Optimized parsing of TWCC RTCP message (Credit to OSS-Fuzz)

* Renamed corpora file

* Avoid RTP header memory misalignment in rtx packets (meetecho#1943)

* We should allow to have ICE-TCP enabled without ICE Lite. Recent versions of libnice allow this combination and gather tcp passive candidates etc. in this setup. (meetecho#1946)

* conf: transports: document events option (meetecho#1952)

* Updated Changelog (0.9.0)

* Bumped to version 0.9.1

* Configurable global prefix for log lines (meetecho#1940)

* add missing callbacks.error check (meetecho#1959)

* janus_sip: add missing check for NULL (meetecho#1963)

Fixes meetecho#1962

* Remove Sofia reference from the title of the SIP demo

* rtp: drop dead code in rtp_header_update callers (meetecho#1964)

* Subtype for some event, and better docs for event handlers (fixes meetecho#1953) (meetecho#1957)

* Added link to new event handlers documentation to the doc main page

* Removed unused variables

* Added license badge to the README

* Small tweaks to demo intro text

* Detect H264 key frames with smaller SPS units (meetecho#1965)

Reduces the H264 keyframe length check from 16 to 6 bytes.
6 bytes seems to be the lower bound of any possibly valid SPS NAL unit,
based on Section 7.3 of the H264 specification.

For reference, we have been observing Chrome 80 producing SPS units
of 12 bytes or less.

* Support for strings as unique IDs in AudioBridge, VideoRoom, TextRoom (meetecho#1880)

* If glib is too old, generate uuid manually when needed (see meetecho#1880)

* Fixed errors creating VideoRoom when strings are used (see meetecho#1880)

* Remove duplicated codecs when answering SIP call (meetecho#1966)

* Fixed a couple of JSON attributes in VideoRoom when strings are used (see meetecho#1880)

* Make sure a publisher exists when asking for a VideoRoom subscriber renegotiation (fixes meetecho#1970)

* Added errno info when socket operations fail in Streaming plugin

* Fixed typos in TextRoom

* Support for strings as unique mountpoint IDs in Streaming plugin (meetecho#1969)

* fix meetecho#1967 (meetecho#1968)

Fixed error callback not being invoked when an HTTP error happens trying to attach to a plugin

* Added checks on nice_address_set_from_string (fixes meetecho#1973)

* Fixed broken method signature in Streaming plugin when not using libcurl

* Remove /root from the list of protected folders. Make comment text more clear.

* Valgrind fixes for sockaddr structs (meetecho#1976)

Avoid use of uninitialized members

* Hide libcurl from pkg-config when testing travis-ci with LIBCURL = NO.

* Fixed leak when creating Streaming mountpoint dynamically

* Reduced log level to info when logger and event handlers are not found (meetecho#1980)

* Always use base SSRC when recording VideoRoom simulcast participant

* Removed wrong comment

* Fixed broken DTMF in SIP demo

* Add UI to SIP demo to remove helpers, when created

* Fixed occasional missing referred-by info in SIP demo

* Reply to incoming REFER with 202 right away, not 100, in SIP plugin

* Added more checks on nice_address_set_from_string (fixes meetecho#1973) (meetecho#1981)

* Several enhancements to SIP demo

* Fixed abort at server shutdown after using SIP transfers

* Fixed typo in SIP demo code

* Updated Changelog (0.9.1)

* Bumped to version 0.9.2

* Make prebuffering in AudioBridge configurable (meetecho#1975)

* Add G.711 support to the AudioBridge plugin (meetecho#1979)

* Added maximum value for AudioBridge prebuffering property

* Converted HTTP transport plugin to single thread (meetecho#1173)

* Added -f to rm in html Makefile.am (fixes meetecho#1985)

* Small fixes for TypeScript declaration file (meetecho#1986)

Based on the current RTCConfiguration spec (https://w3c.github.io/webrtc-pc/#dom-rtcconfiguration), iceServers does not expect an array of strings.
Updating to type provided by TypeScript's lib.dom.d.ts

* ice: ensure that stream is non-NULL (meetecho#1987)

This fixes a crash on later stream checks (e.g., transport_wide_cc et al).

* Fixed typo in querylogger_parameters (copy/paste error) (meetecho#1989)

* Fixed double unlock when listing private rooms in AudioBridge (meetecho#1988)

* Make sure the session still has a reference when cleaning up HTTP requests

* Fixes to leaks and race conditions in VoiceMail plugin (meetecho#1993)

* Several fixes to session management in VideoCall plugin (meetecho#1994)

* update dtls ciphers (meetecho#1995)

* Implement ECDSA Certificate generation (meetecho#1997)

* Small tweaks to meetecho#1997 (renamed, moved and documented RSA property in janus.jcfg)

* Fix rare race condition when claiming sessions (meetecho#1990)

* Fix occasional deadlock in VideoRoom (2) (credits to @mivuDing, fixes meetecho#1982) (meetecho#1984)

* Added option to enforce validation on DTLS certificates (meetecho#1992)

Made DTLS ciphers configurable as well

* Fixed typo when renegotiating audio in janus.js (fixes meetecho#2002)

* Added option to ignore mDNS candidates (meetecho#1998)

* Fixed deadlock when using claim on HTTP transport (fixes meetecho#2000)

* Support for RTSP 'Content-Base' header in Streaming plugin (meetecho#1999)

* Added link to FOSDEM 2020 talk on RTP forwarders to the docs

* Fixed small leak in SIP plugin when holding calls

* Added called URI to 'incomingcall' and 'missed_call' events in SIP plugin

* Add repos for openSUSE and SUSE (meetecho#2009)

* Use user_id_str for kicked, leaving, and unpublished events, if enabled. (meetecho#2010)

Co-authored-by: Michael Shiel <mshiel@icehealthsystems.com>

* http_transport: add NULL checks (meetecho#2012)

Refs meetecho#2005

* Update media direction in SIP plugin if remote address is 0.0.0.0 ('hold' fix) (meetecho#2013)

* Prepare RTCP Sender Reports by considering the last RTP timestamp sent. (meetecho#2007)

* Track pending nack cleanup tasks and cancel them when freeing a stream. (meetecho#2014)

* Fixed typo in janus.js error code (fixes meetecho#2018

* Reverted change on janus.js (see meetecho#2018)

* Resolve mDNS candidates asynchronously with GResolver (see meetecho#1998) (meetecho#2004)

* Reference count janus_request instances (meetecho#2020)

Added better management of refcount on HTTP session when using it too, and refcount support to hanus_http_msg as well

* Updates to mutex unlocking in textroom and videoroom plugins (meetecho#2026)

* Updated Changelog (0.9.2)

* Bumped to version 0.9.3

* Add Python aiortc-based functional testing. (meetecho#1971)

* test_aiortc: cleanup (meetecho#2027)

* Fixed missing refcount init for Admin API (fixes meetecho#2029)

* Bumping back to 0.9.2 to re-tag

* Updated changelog for 0.9.2

* Bumped to version 0.9.3 (again)

* janus_http: return earlier if request is NULL (meetecho#2031)

* Fixed janus-pp-rec build warnings when using ffmpeg >= 4.x

* Fixed VideoRoom destroy not working when using strings

* Fixed av_register_all deprecation check in post-processor

* plugins: drop tautology (meetecho#2041)

gateway is always set before initialized, so the latter is always true.

* Don't set ICE credentials when parsing remote credentials (meetecho#2046)

* Detect libsrtp(2) using pkg-config (fixes meetecho#2019) (meetecho#2033)

* Added support for static Opus files to Streaming plugin (meetecho#2040)

* Added support for generic metadata to Streaming mountpoints

* Fixed printout of metadata in Streaming demo

* Added notes on building libsrtp (see meetecho#2024)

* Add configurable DSCP ToS for PeerConnections (meetecho#2055)

* Always add remote candidates from the libnice loop (see meetecho#2045) (meetecho#2048)

* Fixed Streaming destroy not working when using strings

* Use refcount for Streaming plugin helper threads (meetecho#2039)

* Added option to disable building AES-GCM support (see meetecho#2024 and meetecho#2054)

* Fixed typo

* Fixed outdated info in VideoRoom docs

* Fixed syntax error in sample Streaming plugin configuration file

* Support for additional constraints on screenshare media (meetecho#2043)

* refactoring-clean up (const-var, semicolons, ===, etc.) (meetecho#2044)

* Reference subscriber when handling related messages (see meetecho#2045) (meetecho#2061)

* Added option to configure time needed to detect a missing simulcast substream (meetecho#2063)

* Reverted isTrickleEnabled check in janus.js (fixes meetecho#2064)

* Don't show warnings for rtx RTCP packets

* Made libnice warning clearer, and upped suggested version (fixes meetecho#2069)

* Add missing info to videoroom "list" response (meetecho#2068)

* Use custom GSource to handle HTTP request timeouts (see meetecho#2062 and meetecho#2066) (meetecho#2075)

* Define the libnice version string as extern in version.h (fixes gcc10 error)

* Fixed AudioBridge create API not working properly when using string IDs

* Fixed a few typos in AudioBridge errors

* Fix copy-paste error in Streaming plugin docs

* Fix libasan use after free in janus_videoroom_handler when events are enabled (meetecho#2091)

* Added project to resources in the docs

* Return mountpoint IP addresses, if a bind interface/IP was provided

* Swap RR/SR Report Blocks if the first block contains rtx data. (meetecho#2089)

* Add support for playback of audio files in AudioBridge (meetecho#2088)

* Updated Changelog (0.9.3)

* Bumped to version 0.9.4

* Fixed returned address when adding multicast Streaming mountpoints

* More checks when hanging up VideoRoom subscriber (see meetecho#2087) (meetecho#2093)

* Added new docker image to the resources in the docs

* Updated AudioBridge documentation with new playback feature

* Don't wait forever for candidates when half-trickling

* Add some missing static declarations to HTTP and WS transports.

Co-authored-by: Lorenzo Miniero <lminiero@gmail.com>
Co-authored-by: Agustin Polo <poloagustin@gmail.com>
Co-authored-by: Yongje Lee <yongje.lee@hpcnt.com>
Co-authored-by: Alessandro Toppi <atoppi@meetecho.com>
Co-authored-by: Sebastian Schmid <sebastian.j.kummer@gmail.com>
Co-authored-by: Imer Husejnovic <imer90@gmail.com>
Co-authored-by: Oscar <oscar.vadillog@gmail.com>
Co-authored-by: Irek <34670509+pawnnail@users.noreply.github.com>
Co-authored-by: Tristan Matthews <tmatth@videolan.org>
Co-authored-by: Jon Rafkind <jon@rafkind.com>
Co-authored-by: kuekerino <20779891+kuekerino@users.noreply.github.com>
Co-authored-by: Yurii Cherniavskyi <yurii.cherniavskyi@gmail.com>
Co-authored-by: Meirza Arson <klanjabrik@gmail.com>
Co-authored-by: Groupboard <davidj@groupboard.com>
Co-authored-by: Cameron Lucas <clucas@clucas.info>
Co-authored-by: hxl-dy <hexulei@dyinnovations.com>
Co-authored-by: Alessandro Amirante <alex@meetecho.com>
Co-authored-by: mp16 <51138229+mp16@users.noreply.github.com>
Co-authored-by: Paul Zhang <pszhang92@gmail.com>
Co-authored-by: Philipp Hancke <fippo@goodadvice.pages.de>
Co-authored-by: Sean DuBois <sean@pion.ly>
Co-authored-by: Ancor Gonzalez Sosa <ancor@suse.de>
Co-authored-by: Michael Shiel <michaelshiel@users.noreply.github.com>
Co-authored-by: Michael Shiel <mshiel@icehealthsystems.com>
Co-authored-by: agclark81 <agclark@technolutions.com>
Co-authored-by: Alex Pavlov <alien.pavlov@gmail.com>
Co-authored-by: alexamirante <alexamirante@users.noreply.github.com>
Co-authored-by: Federico Lorenzi <florenzi@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants