Changeset 7ab18bda8d89925ec0632f63ca5f3f8b83e880dc
- Timestamp:
- 01/09/07 21:34:41
(1 year ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1188675281 +0000
- git-parent:
[24b546fb5f93ecf019f67762d68f78016aeae7ac]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1188675281 +0000
- Message:
Remove old unused code
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r24b546f |
r7ab18bd |
|
| 85 | 85 | rtsp->psz_path = NULL; |
|---|
| 86 | 86 | |
|---|
| 87 | | #if 0 |
|---|
| 88 | | if( asprintf( &rtsp->psz_control, "rtsp://%s:%d%s", |
|---|
| 89 | | url->psz_host, url->i_port > 0 ? url->i_port : 554, |
|---|
| 90 | | rtsp->psz_path ) == -1 ) |
|---|
| 91 | | { |
|---|
| 92 | | rtsp->psz_control = NULL; |
|---|
| 93 | | goto error; |
|---|
| 94 | | } |
|---|
| 95 | | #endif |
|---|
| 96 | | |
|---|
| 97 | 87 | rtsp->host = httpd_HostNew( VLC_OBJECT(p_stream), url->psz_host, |
|---|
| 98 | 88 | rtsp->port ); |
|---|