Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
7934b15d
Commit
7934b15d
authored
Aug 25, 2010
by
Martin Storsjö
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Handle IPv6 in the RTSP code
Originally committed as revision 24925 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
3fbd12d1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
11 deletions
+10
-11
rtsp.c
libavformat/rtsp.c
+9
-10
rtsp.h
libavformat/rtsp.h
+1
-1
No files found.
libavformat/rtsp.c
View file @
7934b15d
...
...
@@ -696,13 +696,10 @@ static void rtsp_parse_transport(RTSPMessageHeader *reply, const char *p)
th
->
ttl
=
strtol
(
p
,
(
char
**
)
&
p
,
10
);
}
}
else
if
(
!
strcmp
(
parameter
,
"destination"
))
{
struct
in_addr
ipaddr
;
if
(
*
p
==
'='
)
{
p
++
;
get_word_sep
(
buf
,
sizeof
(
buf
),
";,"
,
&
p
);
if
(
ff_inet_aton
(
buf
,
&
ipaddr
))
th
->
destination
=
ntohl
(
ipaddr
.
s_addr
);
get_sockaddr
(
buf
,
&
th
->
destination
);
}
}
while
(
*
p
!=
';'
&&
*
p
!=
'\0'
&&
*
p
!=
','
)
...
...
@@ -1174,20 +1171,22 @@ static int make_setup_request(AVFormatContext *s, const char *host, int port,
break
;
}
case
RTSP_LOWER_TRANSPORT_UDP_MULTICAST
:
{
char
url
[
1024
];
struct
in_addr
in
;
char
url
[
1024
]
,
namebuf
[
50
]
;
struct
sockaddr_storage
addr
;
int
port
,
ttl
;
if
(
reply
->
transports
[
0
].
destination
)
{
in
.
s_addr
=
htonl
(
reply
->
transports
[
0
].
destination
)
;
if
(
reply
->
transports
[
0
].
destination
.
ss_family
)
{
addr
=
reply
->
transports
[
0
].
destination
;
port
=
reply
->
transports
[
0
].
port_min
;
ttl
=
reply
->
transports
[
0
].
ttl
;
}
else
{
in
=
((
struct
sockaddr_in
*
)
&
rtsp_st
->
sdp_ip
)
->
sin_addr
;
addr
=
rtsp_st
->
sdp_ip
;
port
=
rtsp_st
->
sdp_port
;
ttl
=
rtsp_st
->
sdp_ttl
;
}
ff_url_join
(
url
,
sizeof
(
url
),
"rtp"
,
NULL
,
inet_ntoa
(
in
),
getnameinfo
((
struct
sockaddr
*
)
&
addr
,
sizeof
(
addr
),
namebuf
,
sizeof
(
namebuf
),
NULL
,
0
,
NI_NUMERICHOST
);
ff_url_join
(
url
,
sizeof
(
url
),
"rtp"
,
NULL
,
namebuf
,
port
,
"?ttl=%d"
,
ttl
);
if
(
url_open
(
&
rtsp_st
->
rtp_handle
,
url
,
URL_RDWR
)
<
0
)
{
err
=
AVERROR_INVALIDDATA
;
...
...
libavformat/rtsp.h
View file @
7934b15d
...
...
@@ -96,7 +96,7 @@ typedef struct RTSPTransportField {
* packets will be allowed to make before being discarded. */
int
ttl
;
uint32_t
destination
;
/**< destination IP address */
struct
sockaddr_storage
destination
;
/**< destination IP address */
/** data/packet transport protocol; e.g. RTP or RDT */
enum
RTSPTransport
transport
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment