Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
36f1aa05
Commit
36f1aa05
authored
Jul 26, 2005
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix FIXME
parent
4eb8f6ef
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
5 deletions
+1
-5
modules/stream_out/rtp.c
modules/stream_out/rtp.c
+1
-5
No files found.
modules/stream_out/rtp.c
View file @
36f1aa05
...
...
@@ -1269,9 +1269,7 @@ static int SapSetup( sout_stream_t *p_stream )
{
sout_stream_sys_t
*
p_sys
=
p_stream
->
p_sys
;
sout_instance_t
*
p_sout
=
p_stream
->
p_sout
;
/* FIXME: use sout_AnnounceMethodCreate */
announce_method_t
*
p_method
=
(
announce_method_t
*
)
malloc
(
sizeof
(
announce_method_t
));
announce_method_t
*
p_method
=
sout_AnnounceMethodCreate
(
METHOD_TYPE_SAP
);
/* Remove the previous session */
if
(
p_sys
->
p_session
!=
NULL
)
...
...
@@ -1280,8 +1278,6 @@ static int SapSetup( sout_stream_t *p_stream )
sout_AnnounceSessionDestroy
(
p_sys
->
p_session
);
p_sys
->
p_session
=
NULL
;
}
p_method
->
i_type
=
METHOD_TYPE_SAP
;
p_method
->
psz_address
=
NULL
;
/* FIXME */
if
(
(
p_sys
->
i_es
>
0
||
p_sys
->
p_mux
)
&&
p_sys
->
psz_sdp
&&
*
p_sys
->
psz_sdp
)
{
...
...
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