Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
194c86f1
Commit
194c86f1
authored
Jun 22, 2009
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove duplicate code.
parent
ac1c62c8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
29 deletions
+1
-29
modules/demux/live555.cpp
modules/demux/live555.cpp
+1
-29
No files found.
modules/demux/live555.cpp
View file @
194c86f1
...
...
@@ -400,35 +400,7 @@ static int Open ( vlc_object_t *p_this )
return
VLC_SUCCESS
;
error:
for
(
i
=
0
;
i
<
p_sys
->
i_track
;
i
++
)
{
live_track_t
*
tk
=
p_sys
->
track
[
i
];
if
(
tk
->
b_muxed
)
stream_Delete
(
tk
->
p_out_muxed
);
es_format_Clean
(
&
tk
->
fmt
);
free
(
tk
->
p_buffer
);
free
(
tk
);
}
if
(
p_sys
->
i_track
)
free
(
p_sys
->
track
);
if
(
p_sys
->
p_out_asf
)
stream_Delete
(
p_sys
->
p_out_asf
);
if
(
p_sys
->
rtsp
&&
p_sys
->
ms
)
p_sys
->
rtsp
->
teardownMediaSession
(
*
p_sys
->
ms
);
if
(
p_sys
->
p_timeout
)
{
vlc_cancel
(
p_sys
->
p_timeout
->
handle
);
vlc_join
(
p_sys
->
p_timeout
->
handle
,
NULL
);
free
(
p_sys
->
p_timeout
);
}
if
(
p_sys
->
ms
)
Medium
::
close
(
p_sys
->
ms
);
if
(
p_sys
->
rtsp
)
RTSPClient
::
close
(
p_sys
->
rtsp
);
if
(
p_sys
->
env
)
p_sys
->
env
->
reclaim
();
delete
p_sys
->
scheduler
;
free
(
p_sys
->
p_sdp
);
free
(
p_sys
->
psz_path
);
vlc_UrlClean
(
&
p_sys
->
url
);
free
(
p_sys
);
Close
(
p_this
);
return
i_error
;
}
...
...
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