2010-01-30 22:26:47 +00:00
|
|
|
/*
|
|
|
|
* This file is part of MPlayer.
|
|
|
|
*
|
|
|
|
* MPlayer is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* MPlayer is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with MPlayer; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
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
|
|
|
|
|
|
|
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;
|
2009-11-18 09:13:09 +00:00
|
|
|
stream->flags = STREAM_NON_CACHEABLE;
|
2005-05-29 12:54:00 +00:00
|
|
|
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;
|
|
|
|
f = open(filename,O_RDONLY|O_BINARY);
|
|
|
|
if(f < 0) {
|
2009-07-06 22:15:02 +00:00
|
|
|
mp_tmsg(MSGT_OPEN,MSGL_ERR,"File not found: '%s'\n",filename);
|
2005-05-29 12:54:00 +00:00
|
|
|
return STREAM_ERROR;
|
|
|
|
}
|
|
|
|
|
2009-07-06 23:26:13 +00:00
|
|
|
len=lseek(f,0,SEEK_END);
|
2005-05-29 12:54:00 +00:00
|
|
|
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
|
|
|
|
};
|