2005-05-29 12:54:00 +00:00
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "stream.h"
|
|
|
|
#include "network.h"
|
2006-08-04 17:01:29 +00:00
|
|
|
#include "libmpdemux/demuxer.h"
|
2005-05-29 12:54:00 +00:00
|
|
|
#include "help_mp.h"
|
|
|
|
|
|
|
|
extern int network_bandwidth;
|
|
|
|
|
|
|
|
static int _rtsp_streaming_seek(int fd, off_t pos, streaming_ctrl_t* streaming_ctrl) {
|
|
|
|
return -1; // For now, we don't handle RTSP stream seeking
|
|
|
|
}
|
|
|
|
|
|
|
|
static int rtsp_streaming_start(stream_t* stream) {
|
|
|
|
stream->streaming_ctrl->streaming_seek = _rtsp_streaming_seek;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int open_live_rtsp_sip(stream_t *stream,int mode, void* opts, int* file_format) {
|
|
|
|
URL_t *url;
|
|
|
|
|
|
|
|
stream->streaming_ctrl = streaming_ctrl_new();
|
|
|
|
if( stream->streaming_ctrl==NULL ) {
|
|
|
|
return STREAM_ERROR;
|
|
|
|
}
|
|
|
|
stream->streaming_ctrl->bandwidth = network_bandwidth;
|
|
|
|
url = url_new(stream->url);
|
|
|
|
stream->streaming_ctrl->url = check4proxies(url);
|
|
|
|
//url_free(url);
|
|
|
|
|
2005-09-23 22:35:04 +00:00
|
|
|
mp_msg(MSGT_OPEN, MSGL_INFO, "STREAM_LIVE555, URL: %s\n", stream->url);
|
2005-05-29 12:54:00 +00:00
|
|
|
|
|
|
|
if(rtsp_streaming_start(stream) < 0) {
|
|
|
|
mp_msg(MSGT_NETWORK,MSGL_ERR,"rtsp_streaming_start failed\n");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
*file_format = DEMUXER_TYPE_RTP;
|
|
|
|
stream->type = STREAMTYPE_STREAM;
|
|
|
|
return STREAM_OK;
|
|
|
|
|
|
|
|
fail:
|
|
|
|
streaming_ctrl_free( stream->streaming_ctrl );
|
|
|
|
stream->streaming_ctrl = NULL;
|
|
|
|
return STREAM_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int open_live_sdp(stream_t *stream,int mode, void* opts, int* file_format) {
|
2005-12-05 01:24:27 +00:00
|
|
|
int f;
|
2005-05-29 12:54:00 +00:00
|
|
|
char *filename = stream->url;
|
|
|
|
off_t len;
|
|
|
|
char* sdpDescription;
|
|
|
|
ssize_t numBytesRead;
|
|
|
|
|
|
|
|
if(strncmp("sdp://",filename,6) == 0) {
|
|
|
|
filename += 6;
|
|
|
|
#if defined(__CYGWIN__) || defined(__MINGW32__)
|
|
|
|
f = open(filename,O_RDONLY|O_BINARY);
|
|
|
|
#else
|
|
|
|
f = open(filename,O_RDONLY);
|
|
|
|
#endif
|
|
|
|
if(f < 0) {
|
|
|
|
mp_msg(MSGT_OPEN,MSGL_ERR,MSGTR_FileNotFound,filename);
|
|
|
|
return STREAM_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
len=lseek(f,0,SEEK_END);
|
|
|
|
lseek(f,0,SEEK_SET);
|
|
|
|
if(len == -1)
|
|
|
|
return STREAM_ERROR;
|
2006-06-04 22:41:27 +00:00
|
|
|
if(len > SIZE_MAX - 1)
|
|
|
|
return STREAM_ERROR;
|
2005-05-29 12:54:00 +00:00
|
|
|
|
2006-07-13 16:41:13 +00:00
|
|
|
sdpDescription = malloc(len+1);
|
2005-05-29 12:54:00 +00:00
|
|
|
if(sdpDescription == NULL) return STREAM_ERROR;
|
|
|
|
numBytesRead = read(f, sdpDescription, len);
|
|
|
|
if(numBytesRead != len) {
|
|
|
|
free(sdpDescription);
|
|
|
|
return STREAM_ERROR;
|
|
|
|
}
|
|
|
|
sdpDescription[len] = '\0'; // to be safe
|
|
|
|
stream->priv = sdpDescription;
|
|
|
|
|
|
|
|
stream->type = STREAMTYPE_SDP;
|
|
|
|
*file_format = DEMUXER_TYPE_RTP;
|
|
|
|
return STREAM_OK;
|
|
|
|
}
|
2007-08-28 22:38:45 +00:00
|
|
|
return STREAM_UNSUPPORTED;
|
2005-05-29 12:54:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-12-02 13:22:53 +00:00
|
|
|
const stream_info_t stream_info_rtsp_sip = {
|
2005-06-20 08:47:27 +00:00
|
|
|
"standard RTSP and SIP",
|
|
|
|
"RTSP and SIP",
|
2005-05-29 12:54:00 +00:00
|
|
|
"Ross Finlayson",
|
2005-09-23 22:35:04 +00:00
|
|
|
"Uses LIVE555 Streaming Media library.",
|
2005-05-29 12:54:00 +00:00
|
|
|
open_live_rtsp_sip,
|
|
|
|
{"rtsp", "sip", NULL },
|
|
|
|
NULL,
|
|
|
|
0 // Urls are an option string
|
|
|
|
};
|
|
|
|
|
2007-12-02 13:22:53 +00:00
|
|
|
const stream_info_t stream_info_sdp = {
|
2005-06-20 08:47:27 +00:00
|
|
|
"SDP stream descriptor",
|
|
|
|
"SDP",
|
2005-05-29 12:54:00 +00:00
|
|
|
"Ross Finlayson",
|
2005-09-23 22:35:04 +00:00
|
|
|
"Uses LIVE555 Streaming Media library.",
|
2005-05-29 12:54:00 +00:00
|
|
|
open_live_sdp,
|
|
|
|
{"sdp", NULL },
|
|
|
|
NULL,
|
|
|
|
0 // Urls are an option string
|
|
|
|
};
|