├── .gitignore ├── CMakeLists.txt ├── CableLabs-L4S-interop-nov-2024-Ericsson.pdf ├── L4S-Results.pdf ├── LICENSE ├── README.md ├── SCReAM-BW-test-tool.docx ├── SCReAM-BW-test-tool.pptx ├── SCReAM-description.pptx ├── SCReAM-test-tool-one-pager.pptx ├── Sierra-RV50X-logger.py ├── code ├── CMakeLists.txt ├── NetQueue.cpp ├── NetQueue.h ├── OooQueue.cpp ├── OooQueue.h ├── RtpQueue.cpp ├── RtpQueue.h ├── ScreamRx.cpp ├── ScreamRx.h ├── ScreamTx.cpp ├── ScreamTx.h ├── ScreamV2Tx.cpp ├── ScreamV2Tx.h ├── ScreamV2TxStream.cpp ├── TxList.h ├── VideoEnc.cpp ├── VideoEnc.h ├── scream_01.vcxproj ├── scream_01.vcxproj.user ├── scream_receiver.cpp ├── scream_sender.cpp ├── scream_v_a.cpp ├── stdafx.cpp ├── stdafx.h ├── targetver.h └── wrapper_lib │ ├── CMakeLists.txt │ ├── meson.build │ ├── screamtx_plugin_wrapper.cpp │ └── screamtxbw_plugin_wrapper.cpp ├── examples ├── trace-dualpi-50Mbps-25ms-l4s-txrx.txt ├── trace-dualpi-50Mbps-25ms-l4s.txt ├── trace-dualpi-50Mbps-25ms-nol4s-txrx.txt └── trace-dualpi-50Mbps-25ms-nol4s.txt ├── gstscream ├── .gitignore ├── 2717.patch ├── Cargo.lock ├── Cargo.toml ├── README.md ├── build.rs ├── scripts │ ├── build.sh │ ├── env.sh │ ├── receiver.sh │ ├── receiver_3.sh │ ├── receiver_bw.sh │ ├── screamtx_stats.py │ ├── sender.sh │ ├── sender_3.sh │ ├── sender_bw.sh │ └── sysctl.sh ├── src │ ├── lib.rs │ ├── receiver.rs │ ├── screamrx │ │ ├── ScreamRx.rs │ │ ├── ecn.rs │ │ ├── imp.rs │ │ └── mod.rs │ ├── screamtx │ │ ├── imp.rs │ │ └── mod.rs │ ├── screamtxbw │ │ ├── imp.rs │ │ └── mod.rs │ ├── sender.rs │ └── sender_util.rs └── udp_ecn_diff.txt ├── images ├── L4S-100Mbps-25ms-0-4-0-TCP.png ├── L4S-100Mbps-25ms-0-4-TCP.png ├── L4S-100Mbps-25ms-r-50-0-4-TCP.png ├── SCReAM-DualPi2-50Mbps-25ms-L4S.png ├── SCReAM-DualPi2-50Mbps-25ms-noL4S.png ├── SCReAM-V2-L4S.png ├── SCReAM-V2-RTT-25ms-1360B.png ├── SCReAM-V2-noL4S.png ├── SCReAM_LTE_UL.png ├── image_1.png ├── image_2.png ├── scream_ecn.png ├── scream_ecn_2.png ├── scream_ecn_keyframe.png ├── scream_l4s.png ├── scream_l4s_2.png ├── scream_noecn.png ├── scream_noecn_2.png └── scream_noecn_keyframe.png ├── multicam ├── README.md ├── receiver │ ├── LICENSE.dat │ ├── README.md │ ├── killitall.sh │ ├── rendermedia-intel.sh │ ├── rendermedia.sh │ ├── scream │ │ ├── CMakeLists.txt │ │ └── code │ │ │ ├── CMakeLists.txt │ │ │ └── scream_receiver.cpp │ ├── startreceiver-intel.sh │ └── startreceiver.sh └── sender │ ├── 6_bkg_L4S_flows.scream │ ├── LICENSE.dat │ ├── README.md │ ├── default.scream │ ├── gst-codec-ctrl │ └── gst-plugin │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── INSTALL │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── NEWS │ │ ├── README │ │ ├── aclocal.m4 │ │ ├── autogen.sh │ │ ├── autom4te.cache │ │ ├── output.0 │ │ ├── output.1 │ │ ├── requests │ │ ├── traces.0 │ │ └── traces.1 │ │ ├── compile │ │ ├── config.guess │ │ ├── config.h │ │ ├── config.h.in │ │ ├── config.h.in~ │ │ ├── config.log │ │ ├── config.status │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.ac │ │ ├── depcomp │ │ ├── install-sh │ │ ├── libtool │ │ ├── ltmain.sh │ │ ├── missing │ │ ├── src │ │ ├── .deps │ │ │ └── libgstcodecctrl_la-gstcodecctrl.Plo │ │ ├── .libs │ │ │ ├── libgstcodecctrl.exp │ │ │ ├── libgstcodecctrl.lai │ │ │ └── libgstcodecctrl.so │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── gstcodecctrl.cpp │ │ ├── gstcodecctrl.h │ │ ├── gstplugin.cpp │ │ ├── gstplugin.h │ │ ├── gsttransform.c │ │ ├── gsttransform.h │ │ └── targetver.h │ │ └── stamp-h1 │ ├── killitall.sh │ ├── scream │ ├── CMakeLists.txt │ └── code │ │ ├── CMakeLists.txt │ │ └── scream_sender.cpp │ ├── startsender.sh │ └── startsender_2.sh ├── old_readme_not.md ├── plot_1_stream.m ├── plot_1_stream_s.m ├── plot_4_stream.m ├── plot_cdf.m ├── plot_thp_delay.m ├── plot_thp_delay_new.m ├── plot_txrx.m ├── scream.sln ├── scream_ecn_keyframe.png ├── scream_noecn_keyframe.png ├── test-record.md ├── test_v_a.m ├── traces ├── trace_flat.txt ├── trace_key.txt └── trace_no_key.txt └── version-history.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CableLabs-L4S-interop-nov-2024-Ericsson.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/CableLabs-L4S-interop-nov-2024-Ericsson.pdf -------------------------------------------------------------------------------- /L4S-Results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/L4S-Results.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/README.md -------------------------------------------------------------------------------- /SCReAM-BW-test-tool.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/SCReAM-BW-test-tool.docx -------------------------------------------------------------------------------- /SCReAM-BW-test-tool.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/SCReAM-BW-test-tool.pptx -------------------------------------------------------------------------------- /SCReAM-description.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/SCReAM-description.pptx -------------------------------------------------------------------------------- /SCReAM-test-tool-one-pager.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/SCReAM-test-tool-one-pager.pptx -------------------------------------------------------------------------------- /Sierra-RV50X-logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/Sierra-RV50X-logger.py -------------------------------------------------------------------------------- /code/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/code/CMakeLists.txt -------------------------------------------------------------------------------- /code/NetQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/code/NetQueue.cpp -------------------------------------------------------------------------------- /code/NetQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/code/NetQueue.h -------------------------------------------------------------------------------- /code/OooQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/code/OooQueue.cpp -------------------------------------------------------------------------------- /code/OooQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/code/OooQueue.h -------------------------------------------------------------------------------- /code/RtpQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/code/RtpQueue.cpp -------------------------------------------------------------------------------- /code/RtpQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/code/RtpQueue.h -------------------------------------------------------------------------------- /code/ScreamRx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/code/ScreamRx.cpp -------------------------------------------------------------------------------- /code/ScreamRx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/code/ScreamRx.h -------------------------------------------------------------------------------- /code/ScreamTx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/code/ScreamTx.cpp -------------------------------------------------------------------------------- /code/ScreamTx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/code/ScreamTx.h -------------------------------------------------------------------------------- /code/ScreamV2Tx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/code/ScreamV2Tx.cpp -------------------------------------------------------------------------------- /code/ScreamV2Tx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/code/ScreamV2Tx.h -------------------------------------------------------------------------------- /code/ScreamV2TxStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/code/ScreamV2TxStream.cpp -------------------------------------------------------------------------------- /code/TxList.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/VideoEnc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/code/VideoEnc.cpp -------------------------------------------------------------------------------- /code/VideoEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/code/VideoEnc.h -------------------------------------------------------------------------------- /code/scream_01.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/code/scream_01.vcxproj -------------------------------------------------------------------------------- /code/scream_01.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/code/scream_01.vcxproj.user -------------------------------------------------------------------------------- /code/scream_receiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/code/scream_receiver.cpp -------------------------------------------------------------------------------- /code/scream_sender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/code/scream_sender.cpp -------------------------------------------------------------------------------- /code/scream_v_a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/code/scream_v_a.cpp -------------------------------------------------------------------------------- /code/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/code/stdafx.cpp -------------------------------------------------------------------------------- /code/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/code/stdafx.h -------------------------------------------------------------------------------- /code/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/code/targetver.h -------------------------------------------------------------------------------- /code/wrapper_lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/code/wrapper_lib/CMakeLists.txt -------------------------------------------------------------------------------- /code/wrapper_lib/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/code/wrapper_lib/meson.build -------------------------------------------------------------------------------- /code/wrapper_lib/screamtx_plugin_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/code/wrapper_lib/screamtx_plugin_wrapper.cpp -------------------------------------------------------------------------------- /code/wrapper_lib/screamtxbw_plugin_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/code/wrapper_lib/screamtxbw_plugin_wrapper.cpp -------------------------------------------------------------------------------- /examples/trace-dualpi-50Mbps-25ms-l4s-txrx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/examples/trace-dualpi-50Mbps-25ms-l4s-txrx.txt -------------------------------------------------------------------------------- /examples/trace-dualpi-50Mbps-25ms-l4s.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/examples/trace-dualpi-50Mbps-25ms-l4s.txt -------------------------------------------------------------------------------- /examples/trace-dualpi-50Mbps-25ms-nol4s-txrx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/examples/trace-dualpi-50Mbps-25ms-nol4s-txrx.txt -------------------------------------------------------------------------------- /examples/trace-dualpi-50Mbps-25ms-nol4s.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/examples/trace-dualpi-50Mbps-25ms-nol4s.txt -------------------------------------------------------------------------------- /gstscream/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | -------------------------------------------------------------------------------- /gstscream/2717.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/gstscream/2717.patch -------------------------------------------------------------------------------- /gstscream/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/gstscream/Cargo.lock -------------------------------------------------------------------------------- /gstscream/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/gstscream/Cargo.toml -------------------------------------------------------------------------------- /gstscream/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/gstscream/README.md -------------------------------------------------------------------------------- /gstscream/build.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | gst_plugin_version_helper::info(); 3 | } 4 | -------------------------------------------------------------------------------- /gstscream/scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/gstscream/scripts/build.sh -------------------------------------------------------------------------------- /gstscream/scripts/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/gstscream/scripts/env.sh -------------------------------------------------------------------------------- /gstscream/scripts/receiver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/gstscream/scripts/receiver.sh -------------------------------------------------------------------------------- /gstscream/scripts/receiver_3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/gstscream/scripts/receiver_3.sh -------------------------------------------------------------------------------- /gstscream/scripts/receiver_bw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/gstscream/scripts/receiver_bw.sh -------------------------------------------------------------------------------- /gstscream/scripts/screamtx_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/gstscream/scripts/screamtx_stats.py -------------------------------------------------------------------------------- /gstscream/scripts/sender.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/gstscream/scripts/sender.sh -------------------------------------------------------------------------------- /gstscream/scripts/sender_3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/gstscream/scripts/sender_3.sh -------------------------------------------------------------------------------- /gstscream/scripts/sender_bw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/gstscream/scripts/sender_bw.sh -------------------------------------------------------------------------------- /gstscream/scripts/sysctl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/gstscream/scripts/sysctl.sh -------------------------------------------------------------------------------- /gstscream/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/gstscream/src/lib.rs -------------------------------------------------------------------------------- /gstscream/src/receiver.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/gstscream/src/receiver.rs -------------------------------------------------------------------------------- /gstscream/src/screamrx/ScreamRx.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/gstscream/src/screamrx/ScreamRx.rs -------------------------------------------------------------------------------- /gstscream/src/screamrx/ecn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/gstscream/src/screamrx/ecn.rs -------------------------------------------------------------------------------- /gstscream/src/screamrx/imp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/gstscream/src/screamrx/imp.rs -------------------------------------------------------------------------------- /gstscream/src/screamrx/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/gstscream/src/screamrx/mod.rs -------------------------------------------------------------------------------- /gstscream/src/screamtx/imp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/gstscream/src/screamtx/imp.rs -------------------------------------------------------------------------------- /gstscream/src/screamtx/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/gstscream/src/screamtx/mod.rs -------------------------------------------------------------------------------- /gstscream/src/screamtxbw/imp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/gstscream/src/screamtxbw/imp.rs -------------------------------------------------------------------------------- /gstscream/src/screamtxbw/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/gstscream/src/screamtxbw/mod.rs -------------------------------------------------------------------------------- /gstscream/src/sender.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/gstscream/src/sender.rs -------------------------------------------------------------------------------- /gstscream/src/sender_util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/gstscream/src/sender_util.rs -------------------------------------------------------------------------------- /gstscream/udp_ecn_diff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/gstscream/udp_ecn_diff.txt -------------------------------------------------------------------------------- /images/L4S-100Mbps-25ms-0-4-0-TCP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/images/L4S-100Mbps-25ms-0-4-0-TCP.png -------------------------------------------------------------------------------- /images/L4S-100Mbps-25ms-0-4-TCP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/images/L4S-100Mbps-25ms-0-4-TCP.png -------------------------------------------------------------------------------- /images/L4S-100Mbps-25ms-r-50-0-4-TCP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/images/L4S-100Mbps-25ms-r-50-0-4-TCP.png -------------------------------------------------------------------------------- /images/SCReAM-DualPi2-50Mbps-25ms-L4S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/images/SCReAM-DualPi2-50Mbps-25ms-L4S.png -------------------------------------------------------------------------------- /images/SCReAM-DualPi2-50Mbps-25ms-noL4S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/images/SCReAM-DualPi2-50Mbps-25ms-noL4S.png -------------------------------------------------------------------------------- /images/SCReAM-V2-L4S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/images/SCReAM-V2-L4S.png -------------------------------------------------------------------------------- /images/SCReAM-V2-RTT-25ms-1360B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/images/SCReAM-V2-RTT-25ms-1360B.png -------------------------------------------------------------------------------- /images/SCReAM-V2-noL4S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/images/SCReAM-V2-noL4S.png -------------------------------------------------------------------------------- /images/SCReAM_LTE_UL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/images/SCReAM_LTE_UL.png -------------------------------------------------------------------------------- /images/image_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/images/image_1.png -------------------------------------------------------------------------------- /images/image_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/images/image_2.png -------------------------------------------------------------------------------- /images/scream_ecn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/images/scream_ecn.png -------------------------------------------------------------------------------- /images/scream_ecn_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/images/scream_ecn_2.png -------------------------------------------------------------------------------- /images/scream_ecn_keyframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/images/scream_ecn_keyframe.png -------------------------------------------------------------------------------- /images/scream_l4s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/images/scream_l4s.png -------------------------------------------------------------------------------- /images/scream_l4s_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/images/scream_l4s_2.png -------------------------------------------------------------------------------- /images/scream_noecn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/images/scream_noecn.png -------------------------------------------------------------------------------- /images/scream_noecn_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/images/scream_noecn_2.png -------------------------------------------------------------------------------- /images/scream_noecn_keyframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/images/scream_noecn_keyframe.png -------------------------------------------------------------------------------- /multicam/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/README.md -------------------------------------------------------------------------------- /multicam/receiver/LICENSE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/receiver/LICENSE.dat -------------------------------------------------------------------------------- /multicam/receiver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/receiver/README.md -------------------------------------------------------------------------------- /multicam/receiver/killitall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/receiver/killitall.sh -------------------------------------------------------------------------------- /multicam/receiver/rendermedia-intel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/receiver/rendermedia-intel.sh -------------------------------------------------------------------------------- /multicam/receiver/rendermedia.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/receiver/rendermedia.sh -------------------------------------------------------------------------------- /multicam/receiver/scream/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/receiver/scream/CMakeLists.txt -------------------------------------------------------------------------------- /multicam/receiver/scream/code/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/receiver/scream/code/CMakeLists.txt -------------------------------------------------------------------------------- /multicam/receiver/scream/code/scream_receiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/receiver/scream/code/scream_receiver.cpp -------------------------------------------------------------------------------- /multicam/receiver/startreceiver-intel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/receiver/startreceiver-intel.sh -------------------------------------------------------------------------------- /multicam/receiver/startreceiver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/receiver/startreceiver.sh -------------------------------------------------------------------------------- /multicam/sender/6_bkg_L4S_flows.scream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/6_bkg_L4S_flows.scream -------------------------------------------------------------------------------- /multicam/sender/LICENSE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/LICENSE.dat -------------------------------------------------------------------------------- /multicam/sender/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/README.md -------------------------------------------------------------------------------- /multicam/sender/default.scream: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /multicam/sender/gst-codec-ctrl/gst-plugin/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/gst-codec-ctrl/gst-plugin/AUTHORS -------------------------------------------------------------------------------- /multicam/sender/gst-codec-ctrl/gst-plugin/COPYING: -------------------------------------------------------------------------------- 1 | Put your license in here! 2 | 3 | -------------------------------------------------------------------------------- /multicam/sender/gst-codec-ctrl/gst-plugin/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/gst-codec-ctrl/gst-plugin/ChangeLog -------------------------------------------------------------------------------- /multicam/sender/gst-codec-ctrl/gst-plugin/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/gst-codec-ctrl/gst-plugin/INSTALL -------------------------------------------------------------------------------- /multicam/sender/gst-codec-ctrl/gst-plugin/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | EXTRA_DIST = autogen.sh 4 | -------------------------------------------------------------------------------- /multicam/sender/gst-codec-ctrl/gst-plugin/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/gst-codec-ctrl/gst-plugin/Makefile.in -------------------------------------------------------------------------------- /multicam/sender/gst-codec-ctrl/gst-plugin/NEWS: -------------------------------------------------------------------------------- 1 | Nothing much yet. 2 | -------------------------------------------------------------------------------- /multicam/sender/gst-codec-ctrl/gst-plugin/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/gst-codec-ctrl/gst-plugin/README -------------------------------------------------------------------------------- /multicam/sender/gst-codec-ctrl/gst-plugin/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/gst-codec-ctrl/gst-plugin/aclocal.m4 -------------------------------------------------------------------------------- /multicam/sender/gst-codec-ctrl/gst-plugin/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/gst-codec-ctrl/gst-plugin/autogen.sh -------------------------------------------------------------------------------- /multicam/sender/gst-codec-ctrl/gst-plugin/autom4te.cache/output.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/gst-codec-ctrl/gst-plugin/autom4te.cache/output.0 -------------------------------------------------------------------------------- /multicam/sender/gst-codec-ctrl/gst-plugin/autom4te.cache/output.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/gst-codec-ctrl/gst-plugin/autom4te.cache/output.1 -------------------------------------------------------------------------------- /multicam/sender/gst-codec-ctrl/gst-plugin/autom4te.cache/requests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/gst-codec-ctrl/gst-plugin/autom4te.cache/requests -------------------------------------------------------------------------------- /multicam/sender/gst-codec-ctrl/gst-plugin/autom4te.cache/traces.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/gst-codec-ctrl/gst-plugin/autom4te.cache/traces.0 -------------------------------------------------------------------------------- /multicam/sender/gst-codec-ctrl/gst-plugin/autom4te.cache/traces.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/gst-codec-ctrl/gst-plugin/autom4te.cache/traces.1 -------------------------------------------------------------------------------- /multicam/sender/gst-codec-ctrl/gst-plugin/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/gst-codec-ctrl/gst-plugin/compile -------------------------------------------------------------------------------- /multicam/sender/gst-codec-ctrl/gst-plugin/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/gst-codec-ctrl/gst-plugin/config.guess -------------------------------------------------------------------------------- /multicam/sender/gst-codec-ctrl/gst-plugin/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/gst-codec-ctrl/gst-plugin/config.h -------------------------------------------------------------------------------- /multicam/sender/gst-codec-ctrl/gst-plugin/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/gst-codec-ctrl/gst-plugin/config.h.in -------------------------------------------------------------------------------- /multicam/sender/gst-codec-ctrl/gst-plugin/config.h.in~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/gst-codec-ctrl/gst-plugin/config.h.in~ -------------------------------------------------------------------------------- /multicam/sender/gst-codec-ctrl/gst-plugin/config.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/gst-codec-ctrl/gst-plugin/config.log -------------------------------------------------------------------------------- /multicam/sender/gst-codec-ctrl/gst-plugin/config.status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/gst-codec-ctrl/gst-plugin/config.status -------------------------------------------------------------------------------- /multicam/sender/gst-codec-ctrl/gst-plugin/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/gst-codec-ctrl/gst-plugin/config.sub -------------------------------------------------------------------------------- /multicam/sender/gst-codec-ctrl/gst-plugin/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/gst-codec-ctrl/gst-plugin/configure -------------------------------------------------------------------------------- /multicam/sender/gst-codec-ctrl/gst-plugin/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/gst-codec-ctrl/gst-plugin/configure.ac -------------------------------------------------------------------------------- /multicam/sender/gst-codec-ctrl/gst-plugin/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/gst-codec-ctrl/gst-plugin/depcomp -------------------------------------------------------------------------------- /multicam/sender/gst-codec-ctrl/gst-plugin/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/gst-codec-ctrl/gst-plugin/install-sh -------------------------------------------------------------------------------- /multicam/sender/gst-codec-ctrl/gst-plugin/libtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/gst-codec-ctrl/gst-plugin/libtool -------------------------------------------------------------------------------- /multicam/sender/gst-codec-ctrl/gst-plugin/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/gst-codec-ctrl/gst-plugin/ltmain.sh -------------------------------------------------------------------------------- /multicam/sender/gst-codec-ctrl/gst-plugin/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/gst-codec-ctrl/gst-plugin/missing -------------------------------------------------------------------------------- /multicam/sender/gst-codec-ctrl/gst-plugin/src/.deps/libgstcodecctrl_la-gstcodecctrl.Plo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/gst-codec-ctrl/gst-plugin/src/.deps/libgstcodecctrl_la-gstcodecctrl.Plo -------------------------------------------------------------------------------- /multicam/sender/gst-codec-ctrl/gst-plugin/src/.libs/libgstcodecctrl.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/gst-codec-ctrl/gst-plugin/src/.libs/libgstcodecctrl.exp -------------------------------------------------------------------------------- /multicam/sender/gst-codec-ctrl/gst-plugin/src/.libs/libgstcodecctrl.lai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/gst-codec-ctrl/gst-plugin/src/.libs/libgstcodecctrl.lai -------------------------------------------------------------------------------- /multicam/sender/gst-codec-ctrl/gst-plugin/src/.libs/libgstcodecctrl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/gst-codec-ctrl/gst-plugin/src/.libs/libgstcodecctrl.so -------------------------------------------------------------------------------- /multicam/sender/gst-codec-ctrl/gst-plugin/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/gst-codec-ctrl/gst-plugin/src/Makefile.am -------------------------------------------------------------------------------- /multicam/sender/gst-codec-ctrl/gst-plugin/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/gst-codec-ctrl/gst-plugin/src/Makefile.in -------------------------------------------------------------------------------- /multicam/sender/gst-codec-ctrl/gst-plugin/src/gstcodecctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/gst-codec-ctrl/gst-plugin/src/gstcodecctrl.cpp -------------------------------------------------------------------------------- /multicam/sender/gst-codec-ctrl/gst-plugin/src/gstcodecctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/gst-codec-ctrl/gst-plugin/src/gstcodecctrl.h -------------------------------------------------------------------------------- /multicam/sender/gst-codec-ctrl/gst-plugin/src/gstplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/gst-codec-ctrl/gst-plugin/src/gstplugin.cpp -------------------------------------------------------------------------------- /multicam/sender/gst-codec-ctrl/gst-plugin/src/gstplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/gst-codec-ctrl/gst-plugin/src/gstplugin.h -------------------------------------------------------------------------------- /multicam/sender/gst-codec-ctrl/gst-plugin/src/gsttransform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/gst-codec-ctrl/gst-plugin/src/gsttransform.c -------------------------------------------------------------------------------- /multicam/sender/gst-codec-ctrl/gst-plugin/src/gsttransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/gst-codec-ctrl/gst-plugin/src/gsttransform.h -------------------------------------------------------------------------------- /multicam/sender/gst-codec-ctrl/gst-plugin/src/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/gst-codec-ctrl/gst-plugin/src/targetver.h -------------------------------------------------------------------------------- /multicam/sender/gst-codec-ctrl/gst-plugin/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for config.h 2 | -------------------------------------------------------------------------------- /multicam/sender/killitall.sh: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | killall -9 gst-launch-1.0 scream_sender 3 | 4 | -------------------------------------------------------------------------------- /multicam/sender/scream/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/scream/CMakeLists.txt -------------------------------------------------------------------------------- /multicam/sender/scream/code/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/scream/code/CMakeLists.txt -------------------------------------------------------------------------------- /multicam/sender/scream/code/scream_sender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/scream/code/scream_sender.cpp -------------------------------------------------------------------------------- /multicam/sender/startsender.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/startsender.sh -------------------------------------------------------------------------------- /multicam/sender/startsender_2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/multicam/sender/startsender_2.sh -------------------------------------------------------------------------------- /old_readme_not.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/old_readme_not.md -------------------------------------------------------------------------------- /plot_1_stream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/plot_1_stream.m -------------------------------------------------------------------------------- /plot_1_stream_s.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/plot_1_stream_s.m -------------------------------------------------------------------------------- /plot_4_stream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/plot_4_stream.m -------------------------------------------------------------------------------- /plot_cdf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/plot_cdf.m -------------------------------------------------------------------------------- /plot_thp_delay.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/plot_thp_delay.m -------------------------------------------------------------------------------- /plot_thp_delay_new.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/plot_thp_delay_new.m -------------------------------------------------------------------------------- /plot_txrx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/plot_txrx.m -------------------------------------------------------------------------------- /scream.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/scream.sln -------------------------------------------------------------------------------- /scream_ecn_keyframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/scream_ecn_keyframe.png -------------------------------------------------------------------------------- /scream_noecn_keyframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/scream_noecn_keyframe.png -------------------------------------------------------------------------------- /test-record.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/test-record.md -------------------------------------------------------------------------------- /test_v_a.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/test_v_a.m -------------------------------------------------------------------------------- /traces/trace_flat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/traces/trace_flat.txt -------------------------------------------------------------------------------- /traces/trace_key.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/traces/trace_key.txt -------------------------------------------------------------------------------- /traces/trace_no_key.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/traces/trace_no_key.txt -------------------------------------------------------------------------------- /version-history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/scream/HEAD/version-history.md --------------------------------------------------------------------------------