Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion third_party/amazon-kinesis-video-streams-webrtc-sdk-c/repo
Submodule repo updated 70 files
+1 −1 .github/build_windows_mbedtls.bat
+1 −1 .github/build_windows_openssl.bat
+1 −1 .github/workflows/cache-dualstack-test.yml
+1 −1 .github/workflows/cache-media-storage-reverse-test.yml
+1 −1 .github/workflows/cache-media-storage-test.yml
+47 −9 .github/workflows/ci.yml
+1 −1 .github/workflows/codecov.yml
+1 −0 .github/workflows/cross-compilation.yml
+11 −2 .github/workflows/profile-stats.yml
+119 −8 .github/workflows/samples.yaml
+3 −3 .github/workflows/sanitizers.yaml
+1 −1 .github/workflows/storage-samples.yml
+10 −1 CMake/Dependencies/libkvsCommonLws-CMakeLists.txt
+1 −1 CMake/Dependencies/libmbedtls-CMakeLists.txt
+17 −2 CMake/Dependencies/libsrtp-CMakeLists.txt
+1 −0 CMake/Dependencies/libusrsctp-CMakeLists.txt
+1 −1 CMake/Dependencies/libwebsockets-CMakeLists.txt
+11 −2 CMake/Utilities.cmake
+128 −71 CMakeLists.txt
+43 −28 README.md
+428 −0 docs/TWCC.md
+121 −40 samples/common/Common.c
+2 −2 samples/common/GstMedia.c
+6 −6 samples/common/Samples.h
+3 −3 samples/common/StaticMedia.c
+9 −5 samples/p2p/GstAudioVideoReceiver.c
+16 −0 scripts/prepare-channel.sh
+108 −0 scripts/run-gst-sample.sh
+78 −0 scripts/run-static-sample.sh
+118 −0 src/include/com/amazonaws/kinesis/video/webrtcclient/Include.h
+31 −0 src/source/Crypto/Dtls.c
+22 −0 src/source/Crypto/Dtls.h
+163 −3 src/source/Crypto/Dtls_mbedtls.c
+135 −4 src/source/Crypto/Dtls_openssl.c
+140 −6 src/source/Ice/IceAgent.c
+11 −0 src/source/Ice/IceAgent.h
+3 −3 src/source/Ice/NatBehaviorDiscovery.c
+13 −5 src/source/Ice/SocketConnection.c
+1 −1 src/source/Ice/SocketConnection.h
+4 −2 src/source/Ice/TurnConnection.c
+4 −0 src/source/Include_i.h
+128 −12 src/source/PeerConnection/PeerConnection.c
+20 −2 src/source/PeerConnection/PeerConnection.h
+231 −10 src/source/PeerConnection/Rtcp.c
+44 −1 src/source/PeerConnection/Rtcp.h
+77 −30 src/source/PeerConnection/Rtp.c
+5 −0 src/source/PeerConnection/Rtp.h
+34 −6 src/source/PeerConnection/SessionDescription.c
+6 −3 src/source/Rtcp/RtcpPacket.c
+8 −3 src/source/Rtp/Codecs/RtpH264Payloader.c
+5 −1 src/source/Rtp/Codecs/RtpH265Payloader.c
+2 −1 src/source/Rtp/Codecs/RtpVP8Payloader.c
+7 −0 src/source/Rtp/RtpPacket.c
+1 −1 src/source/Sctp/Sctp.c
+1 −0 src/source/Sctp/Sctp.h
+2 −6 src/source/Signaling/LwsApiCalls.c
+263 −29 src/source/Srtp/SrtpSession.c
+36 −8 src/source/Stun/Stun.c
+23 −2 tst/DataChannelApiTest.cpp
+68 −0 tst/DataChannelFunctionalityTest.cpp
+124 −12 tst/DtlsFunctionalityTest.cpp
+6 −0 tst/IceApiTest.cpp
+0 −2 tst/IceFunctionalityTest.cpp
+75 −0 tst/PeerConnectionApiTest.cpp
+269 −0 tst/PeerConnectionFunctionalityTest.cpp
+1,292 −25 tst/RtcpFunctionalityTest.cpp
+262 −12 tst/RtpFunctionalityTest.cpp
+529 −4 tst/SdpApiTest.cpp
+98 −0 tst/StunApiTest.cpp
+41 −2 tst/StunFunctionalityTest.cpp
Loading