Changeset 6e8c4e7cb39657277fdd52a128962f6c0b791724

Show
Ignore:
Timestamp:
03/04/08 19:10:18 (6 months ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1204654218 +0200
git-parent:

[8e19781ee1d628f93b0933a58049b09025ea3a8b]

git-author:
Rémi Denis-Courmont <rem@videolan.org> 1204654218 +0200
Message:

Use ephemeral default ports for RTP, instead of clashing with raw UDP.

Signed-off-by: Rémi Denis-Courmont <rem@videolan.org>

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • NEWS

    r3613b8a r6e8c4e7  
    3131 * The "rtp" access output module has been removed: 
    3232   Please use the RTP stream output instead, e.g.: 
    33      Old: '#std{access=rtp,dst=239.255.1.2,sap}' 
    34      New: '#rtp{dst=239.255.1.2,sap}' 
     33     Old: '#std{access=rtp,mux=ts,dst=239.255.1.2:5004,sap}' 
     34     New: '#rtp{mux=ts,dst=239.255.1.2,port=5004,sap}' 
    3535 * You now need to append --m3u-extvlcopt to your command line to enable 
    3636   EXTVLCOPT options parsing in m3u playlists. Note that only a limited set 
  • modules/stream_out/rtp.c

    rf3c79cb r6e8c4e7  
    174174                PROTO_LONGTEXT, VLC_FALSE ); 
    175175        change_string_list( ppsz_protos, ppsz_protocols, NULL ); 
    176     add_integer( SOUT_CFG_PREFIX "port", 1234, NULL, PORT_TEXT, 
     176    add_integer( SOUT_CFG_PREFIX "port", 50004, NULL, PORT_TEXT, 
    177177                 PORT_LONGTEXT, VLC_TRUE ); 
    178     add_integer( SOUT_CFG_PREFIX "port-audio", 1230, NULL, PORT_AUDIO_TEXT, 
     178    add_integer( SOUT_CFG_PREFIX "port-audio", 50000, NULL, PORT_AUDIO_TEXT, 
    179179                 PORT_AUDIO_LONGTEXT, VLC_TRUE ); 
    180     add_integer( SOUT_CFG_PREFIX "port-video", 1232, NULL, PORT_VIDEO_TEXT, 
     180    add_integer( SOUT_CFG_PREFIX "port-video", 50002, NULL, PORT_VIDEO_TEXT, 
    181181                 PORT_VIDEO_LONGTEXT, VLC_TRUE ); 
    182182