Skip to content

Commit

Permalink
add link-c
Browse files Browse the repository at this point in the history
  • Loading branch information
okyeron committed Aug 18, 2022
1 parent 299dca5 commit 86982ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third-party/link
Submodule link updated 93 files
+63 −119 .appveyor.yml
+167 −0 .travis.yml
+1 −1 AbletonLinkConfig.cmake
+0 −2 CMakeLists.txt
+2 −2 README.md
+1 −3 TEST-PLAN.md
+4 −4 ci/check-formatting.py
+0 −6 ci/configure.py
+1 −1 cmake_include/CatchConfig.cmake
+0 −4 cmake_include/ConfigureCompileFlags.cmake
+6 −6 examples/CMakeLists.txt
+1 −1 examples/esp32/README.md
+2 −3 examples/esp32/main/main.cpp
+1 −2 examples/linkaudio/AudioEngine.cpp
+2 −2 examples/linkaudio/AudioPlatform_Asio.cpp
+1 −2 examples/linkaudio/AudioPlatform_CoreAudio.cpp
+2 −2 examples/linkaudio/AudioPlatform_Portaudio.cpp
+45 −46 examples/linkhut/main.cpp
+0 −44 extensions/abl_link/.clang-format
+0 −19 extensions/abl_link/CMakeLists.txt
+0 −17 extensions/abl_link/README.md
+0 −19 extensions/abl_link/abl_link.cmake
+0 −269 extensions/abl_link/examples/link_hut/main.c
+0 −352 extensions/abl_link/include/abl_link.h
+0 −214 extensions/abl_link/src/abl_link.cpp
+4 −12 include/CMakeLists.txt
+2 −1 include/ableton/Link.hpp
+9 −11 include/ableton/Link.ipp
+7 −10 include/ableton/discovery/NetworkByteStreamSerializable.hpp
+2 −4 include/ableton/discovery/Payload.hpp
+2 −2 include/ableton/discovery/PeerGateway.hpp
+60 −13 include/ableton/discovery/PeerGateways.hpp
+2 −2 include/ableton/discovery/Service.hpp
+2 −2 include/ableton/discovery/v1/Messages.hpp
+1 −1 include/ableton/link/Beats.hpp
+95 −0 include/ableton/link/CircularFifo.hpp
+87 −94 include/ableton/link/Controller.hpp
+2 −2 include/ableton/link/Gateway.hpp
+8 −12 include/ableton/link/HostTimeFilter.hpp
+143 −0 include/ableton/link/Kalman.hpp
+30 −27 include/ableton/link/LinearRegression.hpp
+47 −28 include/ableton/link/Measurement.hpp
+2 −3 include/ableton/link/MeasurementEndpointV4.hpp
+55 −26 include/ableton/link/MeasurementService.hpp
+2 −2 include/ableton/link/NodeId.hpp
+1 −2 include/ableton/link/NodeState.hpp
+2 −4 include/ableton/link/PeerState.hpp
+74 −45 include/ableton/link/Peers.hpp
+13 −2 include/ableton/link/PingResponder.hpp
+0 −34 include/ableton/link/SessionState.hpp
+7 −4 include/ableton/link/Sessions.hpp
+2 −2 include/ableton/link/StartStopState.hpp
+1 −2 include/ableton/link/Timeline.hpp
+0 −121 include/ableton/link/TripleBuffer.hpp
+2 −2 include/ableton/link/v1/Messages.hpp
+4 −24 include/ableton/platforms/Config.hpp
+0 −2 include/ableton/platforms/asio/AsioWrapper.hpp
+29 −33 include/ableton/platforms/asio/Context.hpp
+7 −3 include/ableton/platforms/asio/LockFreeCallbackDispatcher.hpp
+0 −48 include/ableton/platforms/darwin/ThreadFactory.hpp
+14 −34 include/ableton/platforms/esp32/Context.hpp
+1 −1 include/ableton/platforms/esp32/LockFreeCallbackDispatcher.hpp
+2 −3 include/ableton/platforms/esp32/ScanIpIfAddrs.hpp
+0 −4 include/ableton/platforms/linux/Clock.hpp
+0 −45 include/ableton/platforms/linux/ThreadFactory.hpp
+1 −2 include/ableton/platforms/stl/Random.hpp
+0 −52 include/ableton/platforms/windows/ThreadFactory.hpp
+2 −2 include/ableton/platforms/windows/Windows.hpp
+0 −2 include/ableton/test/CatchWrapper.hpp
+5 −0 include/ableton/test/serial_io/Context.hpp
+3 −4 src/CMakeLists.txt
+30 −35 src/ableton/discovery/tst_InterfaceScanner.cpp
+150 −154 src/ableton/discovery/tst_Payload.cpp
+66 −49 src/ableton/discovery/tst_PeerGateway.cpp
+54 −43 src/ableton/discovery/tst_PeerGateways.cpp
+140 −119 src/ableton/discovery/tst_UdpMessenger.cpp
+53 −56 src/ableton/link/tst_Beats.cpp
+83 −0 src/ableton/link/tst_CircularFifo.cpp
+116 −117 src/ableton/link/tst_ClientSessionTimelines.cpp
+139 −139 src/ableton/link/tst_Controller.cpp
+26 −27 src/ableton/link/tst_HostTimeFilter.cpp
+35 −17 src/ableton/link/tst_Kalman.cpp
+35 −59 src/ableton/link/tst_LinearRegression.cpp
+54 −51 src/ableton/link/tst_Measurement.cpp
+0 −66 src/ableton/link/tst_Median.cpp
+104 −87 src/ableton/link/tst_Peers.cpp
+138 −141 src/ableton/link/tst_Phase.cpp
+54 −47 src/ableton/link/tst_PingResponder.cpp
+1 −1 src/ableton/link/tst_StartStopState.cpp
+72 −44 src/ableton/link/tst_Tempo.cpp
+16 −20 src/ableton/link/tst_Timeline.cpp
+0 −165 src/ableton/link/tst_TripleBuffer.cpp
+8,810 −15,163 third_party/catch/catch.hpp

0 comments on commit 86982ea

Please sign in to comment.