Changeset 8a67cac427665f097c95b9272cf431b752939724
- Timestamp:
- 09/01/07 19:50:51
(1 year ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1188669051 +0000
- git-parent:
[7440827a7f8064269e74394895ec0c6073778490]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1188669051 +0000
- Message:
Use RTP sout for RTP
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r272e38a |
r8a67cac |
|
| 358 | 358 | { |
|---|
| 359 | 359 | if( !dup_opts.IsEmpty() ) dup_opts += wxT(","); |
|---|
| 360 | | dup_opts += wxT("dst=std{access=rtp,mux="); |
|---|
| | 360 | dup_opts += wxT("dst=rtp{mux="); |
|---|
| 361 | 361 | dup_opts += encapsulation + wxT(",dst="); |
|---|
| 362 | 362 | |
|---|
| re02432e |
r8a67cac |
|
| 1612 | 1612 | v6 = ( address[0] != '[' ) && ( strchr( address, ':' ) != NULL ); |
|---|
| 1613 | 1613 | asprintf( &psz_opt, |
|---|
| 1614 | | ":sout=#standard{mux=%s,dst=%s%s%s,access=%s%s}", |
|---|
| 1615 | | mux, v6 ? "[" : "", address, v6 ? "]" : "", method, |
|---|
| | 1614 | ":sout=#%smux=%s,dst=%s%s%s%s}", method, |
|---|
| | 1615 | mux, v6 ? "[" : "", address, v6 ? "]" : "", |
|---|
| 1616 | 1616 | psz_sap_option ?: "" ); |
|---|
| 1617 | 1617 | if( psz_sap_option ) free( psz_sap_option ); |
|---|
| r7fd3632 |
r8a67cac |
|
| 120 | 120 | const struct method methods_array[] = |
|---|
| 121 | 121 | { |
|---|
| 122 | | {"rtp",N_("RTP Unicast"), N_("Stream to a single computer."), |
|---|
| | 122 | {"rtp{",N_("RTP Unicast"), N_("Stream to a single computer."), |
|---|
| 123 | 123 | N_("Enter the address of the computer to stream to."), |
|---|
| 124 | 124 | { MUX_TS, -1,-1,-1,-1,-1,-1,-1,-1 } }, |
|---|
| 125 | | {"rtp",N_("RTP Multicast"), |
|---|
| | 125 | {"rtp{",N_("RTP Multicast"), |
|---|
| 126 | 126 | N_("Stream to a dynamic group of computers on a " |
|---|
| 127 | 127 | "multicast-enabled network. This is the most efficient method " |
|---|
| … | … | |
| 131 | 131 | "For private use, enter an address beginning with 239.255."), |
|---|
| 132 | 132 | { MUX_TS, -1,-1,-1,-1,-1,-1,-1,-1 } }, |
|---|
| 133 | | {"http","HTTP", |
|---|
| | 133 | {"std{access=http,","HTTP", |
|---|
| 134 | 134 | N_("Stream to several computers. This method is " |
|---|
| 135 | 135 | "less efficient, as the server needs to send the " |
|---|