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
d7cf24fe
Commit
d7cf24fe
authored
Nov 17, 2010
by
Pierre Ynard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vod: remove pf_media_{add,del}_es
These are never used
parent
152fee0c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
7 deletions
+0
-7
include/vlc_vod.h
include/vlc_vod.h
+0
-2
modules/misc/rtsp.c
modules/misc/rtsp.c
+0
-2
modules/stream_out/vod.c
modules/stream_out/vod.c
+0
-3
No files found.
include/vlc_vod.h
View file @
d7cf24fe
...
...
@@ -46,8 +46,6 @@ struct vod_t
vod_media_t
*
(
*
pf_media_new
)
(
vod_t
*
,
const
char
*
,
input_item_t
*
);
void
(
*
pf_media_del
)
(
vod_t
*
,
vod_media_t
*
);
int
(
*
pf_media_add_es
)(
vod_t
*
,
vod_media_t
*
,
es_format_t
*
);
void
(
*
pf_media_del_es
)(
vod_t
*
,
vod_media_t
*
,
es_format_t
*
);
/* Owner properties */
int
(
*
pf_media_control
)
(
void
*
,
vod_media_t
*
,
const
char
*
,
int
,
va_list
);
...
...
modules/misc/rtsp.c
View file @
d7cf24fe
...
...
@@ -297,8 +297,6 @@ static int Open( vlc_object_t *p_this )
p_vod
->
pf_media_new
=
MediaNew
;
p_vod
->
pf_media_del
=
MediaAskDel
;
p_vod
->
pf_media_add_es
=
MediaAddES
;
p_vod
->
pf_media_del_es
=
MediaDelES
;
p_sys
->
p_fifo_cmd
=
block_FifoNew
();
if
(
vlc_thread_create
(
p_vod
,
"rtsp vod thread"
,
CommandThread
,
...
...
modules/stream_out/vod.c
View file @
d7cf24fe
...
...
@@ -162,9 +162,6 @@ int OpenVoD( vlc_object_t *p_this )
p_vod
->
pf_media_new
=
MediaNew
;
p_vod
->
pf_media_del
=
MediaAskDel
;
/* These are never used in the core, wonder why they're in the API */
p_vod
->
pf_media_add_es
=
NULL
;
p_vod
->
pf_media_del_es
=
NULL
;
p_sys
->
p_fifo_cmd
=
block_FifoNew
();
if
(
vlc_thread_create
(
p_vod
,
"rtsp vod thread"
,
CommandThread
,
...
...
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