-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
41 changed files
with
402 additions
and
120 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
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
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
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,70 @@ | ||
# | ||
# .gitignore | ||
# | ||
|
||
*.o | ||
*.a | ||
*.lo | ||
*.la | ||
*.pc | ||
.*.swp | ||
*.dep | ||
*.deps | ||
zcontrib.*.tar.bz2 | ||
build/* | ||
.DS_Store | ||
.dirstamp | ||
config.log | ||
config.h | ||
config.status | ||
stamp-h1 | ||
.libs | ||
|
||
re/build* | ||
re/libre.dylib | ||
re/libre.so | ||
|
||
rem/build* | ||
rem/librem.dylib | ||
rem/librem.so | ||
|
||
ogg/Makefile.in | ||
ogg/aclocal.m4 | ||
ogg/autom4te.cache/ | ||
ogg/compile | ||
ogg/config.guess | ||
ogg/config.h.in | ||
ogg/config.sub | ||
ogg/configure | ||
ogg/depcomp | ||
ogg/doc/Makefile.in | ||
ogg/doc/libogg/Makefile.in | ||
ogg/include/Makefile.in | ||
ogg/include/ogg/Makefile.in | ||
ogg/install-sh | ||
ogg/ltmain.sh | ||
ogg/missing | ||
ogg/src/Makefile.in | ||
|
||
opus/INSTALL | ||
opus/Makefile.in | ||
opus/aclocal.m4 | ||
opus/autom4te.cache/ | ||
opus/compile | ||
opus/config.guess | ||
opus/config.h.in | ||
opus/config.sub | ||
opus/configure | ||
opus/depcomp | ||
opus/doc/Makefile.in | ||
opus/install-sh | ||
opus/ltmain.sh | ||
opus/m4/libtool.m4 | ||
opus/m4/ltoptions.m4 | ||
opus/m4/ltsugar.m4 | ||
opus/m4/ltversion.m4 | ||
opus/m4/lt~obsolete.m4 | ||
opus/missing | ||
opus/package_version | ||
opus/test-driver | ||
|
Submodule cryptobox-c
updated
11 files
+3 −3 | .travis.yml | |
+3 −0 | CHANGELOG.txt | |
+166 −44 | Cargo.lock | |
+4 −4 | Cargo.toml | |
+9 −6 | Makefile | |
+1 −1 | README.md | |
+1 −1 | deb/DEBIAN/control | |
+9 −0 | src/cbox.h | |
+12 −0 | src/lib.rs | |
+7 −5 | src/log.rs | |
+29 −0 | test/main.c |
Submodule re
updated
4 files
+1 −0 | include/re_srtp.h | |
+15 −0 | src/srtp/srtp.c | |
+1 −0 | src/srtp/srtp.h | |
+2 −2 | src/srtp/stream.c |
Submodule rem
updated
20 files
+4 −4 | Makefile | |
+4 −1 | README.md | |
+18 −0 | debian/changelog | |
+3 −3 | docs/COPYING | |
+39 −0 | docs/ChangeLog | |
+2 −0 | include/rem_audio.h | |
+21 −0 | include/rem_dtmf.h | |
+32 −0 | include/rem_goertzel.h | |
+0 −175 | mk/win32/rem.vcproj | |
+121 −0 | mk/win32/rem.vcxproj | |
+137 −0 | mk/win32/rem.vcxproj.filters | |
+1 −1 | rpm/rem.spec | |
+8 −3 | src/auresamp/resamp.c | |
+193 −0 | src/dtmf/dec.c | |
+7 −0 | src/dtmf/mod.mk | |
+60 −0 | src/goertzel/goertzel.c | |
+7 −0 | src/goertzel/mod.mk | |
+41 −9 | src/vid/draw.c | |
+72 −0 | src/vid/frame.c | |
+176 −5 | src/vidconv/vconv.c |
Submodule rew
updated
5 files
+4 −0 | include/re_trice.h | |
+7 −3 | src/trice/connchk.c | |
+45 −2 | src/trice/lcand.c | |
+15 −0 | src/trice/trice.c | |
+6 −0 | src/trice/trice.h |
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,5 +1,4 @@ | ||
|
||
|
||
Changes introduced in AVS 5.1 | ||
============================= | ||
|
||
|
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,5 +1,4 @@ | ||
|
||
|
||
Changes introduced in AVS 5.2 | ||
============================= | ||
|
||
|
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,5 +1,4 @@ | ||
|
||
|
||
Changes introduced in AVS 5.3 | ||
============================= | ||
|
||
|
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,5 +1,4 @@ | ||
|
||
|
||
Changes introduced in AVS 5.6 | ||
============================= | ||
|
||
|
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,5 +1,4 @@ | ||
|
||
|
||
Changes introduced in AVS 6.0 | ||
============================= | ||
|
||
|
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,5 +1,4 @@ | ||
|
||
|
||
Changes introduced in AVS 6.2 | ||
============================= | ||
|
||
|
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,5 +1,4 @@ | ||
|
||
|
||
Changes introduced in AVS 6.6 | ||
============================= | ||
|
||
|
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,3 +1,4 @@ | ||
|
||
Changes introduced in AVS 6.7 | ||
============================= | ||
|
||
|
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,5 +1,4 @@ | ||
|
||
|
||
Changes introduced in AVS 7.0 | ||
============================= | ||
|
||
|
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
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
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
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
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,47 @@ | ||
#! /usr/bin/env python3 | ||
|
||
import json | ||
import os | ||
import re | ||
import subprocess | ||
import sys | ||
|
||
github_base = 'https://api.github.com/repos' | ||
repo = 'wireapp/prebuilt-webrtc-binaries' | ||
dest_dir = 'contrib/webrtc' | ||
|
||
release = sys.argv[1] | ||
token = os.environ.get('GITHUB_TOKEN') | ||
|
||
print('Repo: {}'.format(repo)) | ||
print('Release: {}'.format(release)) | ||
#print('Token: {}'.format(token)) | ||
|
||
cmd = ['curl', '-X', 'GET', '-u', '{}:x-oauth-basic'.format(token), | ||
'{}/{}/releases'.format(github_base, repo)] | ||
releases = json.loads(subprocess.check_output(cmd)) | ||
|
||
if not isinstance(releases, list): | ||
print('Error {}'.format(releases)) | ||
exit(-1) | ||
|
||
if len(releases) < 1: | ||
print('Couldnt find release {}'.format(release)) | ||
exit(-1) | ||
|
||
found = None | ||
for r in releases: | ||
if r['tag_name'] == release: | ||
found = r | ||
break | ||
|
||
if not found: | ||
print('Couldnt find release {}'.format(release)) | ||
exit(-1) | ||
|
||
print('Getting assets for {}'.format(release)) | ||
for a in found['assets']: | ||
print(a['name']) | ||
cmd = ['curl', '-L', '-u', '{}:x-oauth-basic'.format(token), | ||
'-H', 'Accept: application/octet-stream', a['url'], '-o', '{}/{}'.format(dest_dir, a['name'])] | ||
subprocess.check_output(cmd) |
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
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,8 @@ | ||
# | ||
# mod.mk | ||
# | ||
|
||
|
||
AVS_SRCS += \ | ||
ccall/ccall.c | ||
|
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
Oops, something went wrong.