Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
bdb6d986
Commit
bdb6d986
authored
Dec 23, 2009
by
Pierre Ynard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vod: removing more unused stuff
parent
002746bf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
4 deletions
+0
-4
modules/misc/rtsp.c
modules/misc/rtsp.c
+0
-4
No files found.
modules/misc/rtsp.c
View file @
bdb6d986
...
...
@@ -105,7 +105,6 @@ typedef struct media_es_t media_es_t;
typedef
struct
{
media_es_t
*
p_media_es
;
char
*
psz_ip
;
int
i_port
;
}
rtsp_client_es_t
;
...
...
@@ -917,7 +916,6 @@ static void RtspClientDel( vod_media_t *p_media, rtsp_client_t *p_rtsp )
while
(
p_rtsp
->
i_es
)
{
p_rtsp
->
i_es
--
;
free
(
p_rtsp
->
es
[
p_rtsp
->
i_es
]
->
psz_ip
);
free
(
p_rtsp
->
es
[
p_rtsp
->
i_es
]
);
}
free
(
p_rtsp
->
es
);
...
...
@@ -1400,7 +1398,6 @@ static int RtspCallbackES( httpd_callback_sys_t *p_args, httpd_client_t *cl,
break
;
}
p_rtsp_es
->
i_port
=
i_port
;
p_rtsp_es
->
psz_ip
=
strdup
(
ip
);
p_rtsp_es
->
p_media_es
=
p_es
;
TAB_APPEND
(
p_rtsp
->
i_es
,
p_rtsp
->
es
,
p_rtsp_es
);
...
...
@@ -1483,7 +1480,6 @@ static int RtspCallbackES( httpd_callback_sys_t *p_args, httpd_client_t *cl,
{
if
(
p_rtsp
->
es
[
i
]
->
p_media_es
==
p_es
)
{
free
(
p_rtsp
->
es
[
i
]
->
psz_ip
);
TAB_REMOVE
(
p_rtsp
->
i_es
,
p_rtsp
->
es
,
p_rtsp
->
es
[
i
]
);
break
;
}
...
...
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