Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Thomas Guillem
vlc-legacy
Commits
20646d05
Commit
20646d05
authored
Sep 14, 2020
by
Steve Lhomme
Browse files
video_output: remove unused support boolean in control calls
parent
788a309f
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/video_output/control.c
View file @
20646d05
...
...
@@ -88,14 +88,6 @@ void vout_control_PushVoid(vout_control_t *ctrl, int type)
vout_control_cmd_Init
(
&
cmd
,
type
);
vout_control_Push
(
ctrl
,
&
cmd
);
}
void
vout_control_PushBool
(
vout_control_t
*
ctrl
,
int
type
,
bool
boolean
)
{
vout_control_cmd_t
cmd
;
vout_control_cmd_Init
(
&
cmd
,
type
);
cmd
.
boolean
=
boolean
;
vout_control_Push
(
ctrl
,
&
cmd
);
}
void
vout_control_Hold
(
vout_control_t
*
ctrl
)
{
...
...
src/video_output/control.h
View file @
20646d05
...
...
@@ -36,7 +36,6 @@ typedef struct {
int
type
;
union
{
bool
boolean
;
vlc_mouse_t
mouse
;
};
}
vout_control_cmd_t
;
...
...
@@ -65,7 +64,6 @@ void vout_control_WaitEmpty(vout_control_t *);
void
vout_control_Push
(
vout_control_t
*
,
vout_control_cmd_t
*
);
void
vout_control_PushVoid
(
vout_control_t
*
,
int
type
);
void
vout_control_PushBool
(
vout_control_t
*
,
int
type
,
bool
boolean
);
void
vout_control_Wake
(
vout_control_t
*
);
void
vout_control_Hold
(
vout_control_t
*
);
void
vout_control_Release
(
vout_control_t
*
);
...
...
Write
Preview
Supports
Markdown
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