Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
6d0b5a17
Commit
6d0b5a17
authored
Aug 20, 2009
by
Pierre
Browse files
video_output: Flag a number of parameter as unused.
parent
73d86c5e
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/video_output/event.h
View file @
6d0b5a17
...
...
@@ -120,6 +120,9 @@ static inline void vout_SendEventDisplayFilled(vout_thread_t *vout, bool is_disp
static
inline
void
vout_SendEventZoom
(
vout_thread_t
*
vout
,
int
num
,
int
den
)
{
VLC_UNUSED
(
vout
);
VLC_UNUSED
(
num
);
VLC_UNUSED
(
den
);
/* FIXME deadlock problems with current vout */
#if 0
const float zoom = (float)num / (float)den;
...
...
@@ -132,6 +135,8 @@ static inline void vout_SendEventZoom(vout_thread_t *vout, int num, int den)
static
inline
void
vout_SendEventOnTop
(
vout_thread_t
*
vout
,
bool
is_on_top
)
{
VLC_UNUSED
(
vout
);
VLC_UNUSED
(
is_on_top
);
/* FIXME deadlock problems with current vout */
#if 0
...
...
@@ -147,6 +152,9 @@ static inline void vout_SendEventOnTop(vout_thread_t *vout, bool is_on_top)
static
inline
void
vout_SendEventSourceAspect
(
vout_thread_t
*
vout
,
unsigned
num
,
unsigned
den
)
{
VLC_UNUSED
(
vout
);
VLC_UNUSED
(
num
);
VLC_UNUSED
(
den
);
/* FIXME the value stored in "aspect-ratio" are not reduced
* creating a lot of problems here */
#if 0
...
...
@@ -172,6 +180,9 @@ static inline void vout_SendEventSourceCrop(vout_thread_t *vout,
unsigned
left
,
unsigned
top
,
unsigned
right
,
unsigned
bottom
)
{
VLC_UNUSED
(
num
);
VLC_UNUSED
(
den
);
vlc_value_t
val
;
/* I cannot use var_Set here, infinite loop otherwise */
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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