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
c76522a3
Commit
c76522a3
authored
Jan 28, 2008
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sout_AnnounceRegisterSDP(): removes unused SOUT_CFG_PREFIX argument
parent
acb0c8e1
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
7 deletions
+6
-7
include/vlc_sout.h
include/vlc_sout.h
+1
-1
modules/stream_out/rtp.c
modules/stream_out/rtp.c
+2
-1
modules/stream_out/standard.c
modules/stream_out/standard.c
+1
-2
src/stream_output/announce.c
src/stream_output/announce.c
+2
-3
No files found.
include/vlc_sout.h
View file @
c76522a3
...
...
@@ -225,7 +225,7 @@ static inline int sout_StreamIdSend( sout_stream_t *s, sout_stream_id_t *id, blo
/****************************************************************************
* Announce handler
****************************************************************************/
VLC_EXPORT
(
session_descriptor_t
*
,
sout_AnnounceRegisterSDP
,
(
sout_instance_t
*
,
const
char
*
,
const
char
*
,
const
char
*
,
announce_method_t
*
)
);
VLC_EXPORT
(
session_descriptor_t
*
,
sout_AnnounceRegisterSDP
,
(
sout_instance_t
*
,
const
char
*
,
const
char
*
,
announce_method_t
*
)
);
VLC_EXPORT
(
int
,
sout_AnnounceUnRegister
,
(
sout_instance_t
*
,
session_descriptor_t
*
)
);
VLC_EXPORT
(
announce_method_t
*
,
sout_SAPMethod
,
(
void
)
);
...
...
modules/stream_out/rtp.c
View file @
c76522a3
...
...
@@ -1251,7 +1251,7 @@ static int SapSetup( sout_stream_t *p_stream )
if
(
(
p_sys
->
i_es
>
0
||
p_sys
->
p_mux
)
&&
p_sys
->
psz_sdp
&&
*
p_sys
->
psz_sdp
)
{
announce_method_t
*
p_method
=
sout_SAPMethod
();
p_sys
->
p_session
=
sout_AnnounceRegisterSDP
(
p_sout
,
SOUT_CFG_PREFIX
,
p_sys
->
p_session
=
sout_AnnounceRegisterSDP
(
p_sout
,
p_sys
->
psz_sdp
,
p_sys
->
psz_destination
,
p_method
);
...
...
@@ -1314,6 +1314,7 @@ static int HttpCallback( httpd_file_sys_t *p_args,
httpd_file_t
*
f
,
uint8_t
*
p_request
,
uint8_t
**
pp_data
,
int
*
pi_data
)
{
VLC_UNUSED
(
f
);
VLC_UNUSED
(
p_request
);
sout_stream_sys_t
*
p_sys
=
(
sout_stream_sys_t
*
)
p_args
;
vlc_mutex_lock
(
&
p_sys
->
lock_sdp
);
...
...
modules/stream_out/standard.c
View file @
c76522a3
...
...
@@ -384,8 +384,7 @@ static int Open( vlc_object_t *p_this )
msg_Dbg
(
p_stream
,
"Generated SDP:
\n
%s"
,
psz_sdp
);
p_sys
->
p_session
=
sout_AnnounceRegisterSDP
(
p_sout
,
SOUT_CFG_PREFIX
,
psz_sdp
,
dhost
,
p_method
);
sout_AnnounceRegisterSDP
(
p_sout
,
psz_sdp
,
dhost
,
p_method
);
sout_MethodRelease
(
p_method
);
}
free
(
dhost
);
...
...
src/stream_output/announce.c
View file @
c76522a3
...
...
@@ -60,9 +60,8 @@ struct announce_method_t
* \return the new session descriptor structure
*/
session_descriptor_t
*
sout_AnnounceRegisterSDP
(
sout_instance_t
*
p_sout
,
const
char
*
cfgpref
,
const
char
*
psz_sdp
,
const
char
*
psz_dst
,
announce_method_t
*
p_method
)
sout_AnnounceRegisterSDP
(
sout_instance_t
*
p_sout
,
const
char
*
psz_sdp
,
const
char
*
psz_dst
,
announce_method_t
*
p_method
)
{
session_descriptor_t
*
p_session
;
announce_handler_t
*
p_announce
=
(
announce_handler_t
*
)
...
...
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