mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-08 13:22:53 +02:00
rtsp: Allow specifying the UDP port range via AVOptions
Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
bc495bad3d
commit
dbb06b8c0d
@ -81,6 +81,8 @@ const AVOption ff_rtsp_options[] = {
|
|||||||
{ "http", "HTTP tunneling", 0, AV_OPT_TYPE_CONST, {(1 << RTSP_LOWER_TRANSPORT_HTTP)}, 0, 0, DEC, "rtsp_transport" },
|
{ "http", "HTTP tunneling", 0, AV_OPT_TYPE_CONST, {(1 << RTSP_LOWER_TRANSPORT_HTTP)}, 0, 0, DEC, "rtsp_transport" },
|
||||||
RTSP_FLAG_OPTS("rtsp_flags", "RTSP flags"),
|
RTSP_FLAG_OPTS("rtsp_flags", "RTSP flags"),
|
||||||
RTSP_MEDIATYPE_OPTS("allowed_media_types", "Media types to accept from the server"),
|
RTSP_MEDIATYPE_OPTS("allowed_media_types", "Media types to accept from the server"),
|
||||||
|
{ "min_port", "Minimum local UDP port", OFFSET(rtp_port_min), AV_OPT_TYPE_INT, {RTSP_RTP_PORT_MIN}, 0, 65535, DEC|ENC },
|
||||||
|
{ "max_port", "Maximum local UDP port", OFFSET(rtp_port_max), AV_OPT_TYPE_INT, {RTSP_RTP_PORT_MAX}, 0, 65535, DEC|ENC },
|
||||||
{ NULL },
|
{ NULL },
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -1121,7 +1123,7 @@ int ff_rtsp_make_setup_request(AVFormatContext *s, const char *host, int port,
|
|||||||
/* XXX: we assume the same server is used for the control of each
|
/* XXX: we assume the same server is used for the control of each
|
||||||
* RTSP stream */
|
* RTSP stream */
|
||||||
|
|
||||||
for (j = RTSP_RTP_PORT_MIN, i = 0; i < rt->nb_rtsp_streams; ++i) {
|
for (j = rt->rtp_port_min, i = 0; i < rt->nb_rtsp_streams; ++i) {
|
||||||
char transport[2048];
|
char transport[2048];
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -1158,7 +1160,7 @@ int ff_rtsp_make_setup_request(AVFormatContext *s, const char *host, int port,
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* first try in specified port range */
|
/* first try in specified port range */
|
||||||
while (j <= RTSP_RTP_PORT_MAX) {
|
while (j <= rt->rtp_port_max) {
|
||||||
ff_url_join(buf, sizeof(buf), "rtp", NULL, host, -1,
|
ff_url_join(buf, sizeof(buf), "rtp", NULL, host, -1,
|
||||||
"?localport=%d", j);
|
"?localport=%d", j);
|
||||||
/* we will use two ports per rtp stream (rtp and rtcp) */
|
/* we will use two ports per rtp stream (rtp and rtcp) */
|
||||||
@ -1356,6 +1358,13 @@ int ff_rtsp_connect(AVFormatContext *s)
|
|||||||
struct sockaddr_storage peer;
|
struct sockaddr_storage peer;
|
||||||
socklen_t peer_len = sizeof(peer);
|
socklen_t peer_len = sizeof(peer);
|
||||||
|
|
||||||
|
if (rt->rtp_port_max < rt->rtp_port_min) {
|
||||||
|
av_log(s, AV_LOG_ERROR, "Invalid UDP port range, max port %d less "
|
||||||
|
"than min port %d\n", rt->rtp_port_max,
|
||||||
|
rt->rtp_port_min);
|
||||||
|
return AVERROR(EINVAL);
|
||||||
|
}
|
||||||
|
|
||||||
if (!ff_network_init())
|
if (!ff_network_init())
|
||||||
return AVERROR(EIO);
|
return AVERROR(EIO);
|
||||||
|
|
||||||
|
@ -359,6 +359,11 @@ typedef struct RTSPState {
|
|||||||
* Mask of all requested media types
|
* Mask of all requested media types
|
||||||
*/
|
*/
|
||||||
int media_type_mask;
|
int media_type_mask;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Minimum and maximum local UDP ports.
|
||||||
|
*/
|
||||||
|
int rtp_port_min, rtp_port_max;
|
||||||
} RTSPState;
|
} RTSPState;
|
||||||
|
|
||||||
#define RTSP_FLAG_FILTER_SRC 0x1 /**< Filter incoming UDP packets -
|
#define RTSP_FLAG_FILTER_SRC 0x1 /**< Filter incoming UDP packets -
|
||||||
|
Loading…
Reference in New Issue
Block a user