Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
ecf896a8
Commit
ecf896a8
authored
Jan 31, 2011
by
Guillaume Poussel
Committed by
Jean-Baptiste Kempf
Jan 31, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Transform: Mark some variables as unused
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
1a45e4a1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
modules/video_filter/transform.c
modules/video_filter/transform.c
+6
-0
No files found.
modules/video_filter/transform.c
View file @
ecf896a8
...
...
@@ -71,16 +71,19 @@ vlc_module_end()
*****************************************************************************/
static
void
HFlip
(
int
*
sx
,
int
*
sy
,
int
w
,
int
h
,
int
dx
,
int
dy
)
{
VLC_UNUSED
(
h
);
*
sx
=
w
-
1
-
dx
;
*
sy
=
dy
;
}
static
void
VFlip
(
int
*
sx
,
int
*
sy
,
int
w
,
int
h
,
int
dx
,
int
dy
)
{
VLC_UNUSED
(
w
);
*
sx
=
dx
;
*
sy
=
h
-
1
-
dy
;
}
static
void
R90
(
int
*
sx
,
int
*
sy
,
int
w
,
int
h
,
int
dx
,
int
dy
)
{
VLC_UNUSED
(
h
);
*
sx
=
dy
;
*
sy
=
w
-
1
-
dx
;
}
...
...
@@ -91,6 +94,7 @@ static void R180(int *sx, int *sy, int w, int h, int dx, int dy)
}
static
void
R270
(
int
*
sx
,
int
*
sy
,
int
w
,
int
h
,
int
dx
,
int
dy
)
{
VLC_UNUSED
(
w
);
*
sx
=
h
-
1
-
dy
;
*
sy
=
dx
;
}
...
...
@@ -165,6 +169,8 @@ static picture_t *Filter(filter_t *filter, picture_t *src)
static
int
Mouse
(
filter_t
*
filter
,
vlc_mouse_t
*
mouse
,
const
vlc_mouse_t
*
mold
,
const
vlc_mouse_t
*
mnew
)
{
VLC_UNUSED
(
mold
);
const
video_format_t
*
fmt
=
&
filter
->
fmt_out
.
video
;
const
transform_description_t
*
dsc
=
filter
->
p_sys
->
dsc
;
...
...
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