Changeset 8a67cac427665f097c95b9272cf431b752939724

Show
Ignore:
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
  • modules/gui/wxwidgets/dialogs/streamout.cpp

    r272e38a r8a67cac  
    358358    { 
    359359        if( !dup_opts.IsEmpty() ) dup_opts += wxT(","); 
    360         dup_opts += wxT("dst=std{access=rtp,mux="); 
     360        dup_opts += wxT("dst=rtp{mux="); 
    361361        dup_opts += encapsulation + wxT(",dst="); 
    362362 
  • modules/gui/wxwidgets/dialogs/wizard.cpp

    re02432e r8a67cac  
    16121612            v6 = ( address[0] != '[' ) && ( strchr( address, ':' ) != NULL ); 
    16131613            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 ? "]" : "", 
    16161616                      psz_sap_option ?: "" ); 
    16171617            if( psz_sap_option ) free( psz_sap_option ); 
  • modules/gui/wxwidgets/streamdata.cpp

    r7fd3632 r8a67cac  
    120120const struct method methods_array[] = 
    121121{ 
    122     {"rtp",N_("RTP Unicast"), N_("Stream to a single computer."), 
     122    {"rtp{",N_("RTP Unicast"), N_("Stream to a single computer."), 
    123123     N_("Enter the address of the computer to stream to."), 
    124124     { MUX_TS, -1,-1,-1,-1,-1,-1,-1,-1 } }, 
    125     {"rtp",N_("RTP Multicast"), 
     125    {"rtp{",N_("RTP Multicast"), 
    126126     N_("Stream to a dynamic group of computers on a " 
    127127     "multicast-enabled network. This is the most efficient method " 
     
    131131     "For private use, enter an address beginning with 239.255."), 
    132132     { MUX_TS, -1,-1,-1,-1,-1,-1,-1,-1 } }, 
    133     {"http","HTTP", 
     133    {"std{access=http,","HTTP", 
    134134     N_("Stream to several computers. This method is " 
    135135     "less efficient, as the server needs to send the "