| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 |
|
|---|
| 22 |
|
|---|
| 23 |
|
|---|
| 24 |
|
|---|
| 25 |
|
|---|
| 26 |
|
|---|
| 27 |
|
|---|
| 28 |
|
|---|
| 29 |
|
|---|
| 30 |
|
|---|
| 31 |
|
|---|
| 32 |
|
|---|
| 33 |
#define __STDC_CONSTANT_MACROS 1 |
|---|
| 34 |
|
|---|
| 35 |
#ifdef HAVE_CONFIG_H |
|---|
| 36 |
# include "config.h" |
|---|
| 37 |
#endif |
|---|
| 38 |
|
|---|
| 39 |
#include <inttypes.h> |
|---|
| 40 |
|
|---|
| 41 |
#include <vlc_common.h> |
|---|
| 42 |
#include <vlc_plugin.h> |
|---|
| 43 |
|
|---|
| 44 |
#include <vlc_demux.h> |
|---|
| 45 |
#include <vlc_interface.h> |
|---|
| 46 |
#include <vlc_network.h> |
|---|
| 47 |
#include <vlc_url.h> |
|---|
| 48 |
|
|---|
| 49 |
#include <iostream> |
|---|
| 50 |
#include <limits.h> |
|---|
| 51 |
|
|---|
| 52 |
|
|---|
| 53 |
#if defined( WIN32 ) |
|---|
| 54 |
# include <winsock2.h> |
|---|
| 55 |
#endif |
|---|
| 56 |
|
|---|
| 57 |
#include "UsageEnvironment.hh" |
|---|
| 58 |
#include "BasicUsageEnvironment.hh" |
|---|
| 59 |
#include "GroupsockHelper.hh" |
|---|
| 60 |
#include "liveMedia.hh" |
|---|
| 61 |
|
|---|
| 62 |
extern "C" { |
|---|
| 63 |
#include "../access/mms/asf.h" |
|---|
| 64 |
} |
|---|
| 65 |
|
|---|
| 66 |
using namespace std; |
|---|
| 67 |
|
|---|
| 68 |
|
|---|
| 69 |
|
|---|
| 70 |
|
|---|
| 71 |
static int Open ( vlc_object_t * ); |
|---|
| 72 |
static void Close( vlc_object_t * ); |
|---|
| 73 |
|
|---|
| 74 |
#define CACHING_TEXT N_("Caching value (ms)") |
|---|
| 75 |
#define CACHING_LONGTEXT N_( \ |
|---|
| 76 |
"Allows you to modify the default caching value for RTSP streams. This " \ |
|---|
| 77 |
"value should be set in millisecond units." ) |
|---|
| 78 |
|
|---|
| 79 |
#define KASENNA_TEXT N_( "Kasenna RTSP dialect") |
|---|
| 80 |
#define KASENNA_LONGTEXT N_( "Kasenna servers use an old and unstandard " \ |
|---|
| 81 |
"dialect of RTSP. When you set this parameter, VLC will try this dialect "\ |
|---|
| 82 |
"for communication. In this mode you cannot connect to normal RTSP servers." ) |
|---|
| 83 |
|
|---|
| 84 |
#define USER_TEXT N_("RTSP user name") |
|---|
| 85 |
#define USER_LONGTEXT N_("Allows you to modify the user name that will " \ |
|---|
| 86 |
"be used for authenticating the connection.") |
|---|
| 87 |
#define PASS_TEXT N_("RTSP password") |
|---|
| 88 |
#define PASS_LONGTEXT N_("Allows you to modify the password that will be " \ |
|---|
| 89 |
"used for the connection.") |
|---|
| 90 |
|
|---|
| 91 |
vlc_module_begin(); |
|---|
| 92 |
set_description( N_("RTP/RTSP/SDP demuxer (using Live555)" ) ); |
|---|
| 93 |
set_capability( "demux", 50 ); |
|---|
| 94 |
set_shortname( "RTP/RTSP"); |
|---|
| 95 |
set_callbacks( Open, Close ); |
|---|
| 96 |
add_shortcut( "live" ); |
|---|
| 97 |
add_shortcut( "livedotcom" ); |
|---|
| 98 |
set_category( CAT_INPUT ); |
|---|
| 99 |
set_subcategory( SUBCAT_INPUT_DEMUX ); |
|---|
| 100 |
|
|---|
| 101 |
add_submodule(); |
|---|
| 102 |
set_description( N_("RTSP/RTP access and demux") ); |
|---|
| 103 |
add_shortcut( "rtsp" ); |
|---|
| 104 |
add_shortcut( "sdp" ); |
|---|
| 105 |
set_capability( "access_demux", 0 ); |
|---|
| 106 |
set_callbacks( Open, Close ); |
|---|
| 107 |
add_bool( "rtsp-tcp", 0, NULL, |
|---|
| 108 |
N_("Use RTP over RTSP (TCP)"), |
|---|
| 109 |
N_("Use RTP over RTSP (TCP)"), true ); |
|---|
| 110 |
add_integer( "rtp-client-port", -1, NULL, |
|---|
| 111 |
N_("Client port"), |
|---|
| 112 |
N_("Port to use for the RTP source of the session"), true ); |
|---|
| 113 |
add_bool( "rtsp-mcast", false, NULL, |
|---|
| 114 |
N_("Force multicast RTP via RTSP"), |
|---|
| 115 |
N_("Force multicast RTP via RTSP"), true ); |
|---|
| 116 |
add_bool( "rtsp-http", 0, NULL, |
|---|
| 117 |
N_("Tunnel RTSP and RTP over HTTP"), |
|---|
| 118 |
N_("Tunnel RTSP and RTP over HTTP"), true ); |
|---|
| 119 |
add_integer( "rtsp-http-port", 80, NULL, |
|---|
| 120 |
N_("HTTP tunnel port"), |
|---|
| 121 |
N_("Port to use for tunneling the RTSP/RTP over HTTP."), |
|---|
| 122 |
true ); |
|---|
| 123 |
add_integer("rtsp-caching", 4 * DEFAULT_PTS_DELAY / 1000, NULL, |
|---|
| 124 |
CACHING_TEXT, CACHING_LONGTEXT, true ); |
|---|
| 125 |
add_bool( "rtsp-kasenna", false, NULL, KASENNA_TEXT, |
|---|
| 126 |
KASENNA_LONGTEXT, true ); |
|---|
| 127 |
add_string( "rtsp-user", NULL, NULL, USER_TEXT, |
|---|
| 128 |
USER_LONGTEXT, true ); |
|---|
| 129 |
add_string( "rtsp-pwd", NULL, NULL, PASS_TEXT, |
|---|
| 130 |
PASS_LONGTEXT, true ); |
|---|
| 131 |
vlc_module_end(); |
|---|
| 132 |
|
|---|
| 133 |
|
|---|
| 134 |
|
|---|
| 135 |
|
|---|
| 136 |
|
|---|
| 137 |
|
|---|
| 138 |
typedef struct |
|---|
| 139 |
{ |
|---|
| 140 |
demux_t *p_demux; |
|---|
| 141 |
MediaSubsession *sub; |
|---|
| 142 |
|
|---|
| 143 |
es_format_t fmt; |
|---|
| 144 |
es_out_id_t *p_es; |
|---|
| 145 |
|
|---|
| 146 |
bool b_muxed; |
|---|
| 147 |
bool b_quicktime; |
|---|
| 148 |
bool b_asf; |
|---|
| 149 |
stream_t *p_out_muxed; |
|---|
| 150 |
|
|---|
| 151 |
uint8_t *p_buffer; |
|---|
| 152 |
unsigned int i_buffer; |
|---|
| 153 |
|
|---|
| 154 |
bool b_rtcp_sync; |
|---|
| 155 |
char waiting; |
|---|
| 156 |
int64_t i_pts; |
|---|
| 157 |
float i_npt; |
|---|
| 158 |
|
|---|
| 159 |
} live_track_t; |
|---|
| 160 |
|
|---|
| 161 |
struct timeout_thread_t |
|---|
| 162 |
{ |
|---|
| 163 |
VLC_COMMON_MEMBERS |
|---|
| 164 |
|
|---|
| 165 |
int64_t i_remain; |
|---|
| 166 |
bool b_handle_keep_alive; |
|---|
| 167 |
demux_sys_t *p_sys; |
|---|
| 168 |
}; |
|---|
| 169 |
|
|---|
| 170 |
struct demux_sys_t |
|---|
| 171 |
{ |
|---|
| 172 |
char *p_sdp; |
|---|
| 173 |
char *psz_path; |
|---|
| 174 |
vlc_url_t url; |
|---|
| 175 |
|
|---|
| 176 |
MediaSession *ms; |
|---|
| 177 |
TaskScheduler *scheduler; |
|---|
| 178 |
UsageEnvironment *env ; |
|---|
| 179 |
RTSPClient *rtsp; |
|---|
| 180 |
|
|---|
| 181 |
|
|---|
| 182 |
int i_track; |
|---|
| 183 |
live_track_t **track; |
|---|
| 184 |
|
|---|
| 185 |
|
|---|
| 186 |
asf_header_t asfh; |
|---|
| 187 |
stream_t *p_out_asf; |
|---|
| 188 |
bool b_real; |
|---|
| 189 |
|
|---|
| 190 |
|
|---|
| 191 |
int64_t i_pcr; |
|---|
| 192 |
float i_npt; |
|---|
| 193 |
float i_npt_length; |
|---|
| 194 |
float i_npt_start; |
|---|
| 195 |
|
|---|
| 196 |
|
|---|
| 197 |
int i_timeout; |
|---|
| 198 |
bool b_timeout_call; |
|---|
| 199 |
timeout_thread_t *p_timeout; |
|---|
| 200 |
|
|---|
| 201 |
|
|---|
| 202 |
bool b_force_mcast; |
|---|
| 203 |
bool b_multicast; |
|---|
| 204 |
bool b_no_data; |
|---|
| 205 |
int i_no_data_ti; |
|---|
| 206 |
|
|---|
| 207 |
char event; |
|---|
| 208 |
}; |
|---|
| 209 |
|
|---|
| 210 |
static int Demux ( demux_t * ); |
|---|
| 211 |
static int Control( demux_t *, int, va_list ); |
|---|
| 212 |
|
|---|
| 213 |
static int Connect ( demux_t * ); |
|---|
| 214 |
static int SessionsSetup( demux_t * ); |
|---|
| 215 |
static int Play ( demux_t *); |
|---|
| 216 |
static int ParseASF ( demux_t * ); |
|---|
| 217 |
static int RollOverTcp ( demux_t * ); |
|---|
| 218 |
|
|---|
| 219 |
static void StreamRead ( void *, unsigned int, unsigned int, |
|---|
| 220 |
struct timeval, unsigned int ); |
|---|
| 221 |
static void StreamClose ( void * ); |
|---|
| 222 |
static void TaskInterrupt( void * ); |
|---|
| 223 |
|
|---|
| 224 |
static void* TimeoutPrevention( vlc_object_t * ); |
|---|
| 225 |
|
|---|
| 226 |
static unsigned char* parseH264ConfigStr( char const* configStr, |
|---|
| 227 |
unsigned int& configSize ); |
|---|
| 228 |
|
|---|
| 229 |
|
|---|
| 230 |
|
|---|
| 231 |
|
|---|
| 232 |
static int Open ( vlc_object_t *p_this ) |
|---|
| 233 |
{ |
|---|
| 234 |
demux_t *p_demux = (demux_t*)p_this; |
|---|
| 235 |
demux_sys_t *p_sys = NULL; |
|---|
| 236 |
|
|---|
| 237 |
MediaSubsessionIterator *iter = NULL; |
|---|
| 238 |
MediaSubsession *sub = NULL; |
|---|
| 239 |
int i, i_return; |
|---|
| 240 |
int i_error = VLC_EGENERIC; |
|---|
| 241 |
|
|---|
| 242 |
if( p_demux->s ) |
|---|
| 243 |
{ |
|---|
| 244 |
|
|---|
| 245 |
|
|---|
| 246 |
const uint8_t *p_peek; |
|---|
| 247 |
if( stream_Peek( p_demux->s, &p_peek, 7 ) < 7 ) return VLC_EGENERIC; |
|---|
| 248 |
|
|---|
| 249 |
if( memcmp( p_peek, "v=0\r\n", 5 ) && |
|---|
| 250 |
memcmp( p_peek, "v=0\n", 4 ) && |
|---|
| 251 |
( p_peek[0] < 'a' || p_peek[0] > 'z' || p_peek[1] != '=' ) ) |
|---|
| 252 |
{ |
|---|
| 253 |
return VLC_EGENERIC; |
|---|
| 254 |
} |
|---|
| 255 |
} |
|---|
| 256 |
else |
|---|
| 257 |
{ |
|---|
| 258 |
var_Create( p_demux, "rtsp-caching", VLC_VAR_INTEGER|VLC_VAR_DOINHERIT ); |
|---|
| 259 |
} |
|---|
| 260 |
|
|---|
| 261 |
p_demux->pf_demux = Demux; |
|---|
| 262 |
p_demux->pf_control= Control; |
|---|
| 263 |
p_demux->p_sys = p_sys = (demux_sys_t*)malloc( sizeof( demux_sys_t ) ); |
|---|
| 264 |
if( !p_sys ) return VLC_ENOMEM; |
|---|
| 265 |
|
|---|
| 266 |
p_sys->p_sdp = NULL; |
|---|
| 267 |
p_sys->scheduler = NULL; |
|---|
| 268 |
p_sys->env = NULL; |
|---|
| 269 |
p_sys->ms = NULL; |
|---|
| 270 |
p_sys->rtsp = NULL; |
|---|
| 271 |
p_sys->i_track = 0; |
|---|
| 272 |
p_sys->track = NULL; |
|---|
| 273 |
p_sys->i_pcr = 0; |
|---|
| 274 |
p_sys->i_npt = 0.; |
|---|
| 275 |
p_sys->i_npt_start = 0.; |
|---|
| 276 |
p_sys->i_npt_length = 0.; |
|---|
| 277 |
p_sys->p_out_asf = NULL; |
|---|
| 278 |
p_sys->b_no_data = true; |
|---|
| 279 |
p_sys->i_no_data_ti = 0; |
|---|
| 280 |
p_sys->p_timeout = NULL; |
|---|
| 281 |
p_sys->i_timeout = 0; |
|---|
| 282 |
p_sys->b_timeout_call = false; |
|---|
| 283 |
p_sys->b_multicast = false; |
|---|
| 284 |
p_sys->b_real = false; |
|---|
| 285 |
p_sys->psz_path = strdup( p_demux->psz_path ); |
|---|
| 286 |
p_sys->b_force_mcast = var_CreateGetBool( p_demux, "rtsp-mcast" ); |
|---|
| 287 |
|
|---|
| 288 |
|
|---|
| 289 |
vlc_UrlParse( &p_sys->url, p_sys->psz_path, 0 ); |
|---|
| 290 |
|
|---|
| 291 |
if( ( p_sys->scheduler = BasicTaskScheduler::createNew() ) == NULL ) |
|---|
| 292 |
{ |
|---|
| 293 |
msg_Err( p_demux, "BasicTaskScheduler::createNew failed" ); |
|---|
| 294 |
goto error; |
|---|
| 295 |
} |
|---|
| 296 |
if( !( p_sys->env = BasicUsageEnvironment::createNew(*p_sys->scheduler) ) ) |
|---|
| 297 |
{ |
|---|
| 298 |
msg_Err( p_demux, "BasicUsageEnvironment::createNew failed" ); |
|---|
| 299 |
goto error; |
|---|
| 300 |
} |
|---|
| 301 |
|
|---|
| 302 |
if( strcasecmp( p_demux->psz_access, "sdp" ) ) |
|---|
| 303 |
{ |
|---|
| 304 |
char *p = p_sys->psz_path; |
|---|
| 305 |
while( (p = strchr( p, ' ' )) != NULL ) *p = '+'; |
|---|
| 306 |
} |
|---|
| 307 |
|
|---|
| 308 |
if( p_demux->s != NULL ) |
|---|
| 309 |
{ |
|---|
| 310 |
|
|---|
| 311 |
int i_sdp = 0; |
|---|
| 312 |
int i_sdp_max = 1000; |
|---|
| 313 |
uint8_t *p_sdp = (uint8_t*) malloc( i_sdp_max ); |
|---|
| 314 |
|
|---|
| 315 |
if( !p_sdp ) |
|---|
| 316 |
{ |
|---|
| 317 |
i_error = VLC_ENOMEM; |
|---|
| 318 |
goto error; |
|---|
| 319 |
} |
|---|
| 320 |
|
|---|
| 321 |
for( ;; ) |
|---|
| 322 |
{ |
|---|
| 323 |
int i_read = stream_Read( p_demux->s, &p_sdp[i_sdp], |
|---|
| 324 |
i_sdp_max - i_sdp - 1 ); |
|---|
| 325 |
|
|---|
| 326 |
if( !vlc_object_alive (p_demux) || p_demux->b_error ) |
|---|
| 327 |
{ |
|---|
| 328 |
free( p_sdp ); |
|---|
| 329 |
goto error; |
|---|
| 330 |
} |
|---|
| 331 |
|
|---|
| 332 |
if( i_read < 0 ) |
|---|
| 333 |
{ |
|---|
| 334 |
msg_Err( p_demux, "failed to read SDP" ); |
|---|
| 335 |
free( p_sdp ); |
|---|
| 336 |
goto error; |
|---|
| 337 |
} |
|---|
| 338 |
|
|---|
| 339 |
i_sdp += i_read; |
|---|
| 340 |
|
|---|
| 341 |
if( i_read < i_sdp_max - i_sdp - 1 ) |
|---|
| 342 |
{ |
|---|
| 343 |
p_sdp[i_sdp] = '\0'; |
|---|
| 344 |
break; |
|---|
| 345 |
} |
|---|
| 346 |
|
|---|
| 347 |
i_sdp_max += 1000; |
|---|
| 348 |
p_sdp = (uint8_t*)realloc( p_sdp, i_sdp_max ); |
|---|
| 349 |
} |
|---|
| 350 |
p_sys->p_sdp = (char*)p_sdp; |
|---|
| 351 |
} |
|---|
| 352 |
else if( ( p_demux->s == NULL ) && |
|---|
| 353 |
!strcasecmp( p_demux->psz_access, "sdp" ) ) |
|---|
| 354 |
{ |
|---|
| 355 |
|
|---|
| 356 |
p_sys->p_sdp = strdup( p_sys->psz_path ); |
|---|
| 357 |
} |
|---|
| 358 |
else if( ( i_return = Connect( p_demux ) ) != VLC_SUCCESS ) |
|---|
| 359 |
{ |
|---|
| 360 |
msg_Err( p_demux, "Failed to connect with rtsp://%s", p_sys->psz_path ); |
|---|
| 361 |
goto error; |
|---|
| 362 |
} |
|---|
| 363 |
|
|---|
| 364 |
if( p_sys->p_sdp == NULL ) |
|---|
| 365 |
{ |
|---|
| 366 |
msg_Err( p_demux, "Failed to retrieve the RTSP Session Description" ); |
|---|
| 367 |
i_error = VLC_ENOMEM; |
|---|
| 368 |
goto error; |
|---|
| 369 |
} |
|---|
| 370 |
|
|---|
| 371 |
if( ( i_return = SessionsSetup( p_demux ) ) != VLC_SUCCESS ) |
|---|
| 372 |
{ |
|---|
| 373 |
msg_Err( p_demux, "Nothing to play for rtsp://%s", p_sys->psz_path ); |
|---|
| 374 |
goto error; |
|---|
| 375 |
} |
|---|
| 376 |
|
|---|
| 377 |
if( p_sys->b_real ) goto error; |
|---|
| 378 |
|
|---|
| 379 |
if( ( i_return = Play( p_demux ) ) != VLC_SUCCESS ) |
|---|
| 380 |
goto error; |
|---|
| 381 |
|
|---|
| 382 |
if( p_sys->p_out_asf && ParseASF( p_demux ) ) |
|---|
| 383 |
{ |
|---|
| 384 |
msg_Err( p_demux, "cannot find a usable asf header" ); |
|---|
| 385 |
|
|---|
| 386 |
goto error; |
|---|
| 387 |
} |
|---|
| 388 |
|
|---|
| 389 |
if( p_sys->i_track <= 0 ) |
|---|
| 390 |
goto error; |
|---|
| 391 |
|
|---|
| 392 |
return VLC_SUCCESS; |
|---|
| 393 |
|
|---|
| 394 |
error: |
|---|
| 395 |
for( i = 0; i < p_sys->i_track; i++ ) |
|---|
| 396 |
{ |
|---|
| 397 |
live_track_t *tk = p_sys->track[i]; |
|---|
| 398 |
|
|---|
| 399 |
if( tk->b_muxed ) stream_DemuxDelete( tk->p_out_muxed ); |
|---|
| 400 |
es_format_Clean( &tk->fmt ); |
|---|
| 401 |
free( tk->p_buffer ); |
|---|
| 402 |
free( tk ); |
|---|
| 403 |
} |
|---|
| 404 |
|
|---|
| 405 |
if( p_sys->i_track ) free( p_sys->track ); |
|---|
| 406 |
if( p_sys->p_out_asf ) stream_DemuxDelete( p_sys->p_out_asf ); |
|---|
| 407 |
if( p_sys->rtsp && p_sys->ms ) p_sys->rtsp->teardownMediaSession( *p_sys->ms ); |
|---|
| 408 |
if( p_sys->ms ) Medium::close( p_sys->ms ); |
|---|
| 409 |
if( p_sys->rtsp ) RTSPClient::close( p_sys->rtsp ); |
|---|
| 410 |
if( p_sys->env ) p_sys->env->reclaim(); |
|---|
| 411 |
if( p_sys->p_timeout ) |
|---|
| 412 |
{ |
|---|
| 413 |
vlc_object_kill( p_sys->p_timeout ); |
|---|
| 414 |
vlc_thread_join( p_sys->p_timeout ); |
|---|
| 415 |
vlc_object_detach( p_sys->p_timeout ); |
|---|
| 416 |
vlc_object_release( p_sys->p_timeout ); |
|---|
| 417 |
} |
|---|
| 418 |
delete p_sys->scheduler; |
|---|
| 419 |
free( p_sys->p_sdp ); |
|---|
| 420 |
free( p_sys->psz_path ); |
|---|
| 421 |
|
|---|
| 422 |
vlc_UrlClean( &p_sys->url ); |
|---|
| 423 |
|
|---|
| 424 |
free( p_sys ); |
|---|
| 425 |
return i_error; |
|---|
| 426 |
} |
|---|
| 427 |
|
|---|
| 428 |
|
|---|
| 429 |
|
|---|
| 430 |
|
|---|
| 431 |
static void Close( vlc_object_t *p_this ) |
|---|
| 432 |
{ |
|---|
| 433 |
demux_t *p_demux = (demux_t*)p_this; |
|---|
| 434 |
demux_sys_t *p_sys = p_demux->p_sys; |
|---|
| 435 |
int i; |
|---|
| 436 |
|
|---|
| 437 |
for( i = 0; i < p_sys->i_track; i++ ) |
|---|
| 438 |
{ |
|---|
| 439 |
live_track_t *tk = p_sys->track[i]; |
|---|
| 440 |
|
|---|
| 441 |
if( tk->b_muxed ) stream_DemuxDelete( tk->p_out_muxed ); |
|---|
| 442 |
es_format_Clean( &tk->fmt ); |
|---|
| 443 |
free( tk->p_buffer ); |
|---|
| 444 |
free( tk ); |
|---|
| 445 |
} |
|---|
| 446 |
|
|---|
| 447 |
if( p_sys->i_track ) free( p_sys->track ); |
|---|
| 448 |
if( p_sys->p_out_asf ) stream_DemuxDelete( p_sys->p_out_asf ); |
|---|
| 449 |
if( p_sys->rtsp && p_sys->ms ) p_sys->rtsp->teardownMediaSession( *p_sys->ms ); |
|---|
| 450 |
if( p_sys->ms ) Medium::close( p_sys->ms ); |
|---|
| 451 |
if( p_sys->rtsp ) RTSPClient::close( p_sys->rtsp ); |
|---|
| 452 |
if( p_sys->env ) p_sys->env->reclaim(); |
|---|
| 453 |
if( p_sys->p_timeout ) |
|---|
| 454 |
{ |
|---|
| 455 |
vlc_object_kill( p_sys->p_timeout ); |
|---|
| 456 |
vlc_thread_join( p_sys->p_timeout ); |
|---|
| 457 |
vlc_object_detach( p_sys->p_timeout ); |
|---|
| 458 |
vlc_object_release( p_sys->p_timeout ); |
|---|
| 459 |
} |
|---|
| 460 |
delete p_sys->scheduler; |
|---|
| 461 |
free( p_sys->p_sdp ); |
|---|
| 462 |
free( p_sys->psz_path ); |
|---|
| 463 |
|
|---|
| 464 |
vlc_UrlClean( &p_sys->url ); |
|---|
| 465 |
|
|---|
| 466 |
free( p_sys ); |
|---|
| 467 |
} |
|---|
| 468 |
|
|---|
| 469 |
|
|---|
| 470 |
|
|---|
| 471 |
|
|---|
| 472 |
static int Connect( demux_t *p_demux ) |
|---|
| 473 |
{ |
|---|
| 474 |
demux_sys_t *p_sys = p_demux->p_sys; |
|---|
| 475 |
Authenticator authenticator; |
|---|
| 476 |
bool b_firstpass = true; |
|---|
| 477 |
char *psz_user = NULL; |
|---|
| 478 |
char *psz_pwd = NULL; |
|---|
| 479 |
char *psz_url = NULL; |
|---|
| 480 |
char *psz_options = NULL; |
|---|
| 481 |
char *p_sdp = NULL; |
|---|
| 482 |
int i_http_port = 0; |
|---|
| 483 |
int i_ret = VLC_SUCCESS; |
|---|
| 484 |
int i_lefttries; |
|---|
| 485 |
|
|---|
| 486 |
if( p_sys->url.i_port == 0 ) p_sys->url.i_port = 554; |
|---|
| 487 |
if( p_sys->url.psz_username || p_sys->url.psz_password ) |
|---|
| 488 |
{ |
|---|
| 489 |
int err; |
|---|
| 490 |
err = asprintf( &psz_url, "rtsp://%s:%d%s", p_sys->url.psz_host, |
|---|
| 491 |
p_sys->url.i_port, p_sys->url.psz_path ); |
|---|
| 492 |
if( err == -1 ) return VLC_ENOMEM; |
|---|
| 493 |
|
|---|
| 494 |
psz_user = strdup( p_sys->url.psz_username ); |
|---|
| 495 |
psz_pwd = strdup( p_sys->url.psz_password ); |
|---|
| 496 |
} |
|---|
| 497 |
else |
|---|
| 498 |
{ |
|---|
| 499 |
int err; |
|---|
| 500 |
err = asprintf( &psz_url, "rtsp://%s", p_sys->psz_path ); |
|---|
| 501 |
if( err == -1 ) return VLC_ENOMEM; |
|---|
| 502 |
|
|---|
| 503 |
psz_user = var_CreateGetString( p_demux, "rtsp-user" ); |
|---|
| 504 |
psz_pwd = var_CreateGetString( p_demux, "rtsp-pwd" ); |
|---|
| 505 |
} |
|---|
| 506 |
|
|---|
| 507 |
i_lefttries = 3; |
|---|
| 508 |
createnew: |
|---|
| 509 |
i_lefttries--; |
|---|
| 510 |
if( !vlc_object_alive (p_demux) || p_demux->b_error ) |
|---|
| 511 |
{ |
|---|
| 512 |
free( psz_user ); |
|---|
| 513 |
free( psz_pwd ); |
|---|
| 514 |
free( psz_url ); |
|---|
| 515 |
return VLC_EGENERIC; |
|---|
| 516 |
} |
|---|
| 517 |
|
|---|
| 518 |
if( var_CreateGetBool( p_demux, "rtsp-http" ) ) |
|---|
| 519 |
i_http_port = var_CreateGetInteger( p_demux, "rtsp-http-port" ); |
|---|
| 520 |
|
|---|
| 521 |
if( ( p_sys->rtsp = RTSPClient::createNew( *p_sys->env, |
|---|
| 522 |
var_CreateGetInteger( p_demux, "verbose" ) > 1, |
|---|
| 523 |
"VLC media player", i_http_port ) ) == NULL ) |
|---|
| 524 |
{ |
|---|
| 525 |
msg_Err( p_demux, "RTSPClient::createNew failed (%s)", |
|---|
| 526 |
p_sys->env->getResultMsg() ); |
|---|
| 527 |
free( psz_user ); |
|---|
| 528 |
free( psz_pwd ); |
|---|
| 529 |
free( psz_url ); |
|---|
| 530 |
return VLC_EGENERIC; |
|---|
| 531 |
} |
|---|
| 532 |
|
|---|
| 533 |
|
|---|
| 534 |
|
|---|
| 535 |
|
|---|
| 536 |
|
|---|
| 537 |
|
|---|
| 538 |
|
|---|
| 539 |
|
|---|
| 540 |
if( var_CreateGetBool( p_demux, "rtsp-kasenna" )) |
|---|
| 541 |
{ |
|---|
| 542 |
p_sys->rtsp->setUserAgentString( "VLC_MEDIA_PLAYER_KA" ); |
|---|
| 543 |
} |
|---|
| 544 |
|
|---|
| 545 |
describe: |
|---|
| 546 |
authenticator.setUsernameAndPassword( (const char*)psz_user, |
|---|
| 547 |
(const char*)psz_pwd ); |
|---|
| 548 |
|
|---|
| 549 |
psz_options = p_sys->rtsp->sendOptionsCmd( psz_url, psz_user, psz_pwd, |
|---|
| 550 |
&authenticator ); |
|---|
| 551 |
delete [] psz_options; |
|---|
| 552 |
|
|---|
| 553 |
p_sdp = p_sys->rtsp->describeURL( psz_url, &authenticator, |
|---|
| 554 |
var_GetBool( p_demux, "rtsp-kasenna" ) ); |
|---|
| 555 |
if( p_sdp == NULL ) |
|---|
| 556 |
{ |
|---|
| 557 |
|
|---|
| 558 |
int i_code = 0; |
|---|
| 559 |
const char *psz_error = p_sys->env->getResultMsg(); |
|---|
| 560 |
|
|---|
| 561 |
if( var_GetBool( p_demux, "rtsp-http" ) ) |
|---|
| 562 |
sscanf( psz_error, "%*s %*s HTTP GET %*s HTTP/%*u.%*u %3u %*s", |
|---|
| 563 |
&i_code ); |
|---|
| 564 |
else |
|---|
| 565 |
{ |
|---|
| 566 |
const char *psz_tmp = strstr( psz_error, "RTSP" ); |
|---|
| 567 |
if( psz_tmp ) |
|---|
| 568 |
sscanf( psz_tmp, "RTSP/%*s%3u", &i_code ); |
|---|
| 569 |
else |
|---|
| 570 |
i_code = 0; |
|---|
| 571 |
} |
|---|
| 572 |
msg_Dbg( p_demux, "DESCRIBE failed with %d: %s", i_code, psz_error ); |
|---|
| 573 |
|
|---|
| 574 |
if( b_firstpass ) |
|---|
| 575 |
{ |
|---|
| 576 |
|
|---|
| 577 |
|
|---|
| 578 |
i_code = 0; |
|---|
| 579 |
b_firstpass = false; |
|---|
| 580 |
} |
|---|
| 581 |
|
|---|
| 582 |
if( i_code == 401 ) |
|---|
| 583 |
{ |
|---|
| 584 |
int i_result; |
|---|
| 585 |
msg_Dbg( p_demux, "authentication failed" ); |
|---|
| 586 |
|
|---|
| 587 |
free( psz_user ); |
|---|
| 588 |
free( psz_pwd ); |
|---|
| 589 |
psz_user = psz_pwd = NULL; |
|---|
| 590 |
|
|---|
| 591 |
i_result = intf_UserLoginPassword( p_demux, _("RTSP authentication"), |
|---|
| 592 |
_("Please enter a valid login name and a password."), |
|---|
| 593 |
&psz_user, &psz_pwd ); |
|---|
| 594 |
if( i_result == DIALOG_OK_YES ) |
|---|
| 595 |
{ |
|---|
| 596 |
msg_Dbg( p_demux, "retrying with user=%s, pwd=%s", |
|---|
| 597 |
psz_user, psz_pwd ); |
|---|
| 598 |
goto describe; |
|---|
| 599 |
} |
|---|
| 600 |
} |
|---|
| 601 |
else if( (i_code != 0) && !var_GetBool( p_demux, "rtsp-http" ) ) |
|---|
| 602 |
{ |
|---|
| 603 |
|
|---|
| 604 |
vlc_value_t val; |
|---|
| 605 |
val.b_bool = true; |
|---|
| 606 |
msg_Dbg( p_demux, "we will now try HTTP tunneling mode" ); |
|---|
| 607 |
var_Set( p_demux, "rtsp-http", val ); |
|---|
| 608 |
if( p_sys->rtsp ) RTSPClient::close( p_sys->rtsp ); |
|---|
| 609 |
p_sys->rtsp = NULL; |
|---|
| 610 |
goto createnew; |
|---|
| 611 |
} |
|---|
| 612 |
else |
|---|
| 613 |
{ |
|---|
| 614 |
msg_Dbg( p_demux, "connection timeout, retrying" ); |
|---|
| 615 |
if( p_sys->rtsp ) RTSPClient::close( p_sys->rtsp ); |
|---|
| 616 |
p_sys->rtsp = NULL; |
|---|
| 617 |
if( i_lefttries > 0 ) |
|---|
| 618 |
goto createnew; |
|---|
| 619 |
} |
|---|
| 620 |
i_ret = VLC_EGENERIC; |
|---|
| 621 |
} |
|---|
| 622 |
|
|---|
| 623 |
|
|---|
| 624 |
free( psz_url ); |
|---|
| 625 |
free( psz_user ); |
|---|
| 626 |
free( psz_pwd ); |
|---|
| 627 |
|
|---|
| 628 |
free( p_sys->p_sdp ); |
|---|
| 629 |
p_sys->p_sdp = NULL; |
|---|
| 630 |
if( p_sdp ) p_sys->p_sdp = strdup( (char*)p_sdp ); |
|---|
| 631 |
delete[] p_sdp; |
|---|
| 632 |
|
|---|
| 633 |
return i_ret; |
|---|
| 634 |
} |
|---|
| 635 |
|
|---|
| 636 |
|
|---|
| 637 |
|
|---|
| 638 |
|
|---|
| 639 |
static int SessionsSetup( demux_t *p_demux ) |
|---|
| 640 |
{ |
|---|
| 641 |
demux_sys_t *p_sys = p_demux->p_sys; |
|---|
| 642 |
MediaSubsessionIterator *iter = NULL; |
|---|
| 643 |
MediaSubsession *sub = NULL; |
|---|
| 644 |
|
|---|
| 645 |
bool b_rtsp_tcp = false; |
|---|
| 646 |
int i_client_port; |
|---|
| 647 |
int i_return = VLC_SUCCESS; |
|---|
| 648 |
unsigned int i_buffer = 0; |
|---|
| 649 |
unsigned const thresh = 200000; |
|---|
| 650 |
|
|---|
| 651 |
b_rtsp_tcp = var_CreateGetBool( p_demux, "rtsp-tcp" ) || |
|---|
| 652 |
var_GetBool( p_demux, "rtsp-http" ); |
|---|
| 653 |
i_client_port = var_CreateGetInteger( p_demux, "rtp-client-port" ); |
|---|
| 654 |
|
|---|
| 655 |
|
|---|
| 656 |
if( !( p_sys->ms = MediaSession::createNew( *p_sys->env, p_sys->p_sdp ) ) ) |
|---|
| 657 |
{ |
|---|
| 658 |
msg_Err( p_demux, "Could not create the RTSP Session: %s", |
|---|
| 659 |
p_sys->env->getResultMsg() ); |
|---|
| 660 |
return VLC_EGENERIC; |
|---|
| 661 |
} |
|---|
| 662 |
|
|---|
| 663 |
|
|---|
| 664 |
iter = new MediaSubsessionIterator( *p_sys->ms ); |
|---|
| 665 |
while( ( sub = iter->next() ) != NULL ) |
|---|
| 666 |
{ |
|---|
| 667 |
Boolean bInit; |
|---|
| 668 |
live_track_t *tk; |
|---|
| 669 |
|
|---|
| 670 |
if( !vlc_object_alive (p_demux) || p_demux->b_error ) |
|---|
| 671 |
{ |
|---|
| 672 |
delete iter; |
|---|
| 673 |
return VLC_EGENERIC; |
|---|
| 674 |
} |
|---|
| 675 |
|
|---|
| 676 |
|
|---|
| 677 |
if( !strcmp( sub->mediumName(), "audio" ) ) |
|---|
| 678 |
i_buffer = 100000; |
|---|
| 679 |
else if( !strcmp( sub->mediumName(), "video" ) ) |
|---|
| 680 |
i_buffer = 2000000; |
|---|
| 681 |
else continue; |
|---|
| 682 |
|
|---|
| 683 |
if( i_client_port != -1 ) |
|---|
| 684 |
{ |
|---|
| 685 |
sub->setClientPortNum( i_client_port ); |
|---|
| 686 |
i_client_port += 2; |
|---|
| 687 |
} |
|---|
| 688 |
|
|---|
| 689 |
if( strcasestr( sub->codecName(), "REAL" ) ) |
|---|
| 690 |
{ |
|---|
| 691 |
msg_Info( p_demux, "real codec detected, using real-RTSP instead" ); |
|---|
| 692 |
p_sys->b_real = true; |
|---|
| 693 |
continue; |
|---|
| 694 |
} |
|---|
| 695 |
|
|---|
| 696 |
if( !strcmp( sub->codecName(), "X-ASF-PF" ) ) |
|---|
| 697 |
bInit = sub->initiate( 4 ); |
|---|
| 698 |
else |
|---|
| 699 |
bInit = sub->initiate(); |
|---|
| 700 |
|
|---|
| 701 |
if( !bInit ) |
|---|
| 702 |
{ |
|---|
| 703 |
msg_Warn( p_demux, "RTP subsession '%s/%s' failed (%s)", |
|---|
| 704 |
sub->mediumName(), sub->codecName(), |
|---|
| 705 |
p_sys->env->getResultMsg() ); |
|---|
| 706 |
} |
|---|
| 707 |
else |
|---|
| 708 |
{ |
|---|
| 709 |
if( sub->rtpSource() != NULL ) |
|---|
| 710 |
{ |
|---|
| 711 |
int fd = sub->rtpSource()->RTPgs()->socketNum(); |
|---|
| 712 |
|
|---|
| 713 |
|
|---|
| 714 |
if( i_buffer > 0 ) |
|---|
| 715 |
increaseReceiveBufferTo( *p_sys->env, fd, i_buffer ); |
|---|
| 716 |
|
|---|
| 717 |
|
|---|
| 718 |
sub->rtpSource()->setPacketReorderingThresholdTime(thresh); |
|---|
| 719 |
} |
|---|
| 720 |
msg_Dbg( p_demux, "RTP subsession '%s/%s'", sub->mediumName(), |
|---|
| 721 |
sub->codecName() ); |
|---|
| 722 |
|
|---|
| 723 |
|
|---|
| 724 |
if( p_sys->rtsp ) |
|---|
| 725 |
{ |
|---|
| 726 |
if( !p_sys->rtsp->setupMediaSubsession( *sub, False, |
|---|
| 727 |
b_rtsp_tcp ? True : False, |
|---|
| 728 |
( p_sys->b_force_mcast && !b_rtsp_tcp ) ? True : False ) ) |
|---|
| 729 |
{ |
|---|
| 730 |
|
|---|
| 731 |
if( !strstr(p_sys->env->getResultMsg(), "461 Unsupported Transport") |
|---|
| 732 |
|| !p_sys->rtsp->setupMediaSubsession( *sub, False, |
|---|
| 733 |
b_rtsp_tcp ? False : True, |
|---|
| 734 |
False ) ) |
|---|
| 735 |
{ |
|---|
| 736 |
msg_Err( p_demux, "SETUP of'%s/%s' failed %s", sub->mediumName(), |
|---|
| 737 |
sub->codecName(), p_sys->env->getResultMsg() ); |
|---|
| 738 |
continue; |
|---|
| 739 |
} |
|---|
| 740 |
} |
|---|
| 741 |
} |
|---|
| 742 |
|
|---|
| 743 |
|
|---|
| 744 |
if( sub->readSource() == NULL ) continue; |
|---|
| 745 |
if( !p_sys->b_multicast ) |
|---|
| 746 |
{ |
|---|
| 747 |
|
|---|
| 748 |
p_sys->b_multicast = IsMulticastAddress( sub->connectionEndpointAddress() ); |
|---|
| 749 |
} |
|---|
| 750 |
|
|---|
| 751 |
tk = (live_track_t*)malloc( sizeof( live_track_t ) ); |
|---|
| 752 |
if( !tk ) |
|---|
| 753 |
{ |
|---|
| 754 |
delete iter; |
|---|
| 755 |
return VLC_ENOMEM; |
|---|
| 756 |
} |
|---|
| 757 |
tk->p_demux = p_demux; |
|---|
| 758 |
tk->sub = sub; |
|---|
| 759 |
tk->p_es = NULL; |
|---|
| 760 |
tk->b_quicktime = false; |
|---|
| 761 |
tk->b_asf = false; |
|---|
| 762 |
tk->b_muxed = false; |
|---|
| 763 |
tk->p_out_muxed = NULL; |
|---|
| 764 |
tk->waiting = 0; |
|---|
| 765 |
tk->b_rtcp_sync = false; |
|---|
| 766 |
tk->i_pts = 0; |
|---|
| 767 |
tk->i_npt = 0.; |
|---|
| 768 |
tk->i_buffer = 65536; |
|---|
| 769 |
tk->p_buffer = (uint8_t *)malloc( 65536 ); |
|---|
| 770 |
if( !tk->p_buffer ) |
|---|
| 771 |
{ |
|---|
| 772 |
delete iter; |
|---|
| 773 |
return VLC_ENOMEM; |
|---|
| 774 |
} |
|---|
| 775 |
|
|---|
| 776 |
|
|---|
| 777 |
if( !strcmp( sub->mediumName(), "audio" ) ) |
|---|
| 778 |
{ |
|---|
| 779 |
es_format_Init( &tk->fmt, AUDIO_ES, VLC_FOURCC('u','n','d','f') ); |
|---|
| 780 |
tk->fmt.audio.i_channels = sub->numChannels(); |
|---|
| 781 |
tk->fmt.audio.i_rate = sub->rtpTimestampFrequency(); |
|---|
| 782 |
|
|---|
| 783 |
if( !strcmp( sub->codecName(), "MPA" ) || |
|---|
| 784 |
!strcmp( sub->codecName(), "MPA-ROBUST" ) || |
|---|
| 785 |
!strcmp( sub->codecName(), "X-MP3-DRAFT-00" ) ) |
|---|
| 786 |
{ |
|---|
| 787 |
tk->fmt.i_codec = VLC_FOURCC( 'm', 'p', 'g', 'a' ); |
|---|
| 788 |
tk->fmt.audio.i_rate = 0; |
|---|
| 789 |
} |
|---|
| 790 |
else if( !strcmp( sub->codecName(), "AC3" ) ) |
|---|
| 791 |
{ |
|---|
| 792 |
tk->fmt.i_codec = VLC_FOURCC( 'a', '5', '2', ' ' ); |
|---|
| 793 |
tk->fmt.audio.i_rate = 0; |
|---|
| 794 |
} |
|---|
| 795 |
else if( !strcmp( sub->codecName(), "L16" ) ) |
|---|
| 796 |
{ |
|---|
| 797 |
tk->fmt.i_codec = VLC_FOURCC( 't', 'w', 'o', 's' ); |
|---|
| 798 |
tk->fmt.audio.i_bitspersample = 16; |
|---|
| 799 |
} |
|---|
| 800 |
else if( !strcmp( sub->codecName(), "L8" ) ) |
|---|
| 801 |
{ |
|---|
| 802 |
tk->fmt.i_codec = VLC_FOURCC( 'a', 'r', 'a', 'w' ); |
|---|
| 803 |
tk->fmt.audio.i_bitspersample = 8; |
|---|
| 804 |
} |
|---|
| 805 |
else if( !strcmp( sub->codecName(), "PCMU" ) ) |
|---|
| 806 |
{ |
|---|
| 807 |
tk->fmt.i_codec = VLC_FOURCC( 'u', 'l', 'a', 'w' ); |
|---|
| 808 |
} |
|---|
| 809 |
else if( !strcmp( sub->codecName(), "PCMA" ) ) |
|---|
| 810 |
{ |
|---|
| 811 |
tk->fmt.i_codec = VLC_FOURCC( 'a', 'l', 'a', 'w' ); |
|---|
| 812 |
} |
|---|
| 813 |
else if( !strncmp( sub->codecName(), "G726", 4 ) ) |
|---|
| 814 |
{ |
|---|
| 815 |
tk->fmt.i_codec = VLC_FOURCC( 'g', '7', '2', '6' ); |
|---|
| 816 |
tk->fmt.audio.i_rate = 8000; |
|---|
| 817 |
tk->fmt.audio.i_channels = 1; |
|---|
| 818 |
if( !strcmp( sub->codecName()+5, "40" ) ) |
|---|
| 819 |
tk->fmt.i_bitrate = 40000; |
|---|
| 820 |
else if( !strcmp( sub->codecName()+5, "32" ) ) |
|---|
| 821 |
tk->fmt.i_bitrate = 32000; |
|---|
| 822 |
else if( !strcmp( sub->codecName()+5, "24" ) ) |
|---|
| 823 |
tk->fmt.i_bitrate = 24000; |
|---|
| 824 |
else if( !strcmp( sub->codecName()+5, "16" ) ) |
|---|
| 825 |
tk->fmt.i_bitrate = 16000; |
|---|
| 826 |
} |
|---|
| 827 |
else if( !strcmp( sub->codecName(), "AMR" ) ) |
|---|
| 828 |
{ |
|---|
| 829 |
tk->fmt.i_codec = VLC_FOURCC( 's', 'a', 'm', 'r' ); |
|---|
| 830 |
} |
|---|
| 831 |
else if( !strcmp( sub->codecName(), "AMR-WB" ) ) |
|---|
| 832 |
{ |
|---|
| 833 |
tk->fmt.i_codec = VLC_FOURCC( 's', 'a', 'w', 'b' ); |
|---|
| 834 |
} |
|---|
| 835 |
else if( !strcmp( sub->codecName(), "MP4A-LATM" ) ) |
|---|
| 836 |
{ |
|---|
| 837 |
unsigned int i_extra; |
|---|
| 838 |
uint8_t *p_extra; |
|---|
| 839 |
|
|---|
| 840 |
tk->fmt.i_codec = VLC_FOURCC( 'm', 'p', '4', 'a' ); |
|---|
| 841 |
|
|---|
| 842 |
if( ( p_extra = parseStreamMuxConfigStr( sub->fmtp_config(), |
|---|
| 843 |
i_extra ) ) ) |
|---|
| 844 |
{ |
|---|
| 845 |
tk->fmt.i_extra = i_ex |
|---|