Changeset 39d3b160af5cb532620d80947f2c71cf297ffcf8
- Timestamp:
- 23/08/07 19:46:17
(1 year ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1187891177 +0000
- git-parent:
[7db321932152dd21ac21c1d1d8141bfb6c13d8e4]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1187891177 +0000
- Message:
Fix previous commit
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r7db3219 |
r39d3b16 |
|
| 310 | 310 | { |
|---|
| 311 | 311 | sout_stream_id_t *id = (sout_stream_id_t*)p_args; |
|---|
| 312 | | sout_stream_t *p_stream = idd->p_stream; |
|---|
| | 312 | sout_stream_t *p_stream = id->p_stream; |
|---|
| 313 | 313 | sout_stream_sys_t *p_sys = p_stream->p_sys; |
|---|
| 314 | 314 | char psz_session_init[21]; |
|---|
| … | … | |
| 423 | 423 | "RTP/AVP/UDP;destination=%s;port=%d-%d;" |
|---|
| 424 | 424 | "ttl=%d;mode=play", |
|---|
| 425 | | p_sys->psz_destination, idd->i_port, idd->i_port+1, |
|---|
| | 425 | p_sys->psz_destination, id->i_port, id->i_port+1, |
|---|
| 426 | 426 | ( p_sys->i_ttl > 0 ) ? p_sys->i_ttl : 1 ); |
|---|
| 427 | 427 | } |
|---|