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
4b726052
Commit
4b726052
authored
Nov 22, 2013
by
Maxim Bublis
Committed by
Jean-Baptiste Kempf
Dec 01, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed unused variable and parameter warnings.
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
d6cfb16f
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
1 deletion
+7
-1
lib/media.c
lib/media.c
+1
-0
modules/gui/eject.c
modules/gui/eject.c
+1
-0
modules/video_chroma/copy.c
modules/video_chroma/copy.c
+1
-0
src/posix/filesystem.c
src/posix/filesystem.c
+4
-1
No files found.
lib/media.c
View file @
4b726052
...
...
@@ -125,6 +125,7 @@ static void input_item_subitem_added( const vlc_event_t *p_event,
static
void
input_item_subitemtree_added
(
const
vlc_event_t
*
p_event
,
void
*
user_data
)
{
VLC_UNUSED
(
p_event
);
libvlc_media_t
*
p_md
=
user_data
;
libvlc_event_t
event
;
...
...
modules/gui/eject.c
View file @
4b726052
...
...
@@ -174,6 +174,7 @@ static int intf_Eject( vlc_object_t *p_this, const char *psz_device )
return
VLC_SUCCESS
;
#else
VLC_UNUSED
(
psz_device
);
msg_Warn
(
p_this
,
"CD-Rom ejection unsupported on this platform"
);
return
VLC_EGENERIC
;
#endif
...
...
modules/video_chroma/copy.c
View file @
4b726052
...
...
@@ -172,6 +172,7 @@ static void SSE_SplitUV(uint8_t *dstu, size_t dstu_pitch,
const
uint8_t
*
src
,
size_t
src_pitch
,
unsigned
width
,
unsigned
height
,
unsigned
cpu
)
{
VLC_UNUSED
(
cpu
);
const
uint8_t
shuffle
[]
=
{
0
,
2
,
4
,
6
,
8
,
10
,
12
,
14
,
1
,
3
,
5
,
7
,
9
,
11
,
13
,
15
};
const
uint8_t
mask
[]
=
{
0xff
,
0x00
,
0xff
,
0x00
,
0xff
,
0x00
,
0xff
,
0x00
,
...
...
src/posix/filesystem.c
View file @
4b726052
...
...
@@ -103,9 +103,12 @@ int vlc_openat (int dir, const char *filename, int flags, ...)
if
(
fd
!=
-
1
)
fcntl
(
fd
,
F_SETFD
,
FD_CLOEXEC
);
#else
VLC_UNUSED
(
dir
);
VLC_UNUSED
(
filename
);
VLC_UNUSED
(
mode
);
int
fd
=
-
1
;
errno
=
ENOSYS
;
(
void
)
mode
;
#endif
return
fd
;
}
...
...
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