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
3e0d6d5f
Commit
3e0d6d5f
authored
Aug 04, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vdummy: remove useless manage callback
parent
fcc6a70f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
7 deletions
+1
-7
modules/video_output/vdummy.c
modules/video_output/vdummy.c
+1
-7
No files found.
modules/video_output/vdummy.c
View file @
3e0d6d5f
...
...
@@ -72,7 +72,6 @@ static picture_pool_t *Pool(vout_display_t *, unsigned count);
static
void
Display
(
vout_display_t
*
,
picture_t
*
,
subpicture_t
*
);
static
void
DisplayStat
(
vout_display_t
*
,
picture_t
*
,
subpicture_t
*
);
static
int
Control
(
vout_display_t
*
,
int
,
va_list
);
static
void
Manage
(
vout_display_t
*
);
/*****************************************************************************
* OpenVideo: activates dummy vout display method
...
...
@@ -103,7 +102,7 @@ static int Open(vlc_object_t *object,
vd
->
prepare
=
NULL
;
vd
->
display
=
display
;
vd
->
control
=
Control
;
vd
->
manage
=
Manage
;
vd
->
manage
=
NULL
;
return
VLC_SUCCESS
;
}
...
...
@@ -163,8 +162,3 @@ static int Control(vout_display_t *vd, int query, va_list args)
VLC_UNUSED
(
args
);
return
VLC_SUCCESS
;
}
static
void
Manage
(
vout_display_t
*
vd
)
{
VLC_UNUSED
(
vd
);
}
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