Changeset 4dbeeda8ade44481672b264d4f1c89444cbf8efb
- Timestamp:
- 04/17/08 14:35:52
(5 months ago)
- Author:
- Jean-Paul Saman <jean-paul.saman@m2x.nl>
- git-committer:
- Jean-Paul Saman <jean-paul.saman@m2x.nl> 1208435752 +0200
- git-parent:
[ee482262ae92558f8b7c447d5b355760a85d6b9b]
- git-author:
- Jean-Paul Saman <jean-paul.saman@m2x.nl> 1208435712 +0200
- Message:
Fix RTSP client receiving on standard RTSP port 554.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r96e4e5f |
r4dbeeda |
|
| 471 | 471 | if( !psz_url ) return VLC_ENOMEM; |
|---|
| 472 | 472 | |
|---|
| | 473 | if( p_sys->url.i_port == 0 ) p_sys->url.i_port = 554; |
|---|
| 473 | 474 | if( p_sys->url.psz_username || p_sys->url.psz_password ) |
|---|
| 474 | 475 | { |
|---|
| 475 | | sprintf( psz_url, "rtsp://%s%s", p_sys->url.psz_host, |
|---|
| 476 | | p_sys->url.psz_path ); |
|---|
| | 476 | sprintf( psz_url, "rtsp://%s:%d%s", p_sys->url.psz_host, |
|---|
| | 477 | p_sys->url.i_port, p_sys->url.psz_path ); |
|---|
| 477 | 478 | |
|---|
| 478 | 479 | psz_user = strdup( p_sys->url.psz_username ); |
|---|