-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Apache-2.0 license and some note to README.md. (#9)
* Add Apache-2.0 license and some notes to README.md. * Add user link. * update. Updated readme detailing changes from original (#42) Adding membrane framework (#51) Co-authored-by: David Zhao <[email protected]> Updated readme (#83)
- Loading branch information
1 parent
8505a98
commit b6c65fc
Showing
2 changed files
with
65 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
################################################################################### | ||
|
||
The following modifications follow Apache License 2.0 from shiguredo. | ||
|
||
https://github.com/webrtc-sdk/webrtc/commit/dfec53e93a0a1cb93f444caf50f844ec0068c7b7 | ||
https://github.com/webrtc-sdk/webrtc/commit/403b4678543c5d4ac77bd1ea5753c02637b3bb89 | ||
https://github.com/webrtc-sdk/webrtc/commit/77d5d685a90fb4bded17835ae72ec6671b26d696 | ||
|
||
Apache License 2.0 | ||
|
||
Copyright 2019-2021, Wandbox LLC (Original Author) | ||
Copyright 2019-2021, Shiguredo Inc. | ||
|
||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
|
||
http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
|
||
##################################################################################### |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,47 @@ | ||
**WebRTC is a free, open software project** that provides browsers and mobile | ||
applications with Real-Time Communications (RTC) capabilities via simple APIs. | ||
The WebRTC components have been optimized to best serve this purpose. | ||
# WebRTC-SDK | ||
|
||
**Our mission:** To enable rich, high-quality RTC applications to be | ||
developed for the browser, mobile platforms, and IoT devices, and allow them | ||
all to communicate via a common set of protocols. | ||
This repository contains a fork of WebRTC from Google with various improvements. | ||
|
||
The WebRTC initiative is a project supported by Google, Mozilla and Opera, | ||
amongst others. | ||
## Main changes | ||
|
||
### Development | ||
### All | ||
|
||
See [here][native-dev] for instructions on how to get started | ||
developing with the native code. | ||
- Dynamically acquire decoder to mitigate decoder limitations [#25](https://github.com/webrtc-sdk/webrtc/pull/25) | ||
- Support for video simulcast with hardware & software encoders [patch](https://github.com/webrtc-sdk/webrtc/commit/ee030264e2274a2c90548a99b448782049e48fb4) | ||
- Frame cryptor support (for end-to-end encryption) [patch](https://github.com/webrtc-sdk/webrtc/commit/3a2c008529a15fecde5f979a6ebb75c05463d45e) | ||
|
||
[Authoritative list](native-api.md) of directories that contain the | ||
native API header files. | ||
### Android | ||
|
||
### More info | ||
- WrappedVideoDecoderFactory [#74](https://github.com/webrtc-sdk/webrtc/pull/74) | ||
|
||
* Official web site: http://www.webrtc.org | ||
* Master source code repo: https://webrtc.googlesource.com/src | ||
* Samples and reference apps: https://github.com/webrtc | ||
* Mailing list: http://groups.google.com/group/discuss-webrtc | ||
* Continuous build: https://ci.chromium.org/p/webrtc/g/ci/console | ||
* [Coding style guide](g3doc/style-guide.md) | ||
* [Code of conduct](CODE_OF_CONDUCT.md) | ||
* [Reporting bugs](docs/bug-reporting.md) | ||
* [Documentation](g3doc/sitemap.md) | ||
### iOS / Mac | ||
|
||
[native-dev]: https://webrtc.googlesource.com/src/+/main/docs/native-code/ | ||
- Sane audio handling [patch](https://github.com/webrtc-sdk/webrtc/commit/272127d457ab48e36241e82549870405864851f6) | ||
- Do not acquire microphone/permissions unless actively publishing audio | ||
- Abililty to bypass voice processing on iOS | ||
- Remove hardcoded limitation of outputting only to right speaker on MacBook Pro | ||
- Desktop capture for Mac [patch](https://github.com/webrtc-sdk/webrtc/commit/8e832d1163644ab504412c9b8f3ba8510d9890d6) | ||
|
||
### Windows | ||
|
||
- Fixed unable to acquire Mic when built-in AEC is enabled [#29](https://github.com/webrtc-sdk/webrtc/pull/29) | ||
|
||
## LICENSE | ||
|
||
- [Google WebRTC](https://chromium.googlesource.com/external/webrtc.git), is licensed under [BSD license](/LICENSE). | ||
|
||
- Contains patches from [shiguredo-webrtc-build](https://github.com/shiguredo-webrtc-build), licensed under [Apache 2.0](/NOTICE). | ||
|
||
- Contains changes from LiveKit, licensed under Apache 2.0. | ||
|
||
## Who is using this project | ||
|
||
- [flutter-webrtc](https://github.com/flutter-webrtc/flutter-webrtc) | ||
|
||
- [LiveKit](https://github.com/livekit) | ||
|
||
- [Membrane Framework](https://github.com/membraneframework/membrane_rtc_engine) | ||
|
||
- [Louper](https://louper.io) | ||
|
||
Are you using WebRTC SDK in your framework or app? Feel free to open a PR and add yourself! |