Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
f3c79cb5
Commit
f3c79cb5
authored
Mar 02, 2008
by
Rémi Denis-Courmont
Browse files
Set the DCCP service code(s) from RTP stream output
Signed-off-by:
Rémi Denis-Courmont
<
rem@videolan.org
>
parent
2815e994
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/stream_out/rtp.c
View file @
f3c79cb5
...
...
@@ -398,6 +398,7 @@ static int Open( vlc_object_t *p_this )
msg_Warn
(
p_this
,
"unknown or unsupported transport protocol
\"
%s
\"
"
,
psz
);
free
(
psz
);
var_Create
(
p_this
,
"dccp-service"
,
VLC_VAR_STRING
);
if
(
(
p_sys
->
psz_destination
==
NULL
)
&&
!
b_rtsp
)
{
...
...
@@ -775,11 +776,9 @@ char *SDPGenerate( const sout_stream_t *p_stream, const char *rtsp_url )
{
if
(
id
->
listen_fd
!=
NULL
)
sdp_AddAttribute
(
&
psz_sdp
,
"setup"
,
"passive"
);
#if 0
if
(
p_sys
->
proto
==
IPPROTO_DCCP
)
sdp_AddAttribute
(
&
psz_sdp
,
"dccp-service-code"
,
"SC:RTP%c"
,
toupper
(
mime_major
[
0
]
)
);
#endif
}
}
...
...
@@ -898,8 +897,19 @@ static sout_stream_id_t *Add( sout_stream_t *p_stream, es_format_t *p_fmt )
if
(
p_sys
->
psz_destination
!=
NULL
)
switch
(
p_sys
->
proto
)
{
case
IPPROTO_TCP
:
case
IPPROTO_DCCP
:
{
const
char
*
code
;
switch
(
id
->
i_cat
)
{
case
VIDEO_ES
:
code
=
"RTPV"
;
break
;
case
AUDIO_ES
:
code
=
"RTPARTPV"
;
break
;
case
SPU_ES
:
code
=
"RTPTRPTV"
;
break
;
default:
code
=
"RTPORTPV"
;
break
;
}
var_SetString
(
p_stream
,
"dccp-service"
,
code
);
}
/* fall through */
case
IPPROTO_TCP
:
id
->
listen_fd
=
net_Listen
(
VLC_OBJECT
(
p_stream
),
p_sys
->
psz_destination
,
i_port
,
p_sys
->
proto
);
...
...
Write
Preview
Supports
Markdown
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