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
ecb7a33b
Commit
ecb7a33b
authored
Jan 14, 2016
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
video_chroma: mute unused variable warning
parent
1464d905
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
modules/video_chroma/copy.c
modules/video_chroma/copy.c
+2
-2
No files found.
modules/video_chroma/copy.c
View file @
ecb7a33b
...
...
@@ -103,7 +103,7 @@ static void CopyFromUswc(uint8_t *dst, size_t dst_pitch,
unsigned
width
,
unsigned
height
,
unsigned
cpu
)
{
#if
ndef CAN_COMPILE_SSSE3
#if
defined (__SSE4_1__) || !defined(CAN_COMPILE_SSSE3)
VLC_UNUSED
(
cpu
);
#endif
assert
(((
intptr_t
)
dst
&
0x0f
)
==
0
&&
(
dst_pitch
&
0x0f
)
==
0
);
...
...
@@ -179,7 +179,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
)
{
#if
ndef CAN_COMPILE_SSSE3
#if
defined(__SSSE3__) || !defined (CAN_COMPILE_SSSE3)
VLC_UNUSED
(
cpu
);
#endif
const
uint8_t
shuffle
[]
=
{
0
,
2
,
4
,
6
,
8
,
10
,
12
,
14
,
...
...
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