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 73 files
+108 −0 .github/workflows/ci.yml
+2 −1 .github/workflows/pr-desc-lint.yml
+132 −0 .github/workflows/samples.yaml
+19 −1 CMake/Dependencies/libmbedtls-CMakeLists.txt
+11 −1 CMake/Dependencies/libopenssl-CMakeLists.txt
+3 −1 CMake/Dependencies/libsrtp-CMakeLists.txt
+26 −6 CMake/Dependencies/libwebsockets-CMakeLists.txt
+10 −1 CMake/FindMbedTLS.cmake
+139 −20 CMakeLists.txt
+128 −5 README.md
+14 −0 configs/config_mbedtls.h
+199 −0 docs/NACK_RTX.md
+435 −0 docs/SDP_LIMITS.md
+221 −0 docs/TROUBLESHOOTING_H265_FRAMES.md
+15 −1 samples/CMakeLists.txt
+228 −12 samples/common/Common.c
+25 −6 samples/common/Samples.h
+19 −2 samples/p2p/kvsWebRTCClientMaster.c
+4 −0 samples/p2p/kvsWebRTCClientMasterGstSample.c
+4 −0 samples/p2p/kvsWebRTCClientViewer.c
+4 −0 samples/p2p/kvsWebRTCClientViewerGstSample.c
+283 −0 samples/p2p/multi-track/master_4video_0audio.c
+308 −0 samples/p2p/multi-track/master_4video_1audio.c
+4 −0 samples/webrtcstorage/kvsWebRTCStorageAudioVideoMasterGstSample.c
+4 −0 samples/webrtcstorage/kvsWebRTCStorageAudioVideoMasterSample.c
+4 −0 samples/webrtcstorage/kvsWebRTCStorageVideoOnlyMasterGstSample.c
+4 −0 samples/webrtcstorage/kvsWebRTCStorageVideoOnlyMasterSample.c
+89 −0 scripts/generate_multi_track_frames.sh
+22 −2 src/include/com/amazonaws/kinesis/video/webrtcclient/Include.h
+56 −0 src/source/Crypto/Crypto.c
+66 −4 src/source/Crypto/Crypto.h
+3 −1 src/source/Crypto/Dtls.h
+171 −4 src/source/Crypto/Dtls_mbedtls.c
+42 −30 src/source/Crypto/Dtls_openssl.c
+17 −2 src/source/Crypto/Tls.h
+7 −1 src/source/Crypto/Tls_mbedtls.c
+1 −1 src/source/Crypto/Tls_openssl.c
+23 −15 src/source/Ice/IceAgent.c
+27 −0 src/source/Ice/TurnConnection.c
+13 −0 src/source/Ice/TurnConnection.h
+8 −0 src/source/Ice/TurnConnectionStateMachine.c
+36 −1 src/source/Include_i.h
+6 −1 src/source/PeerConnection/JitterBuffer.c
+78 −20 src/source/PeerConnection/PeerConnection.c
+4 −1 src/source/PeerConnection/PeerConnection.h
+16 −4 src/source/PeerConnection/Retransmitter.c
+112 −70 src/source/PeerConnection/Rtcp.c
+19 −3 src/source/PeerConnection/Rtp.c
+27 −0 src/source/PeerConnection/Rtp.h
+286 −38 src/source/PeerConnection/SessionDescription.c
+1 −0 src/source/PeerConnection/SessionDescription.h
+15 −2 src/source/Rtcp/RtcpPacket.h
+19 −5 src/source/Rtp/Codecs/RtpH264Payloader.c
+5 −0 src/source/Rtp/Codecs/RtpVP8Payloader.c
+145 −1 src/source/Sctp/Sctp.c
+28 −1 src/source/Sctp/Sctp.h
+2 −1 src/source/Sdp/Deserialize.c
+26 −3 src/source/Sdp/Sdp.h
+11 −1 src/source/Signaling/LwsApiCalls.c
+21 −0 src/source/Signaling/Signaling.c
+1 −0 tst/CMakeLists.txt
+232 −0 tst/DataChannelFunctionalityTest.cpp
+4 −2 tst/DtlsApiTest.cpp
+71 −0 tst/IceFunctionalityTest.cpp
+89 −0 tst/JitterBufferFunctionalityTest.cpp
+645 −11 tst/PeerConnectionFunctionalityTest.cpp
+450 −0 tst/RtcpFunctionalityTest.cpp
+147 −0 tst/RtpFunctionalityTest.cpp
+957 −28 tst/SdpApiTest.cpp
+226 −0 tst/SdpBufferSizeConfigTest.cpp
+275 −0 tst/SignalingApiTest.cpp
+128 −0 tst/TurnConnectionFunctionalityTest.cpp
+9 −5 tst/WebRTCClientTestFixture.cpp
Loading