Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
0b879fdf
Commit
0b879fdf
authored
Mar 06, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make --sout-udp-rtcp an integer carrying a port number rather than a boolean
parent
c1432d5d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
18 deletions
+19
-18
modules/access_output/udp.c
modules/access_output/udp.c
+19
-18
No files found.
modules/access_output/udp.c
View file @
0b879fdf
...
@@ -102,9 +102,8 @@ static void Close( vlc_object_t * );
...
@@ -102,9 +102,8 @@ static void Close( vlc_object_t * );
"directly, without trying to fill the MTU (ie, " \
"directly, without trying to fill the MTU (ie, " \
"without trying to make the biggest possible packets " \
"without trying to make the biggest possible packets " \
"in order to improve streaming)." )
"in order to improve streaming)." )
#define RTCP_TEXT N_("Force RTCP Sender Reports")
#define RTCP_TEXT N_("RTCP destination port number")
#define RTCP_LONGTEXT N_("Sends RTCP Sender Report packets even if " \
#define RTCP_LONGTEXT N_("Sends RTCP packets to this port (0 = auto)")
"RTP encapsulation is not done")
#define AUTO_MCAST_TEXT N_("Automatic multicast streaming")
#define AUTO_MCAST_TEXT N_("Automatic multicast streaming")
#define AUTO_MCAST_LONGTEXT N_("Allocates an outbound multicast address " \
#define AUTO_MCAST_LONGTEXT N_("Allocates an outbound multicast address " \
"automatically.")
"automatically.")
...
@@ -124,8 +123,8 @@ vlc_module_begin();
...
@@ -124,8 +123,8 @@ vlc_module_begin();
add_suppressed_integer
(
SOUT_CFG_PREFIX
"late"
);
add_suppressed_integer
(
SOUT_CFG_PREFIX
"late"
);
add_bool
(
SOUT_CFG_PREFIX
"raw"
,
VLC_FALSE
,
NULL
,
RAW_TEXT
,
RAW_LONGTEXT
,
add_bool
(
SOUT_CFG_PREFIX
"raw"
,
VLC_FALSE
,
NULL
,
RAW_TEXT
,
RAW_LONGTEXT
,
VLC_TRUE
);
VLC_TRUE
);
add_
bool
(
SOUT_CFG_PREFIX
"rtcp"
,
VLC_FALSE
,
NULL
,
RTCP_TEXT
,
RTCP_LONGTEXT
,
add_
integer
(
SOUT_CFG_PREFIX
"rtcp"
,
0
,
NULL
,
RTCP_TEXT
,
RTCP_LONGTEXT
,
VLC_TRUE
);
VLC_TRUE
);
add_bool
(
SOUT_CFG_PREFIX
"auto-mcast"
,
VLC_FALSE
,
NULL
,
AUTO_MCAST_TEXT
,
add_bool
(
SOUT_CFG_PREFIX
"auto-mcast"
,
VLC_FALSE
,
NULL
,
AUTO_MCAST_TEXT
,
AUTO_MCAST_LONGTEXT
,
VLC_TRUE
);
AUTO_MCAST_LONGTEXT
,
VLC_TRUE
);
add_bool
(
SOUT_CFG_PREFIX
"udplite"
,
VLC_FALSE
,
NULL
,
UDPLITE_TEXT
,
UDPLITE_LONGTEXT
,
VLC_TRUE
);
add_bool
(
SOUT_CFG_PREFIX
"udplite"
,
VLC_FALSE
,
NULL
,
UDPLITE_TEXT
,
UDPLITE_LONGTEXT
,
VLC_TRUE
);
...
@@ -210,7 +209,7 @@ struct sout_access_out_sys_t
...
@@ -210,7 +209,7 @@ struct sout_access_out_sys_t
#define DEFAULT_PORT 1234
#define DEFAULT_PORT 1234
#define RTP_HEADER_LENGTH 12
#define RTP_HEADER_LENGTH 12
static
int
OpenRTCP
(
sout_access_out_t
*
obj
,
int
proto
);
static
int
OpenRTCP
(
sout_access_out_t
*
obj
,
int
proto
,
uint16_t
dport
);
static
void
SendRTCP
(
sout_access_thread_t
*
obj
,
uint32_t
timestamp
);
static
void
SendRTCP
(
sout_access_thread_t
*
obj
,
uint32_t
timestamp
);
static
void
CloseRTCP
(
sout_access_thread_t
*
obj
);
static
void
CloseRTCP
(
sout_access_thread_t
*
obj
);
...
@@ -223,13 +222,12 @@ static int Open( vlc_object_t *p_this )
...
@@ -223,13 +222,12 @@ static int Open( vlc_object_t *p_this )
sout_access_out_sys_t
*
p_sys
;
sout_access_out_sys_t
*
p_sys
;
char
*
psz_dst_addr
=
NULL
;
char
*
psz_dst_addr
=
NULL
;
int
i_dst_port
,
proto
=
IPPROTO_UDP
;
int
i_dst_port
,
i_rtcp_port
=
0
,
proto
=
IPPROTO_UDP
;
const
char
*
protoname
=
"UDP"
;
const
char
*
protoname
=
"UDP"
;
int
i_handle
;
int
i_handle
;
vlc_value_t
val
;
vlc_value_t
val
;
vlc_bool_t
b_rtcp
=
VLC_FALSE
;
config_ChainParse
(
p_access
,
SOUT_CFG_PREFIX
,
config_ChainParse
(
p_access
,
SOUT_CFG_PREFIX
,
ppsz_sout_options
,
p_access
->
p_cfg
);
ppsz_sout_options
,
p_access
->
p_cfg
);
...
@@ -254,11 +252,7 @@ static int Open( vlc_object_t *p_this )
...
@@ -254,11 +252,7 @@ static int Open( vlc_object_t *p_this )
if
(
p_access
->
psz_access
!=
NULL
)
if
(
p_access
->
psz_access
!=
NULL
)
{
{
if
(
strcmp
(
p_access
->
psz_access
,
"rtp"
)
==
0
)
if
(
strcmp
(
p_access
->
psz_access
,
"rtp"
)
==
0
)
p_sys
->
b_rtpts
=
b_rtcp
=
VLC_TRUE
;
p_sys
->
b_rtpts
=
VLC_TRUE
;
else
/* This option is really only meant for the RTP streaming output
* plugin. Doing RTCP for raw UDP will yield weird results. */
b_rtcp
=
var_GetBool
(
p_access
,
SOUT_CFG_PREFIX
"rtcp"
);
}
}
if
(
var_GetBool
(
p_access
,
SOUT_CFG_PREFIX
"lite"
))
if
(
var_GetBool
(
p_access
,
SOUT_CFG_PREFIX
"lite"
))
...
@@ -289,6 +283,14 @@ static int Open( vlc_object_t *p_this )
...
@@ -289,6 +283,14 @@ static int Open( vlc_object_t *p_this )
}
}
}
}
/* This option is really only meant for the RTP streaming output
* plugin. Doing RTCP for raw UDP will yield weird results. */
i_rtcp_port
=
var_GetInteger
(
p_access
,
SOUT_CFG_PREFIX
"rtcp"
);
/* If RTCP port is not specified, use the default, if we do RTP/MP2 encap,
* or do not use RTCP at all otherwise. */
if
((
i_rtcp_port
==
0
)
&&
(
p_sys
->
b_rtpts
))
i_rtcp_port
=
i_dst_port
+
1
;
p_sys
->
p_thread
=
p_sys
->
p_thread
=
vlc_object_create
(
p_access
,
sizeof
(
sout_access_thread_t
)
);
vlc_object_create
(
p_access
,
sizeof
(
sout_access_thread_t
)
);
if
(
!
p_sys
->
p_thread
)
if
(
!
p_sys
->
p_thread
)
...
@@ -377,7 +379,7 @@ static int Open( vlc_object_t *p_this )
...
@@ -377,7 +379,7 @@ static int Open( vlc_object_t *p_this )
p_sys
->
i_sequence_number
=
rand
()
&
0xffff
;
p_sys
->
i_sequence_number
=
rand
()
&
0xffff
;
p_sys
->
i_ssrc
=
rand
()
&
0xffffffff
;
p_sys
->
i_ssrc
=
rand
()
&
0xffffffff
;
if
(
b_rtcp
&&
OpenRTCP
(
p_access
,
proto
))
if
(
i_rtcp_port
&&
OpenRTCP
(
p_access
,
proto
,
i_rtcp_port
))
{
{
msg_Err
(
p_access
,
"cannot initialize RTCP sender"
);
msg_Err
(
p_access
,
"cannot initialize RTCP sender"
);
net_Close
(
i_handle
);
net_Close
(
i_handle
);
...
@@ -764,22 +766,21 @@ static const char *MakeRandMulticast (int family, char *buf, size_t buflen)
...
@@ -764,22 +766,21 @@ static const char *MakeRandMulticast (int family, char *buf, size_t buflen)
* - FIXME: we do not implement separate rate limiting for SDES,
* - FIXME: we do not implement separate rate limiting for SDES,
* - we do not implement any profile-specific extensions for the time being.
* - we do not implement any profile-specific extensions for the time being.
*/
*/
static
int
OpenRTCP
(
sout_access_out_t
*
obj
,
int
proto
)
static
int
OpenRTCP
(
sout_access_out_t
*
obj
,
int
proto
,
uint16_t
dport
)
{
{
sout_access_out_sys_t
*
p_sys
=
obj
->
p_sys
;
sout_access_out_sys_t
*
p_sys
=
obj
->
p_sys
;
uint8_t
*
ptr
;
uint8_t
*
ptr
;
int
fd
;
int
fd
;
char
src
[
NI_MAXNUMERICHOST
],
dst
[
NI_MAXNUMERICHOST
];
char
src
[
NI_MAXNUMERICHOST
],
dst
[
NI_MAXNUMERICHOST
];
int
sport
,
dport
;
int
sport
;
fd
=
obj
->
p_sys
->
p_thread
->
i_handle
;
fd
=
obj
->
p_sys
->
p_thread
->
i_handle
;
if
(
net_GetSockAddress
(
fd
,
src
,
&
sport
)
if
(
net_GetSockAddress
(
fd
,
src
,
&
sport
)
||
net_GetPeerAddress
(
fd
,
dst
,
&
dport
))
||
net_GetPeerAddress
(
fd
,
dst
,
NULL
))
return
VLC_EGENERIC
;
return
VLC_EGENERIC
;
sport
++
;
sport
++
;
dport
++
;
fd
=
net_OpenDgram
(
obj
,
src
,
sport
,
dst
,
dport
,
AF_UNSPEC
,
proto
);
fd
=
net_OpenDgram
(
obj
,
src
,
sport
,
dst
,
dport
,
AF_UNSPEC
,
proto
);
if
(
fd
==
-
1
)
if
(
fd
==
-
1
)
return
VLC_EGENERIC
;
return
VLC_EGENERIC
;
...
...
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