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
6d0b5a17
Commit
6d0b5a17
authored
Aug 20, 2009
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
video_output: Flag a number of parameter as unused.
parent
73d86c5e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
src/video_output/event.h
src/video_output/event.h
+11
-0
No files found.
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
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