├── .appveyor.yml ├── .clang-format ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question.md └── workflows │ ├── abi.yml │ ├── android.yaml │ ├── codeql.yml │ ├── cxx03-ubuntu.yaml │ ├── cxx11-macos.yaml │ ├── cxx11-ubuntu.yaml │ ├── cxx11-win.yaml │ ├── iOS.yaml │ └── s390x-focal.yaml ├── .gitignore ├── .gitmodules ├── .lgtm.yml ├── .travis.yml ├── CMakeLists.txt ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── apps ├── apputil.cpp ├── apputil.hpp ├── logsupport.cpp ├── logsupport.hpp ├── logsupport_appdefs.cpp ├── socketoptions.cpp ├── socketoptions.hpp ├── srt-file-transmit.cpp ├── srt-live-transmit.cpp ├── srt-tunnel.cpp ├── statswriter.cpp ├── statswriter.hpp ├── support.maf ├── transmitbase.hpp ├── transmitmedia.cpp ├── transmitmedia.hpp ├── uriparser.cpp ├── uriparser.hpp ├── verbose.cpp └── verbose.hpp ├── cmake_object_lib_support.c ├── codecov.yml ├── common ├── filelist_win32.maf ├── win │ ├── syslog_defs.h │ ├── unistd.h │ └── wintime.h └── win_time.cpp ├── configure ├── configure-data.tcl ├── docs ├── API │ ├── API-functions.md │ ├── API-socket-options.md │ ├── API.md │ ├── configuration-guidelines.md │ ├── rejection-codes.md │ └── statistics.md ├── README.md ├── apps │ ├── srt-file-transmit.md │ ├── srt-live-transmit.md │ ├── srt-test-multiplex.md │ ├── srt-test-relay.md │ └── srt-tunnel.md ├── build │ ├── build-android.md │ ├── build-iOS.md │ ├── build-linux.md │ ├── build-macOS.md │ ├── build-options.md │ ├── build-win.md │ └── package-managers.md ├── dev │ ├── developers-guide.md │ ├── low-level-info.md │ └── making-srt-better.md ├── features │ ├── access-control.md │ ├── bonding-intro.md │ ├── bonding-main-backup.md │ ├── bonding-quick-start.md │ ├── encryption.md │ ├── handshake.md │ ├── images │ │ ├── block-aligned-5rx10c.png │ │ ├── block-aligned.png │ │ ├── non-block-aligned-5rx10c-deleted-packets.png │ │ ├── non-block-aligned-5rx10c.png │ │ ├── non-block-aligned.png │ │ ├── packet-filter-mechanism.png │ │ ├── rebuild-missing-sequence.png │ │ ├── srt-encryption-1.png │ │ ├── srt-encryption-2.png │ │ └── staircase-pattern-5rx10c.png │ ├── latency.md │ ├── live-streaming.md │ ├── packet-filtering-and-fec.md │ └── socket-groups.md └── misc │ ├── images │ ├── srt-history-good-signal.png │ └── srt-transmission-bad-signal.png │ └── why-srt-was-created.md ├── examples ├── example-client-nonblock.c ├── fork-test │ ├── Makefile │ ├── README.md │ ├── srt_client.c │ └── srt_server.c ├── recvfile.cpp ├── recvlive.cpp ├── recvmsg.cpp ├── sendfile.cpp ├── sendmsg.cpp ├── test-c-client-bonding.c ├── test-c-client.c ├── test-c-server-bonding.c ├── test-c-server.c └── testcapi-connect.c ├── haicrypt ├── cryspr-botan.c ├── cryspr-botan.h ├── cryspr-config.h ├── cryspr-gnutls.c ├── cryspr-gnutls.h ├── cryspr-mbedtls.c ├── cryspr-mbedtls.h ├── cryspr-openssl-evp.c ├── cryspr-openssl-evp.h ├── cryspr-openssl.c ├── cryspr-openssl.h ├── cryspr.c ├── cryspr.h ├── filelist-botan.maf ├── filelist-gnutls.maf ├── filelist-mbedtls.maf ├── filelist-openssl-evp.maf ├── filelist-openssl.maf ├── haicrypt.h ├── haicrypt_log.cpp ├── haicrypt_log.h ├── hcrypt.c ├── hcrypt.h ├── hcrypt_ctx.h ├── hcrypt_ctx_rx.c ├── hcrypt_ctx_tx.c ├── hcrypt_msg.h ├── hcrypt_rx.c ├── hcrypt_sa.c ├── hcrypt_tx.c ├── hcrypt_ut.c └── hcrypt_xpt_srt.c ├── nuget.config ├── scripts ├── CheckCXXAtomic.cmake ├── CheckCXXStdPutTime.cmake ├── CheckGCCAtomicIntrinsics.cmake ├── FindBotan.cmake ├── FindMbedTLS.cmake ├── FindPThreadGetSetName.cmake ├── ShowProjectConfig.cmake ├── abi-check.tcl ├── build-android │ ├── README.md │ ├── build-android │ ├── mkmbedtls │ ├── mksrt │ └── mkssl ├── build-ios │ ├── README.md │ ├── mksrt-xcf.sh │ └── mkssl-xcf.sh ├── build-windows.bat ├── build-windows.ps1 ├── check-deps ├── collect-gcov.sh ├── gather-package.bat ├── generate-configure-options.tcl ├── generate-error-types.tcl ├── generate-logging-defs.tcl ├── get-build-version.tcl ├── googletest-download.cmake ├── googletest.cmake ├── haiUtil.cmake ├── iOS.cmake ├── maf.vim ├── mafread.tcl ├── release-notes │ ├── README.md │ ├── generate_release_notes.py │ └── requirements.txt ├── set-version-metadata.ps1 ├── srt-dev.lua ├── srt-ffplay ├── srt-proxy.py ├── srt.pc.in ├── tcp-echo-client.tcl ├── tcp-echo-server.tcl ├── test_vista.c ├── visionOS.cmake └── win-installer │ ├── .gitignore │ ├── README.md │ ├── build-win-installer.ps1 │ ├── install-libsrt.ps1 │ ├── install-nsis.ps1 │ ├── install-openssl.ps1 │ ├── libsrt.nsi │ └── libsrt.props ├── srt-ffplay ├── srtcore ├── README.md ├── access_control.h ├── api.cpp ├── api.h ├── atomic.h ├── atomic_clock.h ├── atomic_msvc.h ├── buffer_rcv.cpp ├── buffer_rcv.h ├── buffer_snd.cpp ├── buffer_snd.h ├── buffer_tools.cpp ├── buffer_tools.h ├── cache.cpp ├── cache.h ├── channel.cpp ├── channel.h ├── common.cpp ├── common.h ├── congctl.cpp ├── congctl.h ├── core.cpp ├── core.h ├── crypto.cpp ├── crypto.h ├── epoll.cpp ├── epoll.h ├── fec.cpp ├── fec.h ├── filelist.maf ├── group.cpp ├── group.h ├── group_backup.cpp ├── group_backup.h ├── group_common.cpp ├── group_common.h ├── handshake.cpp ├── handshake.h ├── list.cpp ├── list.h ├── logger_default.cpp ├── logger_defs.cpp ├── logger_defs.h ├── logging.cpp ├── logging.h ├── logging_api.h ├── md5.cpp ├── md5.h ├── netinet_any.h ├── packet.cpp ├── packet.h ├── packetfilter.cpp ├── packetfilter.h ├── packetfilter_api.h ├── packetfilter_builtin.h ├── platform_sys.h ├── queue.cpp ├── queue.h ├── socketconfig.cpp ├── socketconfig.h ├── srt.h ├── srt_attr_defs.h ├── srt_c_api.cpp ├── srt_compat.c ├── srt_compat.h ├── srt_shared.rc ├── stats.h ├── strerror_defs.cpp ├── sync.cpp ├── sync.h ├── sync_cxx11.cpp ├── sync_posix.cpp ├── threadname.h ├── tsbpd_time.cpp ├── tsbpd_time.h ├── udt.h ├── utilities.h ├── version.h.in ├── window.cpp └── window.h ├── test ├── TESTS_HOWTO.md ├── any.hpp ├── filelist.maf ├── test_bonding.cpp ├── test_buffer_rcv.cpp ├── test_common.cpp ├── test_connection_timeout.cpp ├── test_crypto.cpp ├── test_cryspr.cpp ├── test_enforced_encryption.cpp ├── test_env.h ├── test_epoll.cpp ├── test_fec_rebuilding.cpp ├── test_file_transmission.cpp ├── test_ipv6.cpp ├── test_listen_callback.cpp ├── test_losslist_rcv.cpp ├── test_losslist_snd.cpp ├── test_main.cpp ├── test_many_connections.cpp ├── test_muxer.cpp ├── test_reuseaddr.cpp ├── test_seqno.cpp ├── test_snd_rate_estimator.cpp ├── test_socket_options.cpp ├── test_socketdata.cpp ├── test_sync.cpp ├── test_threadname.cpp ├── test_timer.cpp ├── test_unitqueue.cpp └── test_utilities.cpp └── testing ├── README.md ├── srt-test-file.cpp ├── srt-test-file.maf ├── srt-test-live.cpp ├── srt-test-live.maf ├── srt-test-mpbond.cpp ├── srt-test-mpbond.maf ├── srt-test-multiplex.cpp ├── srt-test-multiplex.maf ├── srt-test-relay.cpp ├── srt-test-relay.maf ├── testactivemedia.cpp ├── testactivemedia.hpp ├── testmedia.cpp ├── testmedia.hpp ├── testmediabase.hpp ├── uriparser-test.maf ├── utility-test.cpp └── utility-test.maf /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/workflows/abi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/.github/workflows/abi.yml -------------------------------------------------------------------------------- /.github/workflows/android.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/.github/workflows/android.yaml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/cxx03-ubuntu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/.github/workflows/cxx03-ubuntu.yaml -------------------------------------------------------------------------------- /.github/workflows/cxx11-macos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/.github/workflows/cxx11-macos.yaml -------------------------------------------------------------------------------- /.github/workflows/cxx11-ubuntu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/.github/workflows/cxx11-ubuntu.yaml -------------------------------------------------------------------------------- /.github/workflows/cxx11-win.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/.github/workflows/cxx11-win.yaml -------------------------------------------------------------------------------- /.github/workflows/iOS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/.github/workflows/iOS.yaml -------------------------------------------------------------------------------- /.github/workflows/s390x-focal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/.github/workflows/s390x-focal.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/.gitmodules -------------------------------------------------------------------------------- /.lgtm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/.lgtm.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/README.md -------------------------------------------------------------------------------- /apps/apputil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/apps/apputil.cpp -------------------------------------------------------------------------------- /apps/apputil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/apps/apputil.hpp -------------------------------------------------------------------------------- /apps/logsupport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/apps/logsupport.cpp -------------------------------------------------------------------------------- /apps/logsupport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/apps/logsupport.hpp -------------------------------------------------------------------------------- /apps/logsupport_appdefs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/apps/logsupport_appdefs.cpp -------------------------------------------------------------------------------- /apps/socketoptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/apps/socketoptions.cpp -------------------------------------------------------------------------------- /apps/socketoptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/apps/socketoptions.hpp -------------------------------------------------------------------------------- /apps/srt-file-transmit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/apps/srt-file-transmit.cpp -------------------------------------------------------------------------------- /apps/srt-live-transmit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/apps/srt-live-transmit.cpp -------------------------------------------------------------------------------- /apps/srt-tunnel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/apps/srt-tunnel.cpp -------------------------------------------------------------------------------- /apps/statswriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/apps/statswriter.cpp -------------------------------------------------------------------------------- /apps/statswriter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/apps/statswriter.hpp -------------------------------------------------------------------------------- /apps/support.maf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/apps/support.maf -------------------------------------------------------------------------------- /apps/transmitbase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/apps/transmitbase.hpp -------------------------------------------------------------------------------- /apps/transmitmedia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/apps/transmitmedia.cpp -------------------------------------------------------------------------------- /apps/transmitmedia.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/apps/transmitmedia.hpp -------------------------------------------------------------------------------- /apps/uriparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/apps/uriparser.cpp -------------------------------------------------------------------------------- /apps/uriparser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/apps/uriparser.hpp -------------------------------------------------------------------------------- /apps/verbose.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/apps/verbose.cpp -------------------------------------------------------------------------------- /apps/verbose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/apps/verbose.hpp -------------------------------------------------------------------------------- /cmake_object_lib_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/cmake_object_lib_support.c -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/codecov.yml -------------------------------------------------------------------------------- /common/filelist_win32.maf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/common/filelist_win32.maf -------------------------------------------------------------------------------- /common/win/syslog_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/common/win/syslog_defs.h -------------------------------------------------------------------------------- /common/win/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/common/win/unistd.h -------------------------------------------------------------------------------- /common/win/wintime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/common/win/wintime.h -------------------------------------------------------------------------------- /common/win_time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/common/win_time.cpp -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/configure -------------------------------------------------------------------------------- /configure-data.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/configure-data.tcl -------------------------------------------------------------------------------- /docs/API/API-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/docs/API/API-functions.md -------------------------------------------------------------------------------- /docs/API/API-socket-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/docs/API/API-socket-options.md -------------------------------------------------------------------------------- /docs/API/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/docs/API/API.md -------------------------------------------------------------------------------- /docs/API/configuration-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/docs/API/configuration-guidelines.md -------------------------------------------------------------------------------- /docs/API/rejection-codes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/docs/API/rejection-codes.md -------------------------------------------------------------------------------- /docs/API/statistics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/docs/API/statistics.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/apps/srt-file-transmit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/docs/apps/srt-file-transmit.md -------------------------------------------------------------------------------- /docs/apps/srt-live-transmit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/docs/apps/srt-live-transmit.md -------------------------------------------------------------------------------- /docs/apps/srt-test-multiplex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/docs/apps/srt-test-multiplex.md -------------------------------------------------------------------------------- /docs/apps/srt-test-relay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/docs/apps/srt-test-relay.md -------------------------------------------------------------------------------- /docs/apps/srt-tunnel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/docs/apps/srt-tunnel.md -------------------------------------------------------------------------------- /docs/build/build-android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/docs/build/build-android.md -------------------------------------------------------------------------------- /docs/build/build-iOS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/docs/build/build-iOS.md -------------------------------------------------------------------------------- /docs/build/build-linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/docs/build/build-linux.md -------------------------------------------------------------------------------- /docs/build/build-macOS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/docs/build/build-macOS.md -------------------------------------------------------------------------------- /docs/build/build-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/docs/build/build-options.md -------------------------------------------------------------------------------- /docs/build/build-win.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/docs/build/build-win.md -------------------------------------------------------------------------------- /docs/build/package-managers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/docs/build/package-managers.md -------------------------------------------------------------------------------- /docs/dev/developers-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/docs/dev/developers-guide.md -------------------------------------------------------------------------------- /docs/dev/low-level-info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/docs/dev/low-level-info.md -------------------------------------------------------------------------------- /docs/dev/making-srt-better.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/docs/dev/making-srt-better.md -------------------------------------------------------------------------------- /docs/features/access-control.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/docs/features/access-control.md -------------------------------------------------------------------------------- /docs/features/bonding-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/docs/features/bonding-intro.md -------------------------------------------------------------------------------- /docs/features/bonding-main-backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/docs/features/bonding-main-backup.md -------------------------------------------------------------------------------- /docs/features/bonding-quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/docs/features/bonding-quick-start.md -------------------------------------------------------------------------------- /docs/features/encryption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/docs/features/encryption.md -------------------------------------------------------------------------------- /docs/features/handshake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/docs/features/handshake.md -------------------------------------------------------------------------------- /docs/features/images/block-aligned-5rx10c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/docs/features/images/block-aligned-5rx10c.png -------------------------------------------------------------------------------- /docs/features/images/block-aligned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/docs/features/images/block-aligned.png -------------------------------------------------------------------------------- /docs/features/images/non-block-aligned-5rx10c-deleted-packets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/docs/features/images/non-block-aligned-5rx10c-deleted-packets.png -------------------------------------------------------------------------------- /docs/features/images/non-block-aligned-5rx10c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/docs/features/images/non-block-aligned-5rx10c.png -------------------------------------------------------------------------------- /docs/features/images/non-block-aligned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/docs/features/images/non-block-aligned.png -------------------------------------------------------------------------------- /docs/features/images/packet-filter-mechanism.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/docs/features/images/packet-filter-mechanism.png -------------------------------------------------------------------------------- /docs/features/images/rebuild-missing-sequence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/docs/features/images/rebuild-missing-sequence.png -------------------------------------------------------------------------------- /docs/features/images/srt-encryption-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/docs/features/images/srt-encryption-1.png -------------------------------------------------------------------------------- /docs/features/images/srt-encryption-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/docs/features/images/srt-encryption-2.png -------------------------------------------------------------------------------- /docs/features/images/staircase-pattern-5rx10c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/docs/features/images/staircase-pattern-5rx10c.png -------------------------------------------------------------------------------- /docs/features/latency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/docs/features/latency.md -------------------------------------------------------------------------------- /docs/features/live-streaming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/docs/features/live-streaming.md -------------------------------------------------------------------------------- /docs/features/packet-filtering-and-fec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/docs/features/packet-filtering-and-fec.md -------------------------------------------------------------------------------- /docs/features/socket-groups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/docs/features/socket-groups.md -------------------------------------------------------------------------------- /docs/misc/images/srt-history-good-signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/docs/misc/images/srt-history-good-signal.png -------------------------------------------------------------------------------- /docs/misc/images/srt-transmission-bad-signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/docs/misc/images/srt-transmission-bad-signal.png -------------------------------------------------------------------------------- /docs/misc/why-srt-was-created.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/docs/misc/why-srt-was-created.md -------------------------------------------------------------------------------- /examples/example-client-nonblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/examples/example-client-nonblock.c -------------------------------------------------------------------------------- /examples/fork-test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/examples/fork-test/Makefile -------------------------------------------------------------------------------- /examples/fork-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/examples/fork-test/README.md -------------------------------------------------------------------------------- /examples/fork-test/srt_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/examples/fork-test/srt_client.c -------------------------------------------------------------------------------- /examples/fork-test/srt_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/examples/fork-test/srt_server.c -------------------------------------------------------------------------------- /examples/recvfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/examples/recvfile.cpp -------------------------------------------------------------------------------- /examples/recvlive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/examples/recvlive.cpp -------------------------------------------------------------------------------- /examples/recvmsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/examples/recvmsg.cpp -------------------------------------------------------------------------------- /examples/sendfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/examples/sendfile.cpp -------------------------------------------------------------------------------- /examples/sendmsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/examples/sendmsg.cpp -------------------------------------------------------------------------------- /examples/test-c-client-bonding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/examples/test-c-client-bonding.c -------------------------------------------------------------------------------- /examples/test-c-client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/examples/test-c-client.c -------------------------------------------------------------------------------- /examples/test-c-server-bonding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/examples/test-c-server-bonding.c -------------------------------------------------------------------------------- /examples/test-c-server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/examples/test-c-server.c -------------------------------------------------------------------------------- /examples/testcapi-connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/examples/testcapi-connect.c -------------------------------------------------------------------------------- /haicrypt/cryspr-botan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/haicrypt/cryspr-botan.c -------------------------------------------------------------------------------- /haicrypt/cryspr-botan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/haicrypt/cryspr-botan.h -------------------------------------------------------------------------------- /haicrypt/cryspr-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/haicrypt/cryspr-config.h -------------------------------------------------------------------------------- /haicrypt/cryspr-gnutls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/haicrypt/cryspr-gnutls.c -------------------------------------------------------------------------------- /haicrypt/cryspr-gnutls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/haicrypt/cryspr-gnutls.h -------------------------------------------------------------------------------- /haicrypt/cryspr-mbedtls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/haicrypt/cryspr-mbedtls.c -------------------------------------------------------------------------------- /haicrypt/cryspr-mbedtls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/haicrypt/cryspr-mbedtls.h -------------------------------------------------------------------------------- /haicrypt/cryspr-openssl-evp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/haicrypt/cryspr-openssl-evp.c -------------------------------------------------------------------------------- /haicrypt/cryspr-openssl-evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/haicrypt/cryspr-openssl-evp.h -------------------------------------------------------------------------------- /haicrypt/cryspr-openssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/haicrypt/cryspr-openssl.c -------------------------------------------------------------------------------- /haicrypt/cryspr-openssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/haicrypt/cryspr-openssl.h -------------------------------------------------------------------------------- /haicrypt/cryspr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/haicrypt/cryspr.c -------------------------------------------------------------------------------- /haicrypt/cryspr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/haicrypt/cryspr.h -------------------------------------------------------------------------------- /haicrypt/filelist-botan.maf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/haicrypt/filelist-botan.maf -------------------------------------------------------------------------------- /haicrypt/filelist-gnutls.maf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/haicrypt/filelist-gnutls.maf -------------------------------------------------------------------------------- /haicrypt/filelist-mbedtls.maf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/haicrypt/filelist-mbedtls.maf -------------------------------------------------------------------------------- /haicrypt/filelist-openssl-evp.maf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/haicrypt/filelist-openssl-evp.maf -------------------------------------------------------------------------------- /haicrypt/filelist-openssl.maf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/haicrypt/filelist-openssl.maf -------------------------------------------------------------------------------- /haicrypt/haicrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/haicrypt/haicrypt.h -------------------------------------------------------------------------------- /haicrypt/haicrypt_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/haicrypt/haicrypt_log.cpp -------------------------------------------------------------------------------- /haicrypt/haicrypt_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/haicrypt/haicrypt_log.h -------------------------------------------------------------------------------- /haicrypt/hcrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/haicrypt/hcrypt.c -------------------------------------------------------------------------------- /haicrypt/hcrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/haicrypt/hcrypt.h -------------------------------------------------------------------------------- /haicrypt/hcrypt_ctx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/haicrypt/hcrypt_ctx.h -------------------------------------------------------------------------------- /haicrypt/hcrypt_ctx_rx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/haicrypt/hcrypt_ctx_rx.c -------------------------------------------------------------------------------- /haicrypt/hcrypt_ctx_tx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/haicrypt/hcrypt_ctx_tx.c -------------------------------------------------------------------------------- /haicrypt/hcrypt_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/haicrypt/hcrypt_msg.h -------------------------------------------------------------------------------- /haicrypt/hcrypt_rx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/haicrypt/hcrypt_rx.c -------------------------------------------------------------------------------- /haicrypt/hcrypt_sa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/haicrypt/hcrypt_sa.c -------------------------------------------------------------------------------- /haicrypt/hcrypt_tx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/haicrypt/hcrypt_tx.c -------------------------------------------------------------------------------- /haicrypt/hcrypt_ut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/haicrypt/hcrypt_ut.c -------------------------------------------------------------------------------- /haicrypt/hcrypt_xpt_srt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/haicrypt/hcrypt_xpt_srt.c -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/nuget.config -------------------------------------------------------------------------------- /scripts/CheckCXXAtomic.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/CheckCXXAtomic.cmake -------------------------------------------------------------------------------- /scripts/CheckCXXStdPutTime.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/CheckCXXStdPutTime.cmake -------------------------------------------------------------------------------- /scripts/CheckGCCAtomicIntrinsics.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/CheckGCCAtomicIntrinsics.cmake -------------------------------------------------------------------------------- /scripts/FindBotan.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/FindBotan.cmake -------------------------------------------------------------------------------- /scripts/FindMbedTLS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/FindMbedTLS.cmake -------------------------------------------------------------------------------- /scripts/FindPThreadGetSetName.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/FindPThreadGetSetName.cmake -------------------------------------------------------------------------------- /scripts/ShowProjectConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/ShowProjectConfig.cmake -------------------------------------------------------------------------------- /scripts/abi-check.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/abi-check.tcl -------------------------------------------------------------------------------- /scripts/build-android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/build-android/README.md -------------------------------------------------------------------------------- /scripts/build-android/build-android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/build-android/build-android -------------------------------------------------------------------------------- /scripts/build-android/mkmbedtls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/build-android/mkmbedtls -------------------------------------------------------------------------------- /scripts/build-android/mksrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/build-android/mksrt -------------------------------------------------------------------------------- /scripts/build-android/mkssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/build-android/mkssl -------------------------------------------------------------------------------- /scripts/build-ios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/build-ios/README.md -------------------------------------------------------------------------------- /scripts/build-ios/mksrt-xcf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/build-ios/mksrt-xcf.sh -------------------------------------------------------------------------------- /scripts/build-ios/mkssl-xcf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/build-ios/mkssl-xcf.sh -------------------------------------------------------------------------------- /scripts/build-windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/build-windows.bat -------------------------------------------------------------------------------- /scripts/build-windows.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/build-windows.ps1 -------------------------------------------------------------------------------- /scripts/check-deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/check-deps -------------------------------------------------------------------------------- /scripts/collect-gcov.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/collect-gcov.sh -------------------------------------------------------------------------------- /scripts/gather-package.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/gather-package.bat -------------------------------------------------------------------------------- /scripts/generate-configure-options.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/generate-configure-options.tcl -------------------------------------------------------------------------------- /scripts/generate-error-types.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/generate-error-types.tcl -------------------------------------------------------------------------------- /scripts/generate-logging-defs.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/generate-logging-defs.tcl -------------------------------------------------------------------------------- /scripts/get-build-version.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/get-build-version.tcl -------------------------------------------------------------------------------- /scripts/googletest-download.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/googletest-download.cmake -------------------------------------------------------------------------------- /scripts/googletest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/googletest.cmake -------------------------------------------------------------------------------- /scripts/haiUtil.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/haiUtil.cmake -------------------------------------------------------------------------------- /scripts/iOS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/iOS.cmake -------------------------------------------------------------------------------- /scripts/maf.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/maf.vim -------------------------------------------------------------------------------- /scripts/mafread.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/mafread.tcl -------------------------------------------------------------------------------- /scripts/release-notes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/release-notes/README.md -------------------------------------------------------------------------------- /scripts/release-notes/generate_release_notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/release-notes/generate_release_notes.py -------------------------------------------------------------------------------- /scripts/release-notes/requirements.txt: -------------------------------------------------------------------------------- 1 | click>=7.1.2 2 | numpy>=1.19.1 3 | pandas>=0.25.3 -------------------------------------------------------------------------------- /scripts/set-version-metadata.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/set-version-metadata.ps1 -------------------------------------------------------------------------------- /scripts/srt-dev.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/srt-dev.lua -------------------------------------------------------------------------------- /scripts/srt-ffplay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/srt-ffplay -------------------------------------------------------------------------------- /scripts/srt-proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/srt-proxy.py -------------------------------------------------------------------------------- /scripts/srt.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/srt.pc.in -------------------------------------------------------------------------------- /scripts/tcp-echo-client.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/tcp-echo-client.tcl -------------------------------------------------------------------------------- /scripts/tcp-echo-server.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/tcp-echo-server.tcl -------------------------------------------------------------------------------- /scripts/test_vista.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/test_vista.c -------------------------------------------------------------------------------- /scripts/visionOS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/visionOS.cmake -------------------------------------------------------------------------------- /scripts/win-installer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/win-installer/.gitignore -------------------------------------------------------------------------------- /scripts/win-installer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/win-installer/README.md -------------------------------------------------------------------------------- /scripts/win-installer/build-win-installer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/win-installer/build-win-installer.ps1 -------------------------------------------------------------------------------- /scripts/win-installer/install-libsrt.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/win-installer/install-libsrt.ps1 -------------------------------------------------------------------------------- /scripts/win-installer/install-nsis.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/win-installer/install-nsis.ps1 -------------------------------------------------------------------------------- /scripts/win-installer/install-openssl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/win-installer/install-openssl.ps1 -------------------------------------------------------------------------------- /scripts/win-installer/libsrt.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/win-installer/libsrt.nsi -------------------------------------------------------------------------------- /scripts/win-installer/libsrt.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/scripts/win-installer/libsrt.props -------------------------------------------------------------------------------- /srt-ffplay: -------------------------------------------------------------------------------- 1 | scripts/srt-ffplay -------------------------------------------------------------------------------- /srtcore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/README.md -------------------------------------------------------------------------------- /srtcore/access_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/access_control.h -------------------------------------------------------------------------------- /srtcore/api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/api.cpp -------------------------------------------------------------------------------- /srtcore/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/api.h -------------------------------------------------------------------------------- /srtcore/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/atomic.h -------------------------------------------------------------------------------- /srtcore/atomic_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/atomic_clock.h -------------------------------------------------------------------------------- /srtcore/atomic_msvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/atomic_msvc.h -------------------------------------------------------------------------------- /srtcore/buffer_rcv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/buffer_rcv.cpp -------------------------------------------------------------------------------- /srtcore/buffer_rcv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/buffer_rcv.h -------------------------------------------------------------------------------- /srtcore/buffer_snd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/buffer_snd.cpp -------------------------------------------------------------------------------- /srtcore/buffer_snd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/buffer_snd.h -------------------------------------------------------------------------------- /srtcore/buffer_tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/buffer_tools.cpp -------------------------------------------------------------------------------- /srtcore/buffer_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/buffer_tools.h -------------------------------------------------------------------------------- /srtcore/cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/cache.cpp -------------------------------------------------------------------------------- /srtcore/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/cache.h -------------------------------------------------------------------------------- /srtcore/channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/channel.cpp -------------------------------------------------------------------------------- /srtcore/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/channel.h -------------------------------------------------------------------------------- /srtcore/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/common.cpp -------------------------------------------------------------------------------- /srtcore/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/common.h -------------------------------------------------------------------------------- /srtcore/congctl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/congctl.cpp -------------------------------------------------------------------------------- /srtcore/congctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/congctl.h -------------------------------------------------------------------------------- /srtcore/core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/core.cpp -------------------------------------------------------------------------------- /srtcore/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/core.h -------------------------------------------------------------------------------- /srtcore/crypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/crypto.cpp -------------------------------------------------------------------------------- /srtcore/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/crypto.h -------------------------------------------------------------------------------- /srtcore/epoll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/epoll.cpp -------------------------------------------------------------------------------- /srtcore/epoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/epoll.h -------------------------------------------------------------------------------- /srtcore/fec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/fec.cpp -------------------------------------------------------------------------------- /srtcore/fec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/fec.h -------------------------------------------------------------------------------- /srtcore/filelist.maf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/filelist.maf -------------------------------------------------------------------------------- /srtcore/group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/group.cpp -------------------------------------------------------------------------------- /srtcore/group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/group.h -------------------------------------------------------------------------------- /srtcore/group_backup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/group_backup.cpp -------------------------------------------------------------------------------- /srtcore/group_backup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/group_backup.h -------------------------------------------------------------------------------- /srtcore/group_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/group_common.cpp -------------------------------------------------------------------------------- /srtcore/group_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/group_common.h -------------------------------------------------------------------------------- /srtcore/handshake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/handshake.cpp -------------------------------------------------------------------------------- /srtcore/handshake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/handshake.h -------------------------------------------------------------------------------- /srtcore/list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/list.cpp -------------------------------------------------------------------------------- /srtcore/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/list.h -------------------------------------------------------------------------------- /srtcore/logger_default.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/logger_default.cpp -------------------------------------------------------------------------------- /srtcore/logger_defs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/logger_defs.cpp -------------------------------------------------------------------------------- /srtcore/logger_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/logger_defs.h -------------------------------------------------------------------------------- /srtcore/logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/logging.cpp -------------------------------------------------------------------------------- /srtcore/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/logging.h -------------------------------------------------------------------------------- /srtcore/logging_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/logging_api.h -------------------------------------------------------------------------------- /srtcore/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/md5.cpp -------------------------------------------------------------------------------- /srtcore/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/md5.h -------------------------------------------------------------------------------- /srtcore/netinet_any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/netinet_any.h -------------------------------------------------------------------------------- /srtcore/packet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/packet.cpp -------------------------------------------------------------------------------- /srtcore/packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/packet.h -------------------------------------------------------------------------------- /srtcore/packetfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/packetfilter.cpp -------------------------------------------------------------------------------- /srtcore/packetfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/packetfilter.h -------------------------------------------------------------------------------- /srtcore/packetfilter_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/packetfilter_api.h -------------------------------------------------------------------------------- /srtcore/packetfilter_builtin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/packetfilter_builtin.h -------------------------------------------------------------------------------- /srtcore/platform_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/platform_sys.h -------------------------------------------------------------------------------- /srtcore/queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/queue.cpp -------------------------------------------------------------------------------- /srtcore/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/queue.h -------------------------------------------------------------------------------- /srtcore/socketconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/socketconfig.cpp -------------------------------------------------------------------------------- /srtcore/socketconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/socketconfig.h -------------------------------------------------------------------------------- /srtcore/srt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/srt.h -------------------------------------------------------------------------------- /srtcore/srt_attr_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/srt_attr_defs.h -------------------------------------------------------------------------------- /srtcore/srt_c_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/srt_c_api.cpp -------------------------------------------------------------------------------- /srtcore/srt_compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/srt_compat.c -------------------------------------------------------------------------------- /srtcore/srt_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/srt_compat.h -------------------------------------------------------------------------------- /srtcore/srt_shared.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/srt_shared.rc -------------------------------------------------------------------------------- /srtcore/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/stats.h -------------------------------------------------------------------------------- /srtcore/strerror_defs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/strerror_defs.cpp -------------------------------------------------------------------------------- /srtcore/sync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/sync.cpp -------------------------------------------------------------------------------- /srtcore/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/sync.h -------------------------------------------------------------------------------- /srtcore/sync_cxx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/sync_cxx11.cpp -------------------------------------------------------------------------------- /srtcore/sync_posix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/sync_posix.cpp -------------------------------------------------------------------------------- /srtcore/threadname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/threadname.h -------------------------------------------------------------------------------- /srtcore/tsbpd_time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/tsbpd_time.cpp -------------------------------------------------------------------------------- /srtcore/tsbpd_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/tsbpd_time.h -------------------------------------------------------------------------------- /srtcore/udt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/udt.h -------------------------------------------------------------------------------- /srtcore/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/utilities.h -------------------------------------------------------------------------------- /srtcore/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/version.h.in -------------------------------------------------------------------------------- /srtcore/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/window.cpp -------------------------------------------------------------------------------- /srtcore/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/srtcore/window.h -------------------------------------------------------------------------------- /test/TESTS_HOWTO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/test/TESTS_HOWTO.md -------------------------------------------------------------------------------- /test/any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/test/any.hpp -------------------------------------------------------------------------------- /test/filelist.maf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/test/filelist.maf -------------------------------------------------------------------------------- /test/test_bonding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/test/test_bonding.cpp -------------------------------------------------------------------------------- /test/test_buffer_rcv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/test/test_buffer_rcv.cpp -------------------------------------------------------------------------------- /test/test_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/test/test_common.cpp -------------------------------------------------------------------------------- /test/test_connection_timeout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/test/test_connection_timeout.cpp -------------------------------------------------------------------------------- /test/test_crypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/test/test_crypto.cpp -------------------------------------------------------------------------------- /test/test_cryspr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/test/test_cryspr.cpp -------------------------------------------------------------------------------- /test/test_enforced_encryption.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/test/test_enforced_encryption.cpp -------------------------------------------------------------------------------- /test/test_env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/test/test_env.h -------------------------------------------------------------------------------- /test/test_epoll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/test/test_epoll.cpp -------------------------------------------------------------------------------- /test/test_fec_rebuilding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/test/test_fec_rebuilding.cpp -------------------------------------------------------------------------------- /test/test_file_transmission.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/test/test_file_transmission.cpp -------------------------------------------------------------------------------- /test/test_ipv6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/test/test_ipv6.cpp -------------------------------------------------------------------------------- /test/test_listen_callback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/test/test_listen_callback.cpp -------------------------------------------------------------------------------- /test/test_losslist_rcv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/test/test_losslist_rcv.cpp -------------------------------------------------------------------------------- /test/test_losslist_snd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/test/test_losslist_snd.cpp -------------------------------------------------------------------------------- /test/test_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/test/test_main.cpp -------------------------------------------------------------------------------- /test/test_many_connections.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/test/test_many_connections.cpp -------------------------------------------------------------------------------- /test/test_muxer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/test/test_muxer.cpp -------------------------------------------------------------------------------- /test/test_reuseaddr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/test/test_reuseaddr.cpp -------------------------------------------------------------------------------- /test/test_seqno.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/test/test_seqno.cpp -------------------------------------------------------------------------------- /test/test_snd_rate_estimator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/test/test_snd_rate_estimator.cpp -------------------------------------------------------------------------------- /test/test_socket_options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/test/test_socket_options.cpp -------------------------------------------------------------------------------- /test/test_socketdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/test/test_socketdata.cpp -------------------------------------------------------------------------------- /test/test_sync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/test/test_sync.cpp -------------------------------------------------------------------------------- /test/test_threadname.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/test/test_threadname.cpp -------------------------------------------------------------------------------- /test/test_timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/test/test_timer.cpp -------------------------------------------------------------------------------- /test/test_unitqueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/test/test_unitqueue.cpp -------------------------------------------------------------------------------- /test/test_utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/test/test_utilities.cpp -------------------------------------------------------------------------------- /testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/testing/README.md -------------------------------------------------------------------------------- /testing/srt-test-file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/testing/srt-test-file.cpp -------------------------------------------------------------------------------- /testing/srt-test-file.maf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/testing/srt-test-file.maf -------------------------------------------------------------------------------- /testing/srt-test-live.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/testing/srt-test-live.cpp -------------------------------------------------------------------------------- /testing/srt-test-live.maf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/testing/srt-test-live.maf -------------------------------------------------------------------------------- /testing/srt-test-mpbond.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/testing/srt-test-mpbond.cpp -------------------------------------------------------------------------------- /testing/srt-test-mpbond.maf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/testing/srt-test-mpbond.maf -------------------------------------------------------------------------------- /testing/srt-test-multiplex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/testing/srt-test-multiplex.cpp -------------------------------------------------------------------------------- /testing/srt-test-multiplex.maf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/testing/srt-test-multiplex.maf -------------------------------------------------------------------------------- /testing/srt-test-relay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/testing/srt-test-relay.cpp -------------------------------------------------------------------------------- /testing/srt-test-relay.maf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/testing/srt-test-relay.maf -------------------------------------------------------------------------------- /testing/testactivemedia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/testing/testactivemedia.cpp -------------------------------------------------------------------------------- /testing/testactivemedia.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/testing/testactivemedia.hpp -------------------------------------------------------------------------------- /testing/testmedia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/testing/testmedia.cpp -------------------------------------------------------------------------------- /testing/testmedia.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/testing/testmedia.hpp -------------------------------------------------------------------------------- /testing/testmediabase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/testing/testmediabase.hpp -------------------------------------------------------------------------------- /testing/uriparser-test.maf: -------------------------------------------------------------------------------- 1 | 2 | SOURCES 3 | ../apps/uriparser.cpp 4 | -------------------------------------------------------------------------------- /testing/utility-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haivision/srt/HEAD/testing/utility-test.cpp -------------------------------------------------------------------------------- /testing/utility-test.maf: -------------------------------------------------------------------------------- 1 | 2 | SOURCES 3 | utility-test.cpp 4 | --------------------------------------------------------------------------------