Remove legacy references to stransmit (#725)

* Remove legacy references to stransmit
This commit is contained in:
Ade Miller
2019-06-10 08:32:48 -07:00
committed by Roman
parent 31d602138c
commit ac21d5e9dc
6 changed files with 7 additions and 6 deletions
+1 -1
View File
@@ -11,7 +11,7 @@
// NOTE: This application uses C++11.
// This program uses quite a simple architecture, which is mainly related to
// the way how it's invoked: stransmit <source> <target> (plus options).
// the way how it's invoked: srt-live-transmit <source> <target> (plus options).
//
// The media for <source> and <target> are filled by abstract classes
// named Source and Target respectively. Most important virtuals to
+1 -1
View File
@@ -125,7 +125,7 @@ into single network units with appropriate time intervals between them. This can
be done by an application with explicit knowledge of the type of stream and how to
transform it into time-divided single network transport units.
The `stransmit` application, or any other application that uses SRT for
The `srt-live-transmit` application, or any other application that uses SRT for
reading, should always read data in 1316-byte segments (network transport units) and
feed each such unit into the call to an appropriate `srt_send*` function. The
important part of this process is that these 1316-byte units appear at precise times
+2 -2
View File
@@ -8,8 +8,8 @@
*
*/
// This is a simplified version of stransmit, which does not use C++11,
// however its functionality is limited to SRT to UDT only.
// This is a simplified version of srt-live-transmit, which does not use C++11,
// however its functionality is limited to SRT to UDP only.
#include <iostream>
#include <string>
+1 -1
View File
@@ -27,5 +27,5 @@ if [[ -z $SRCLOC ]]; then
exit 1
fi
$DIRNAME/stransmit "$1" file://con/ | ffplay -
$DIRNAME/srt-live-transmit "$1" file://con/ | ffplay -
Symlink
+1
View File
@@ -0,0 +1 @@
scripts/srt-ffplay
+1 -1
View File
@@ -11,7 +11,7 @@
// NOTE: This application uses C++11.
// This program uses quite a simple architecture, which is mainly related to
// the way how it's invoked: stransmit <source> <target> (plus options).
// the way how it's invoked: srt-test-live <source> <target> (plus options).
//
// The media for <source> and <target> are filled by abstract classes
// named Source and Target respectively. Most important virtuals to