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
bd3d52dd
Commit
bd3d52dd
authored
Oct 15, 2012
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
i420_yuy2: correct placement of target attributes
parent
b3b751cb
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
5 deletions
+9
-5
modules/video_chroma/i420_yuy2.c
modules/video_chroma/i420_yuy2.c
+9
-5
No files found.
modules/video_chroma/i420_yuy2.c
View file @
bd3d52dd
...
@@ -188,12 +188,12 @@ static inline unsigned long long read_cycles(void)
...
@@ -188,12 +188,12 @@ static inline unsigned long long read_cycles(void)
/* Following functions are local */
/* Following functions are local */
V
LC_TARGET
V
IDEO_FILTER_WRAPPER
(
I420_YUY2
)
VIDEO_FILTER_WRAPPER
(
I420_YUY2
)
V
LC_TARGET
V
IDEO_FILTER_WRAPPER
(
I420_YVYU
)
VIDEO_FILTER_WRAPPER
(
I420_YVYU
)
V
LC_TARGET
V
IDEO_FILTER_WRAPPER
(
I420_UYVY
)
VIDEO_FILTER_WRAPPER
(
I420_UYVY
)
#if !defined (MODULE_NAME_IS_i420_yuy2_altivec)
#if !defined (MODULE_NAME_IS_i420_yuy2_altivec)
V
LC_TARGET
V
IDEO_FILTER_WRAPPER
(
I420_IUYV
)
VIDEO_FILTER_WRAPPER
(
I420_IUYV
)
V
LC_TARGET
V
IDEO_FILTER_WRAPPER
(
I420_cyuv
)
VIDEO_FILTER_WRAPPER
(
I420_cyuv
)
#endif
#endif
#if defined (MODULE_NAME_IS_i420_yuy2)
#if defined (MODULE_NAME_IS_i420_yuy2)
VIDEO_FILTER_WRAPPER
(
I420_Y211
)
VIDEO_FILTER_WRAPPER
(
I420_Y211
)
...
@@ -202,6 +202,7 @@ VIDEO_FILTER_WRAPPER( I420_Y211 )
...
@@ -202,6 +202,7 @@ VIDEO_FILTER_WRAPPER( I420_Y211 )
/*****************************************************************************
/*****************************************************************************
* I420_YUY2: planar YUV 4:2:0 to packed YUYV 4:2:2
* I420_YUY2: planar YUV 4:2:0 to packed YUYV 4:2:2
*****************************************************************************/
*****************************************************************************/
VLC_TARGET
static
void
I420_YUY2
(
filter_t
*
p_filter
,
picture_t
*
p_source
,
static
void
I420_YUY2
(
filter_t
*
p_filter
,
picture_t
*
p_source
,
picture_t
*
p_dest
)
picture_t
*
p_dest
)
{
{
...
@@ -419,6 +420,7 @@ static void I420_YUY2( filter_t *p_filter, picture_t *p_source,
...
@@ -419,6 +420,7 @@ static void I420_YUY2( filter_t *p_filter, picture_t *p_source,
/*****************************************************************************
/*****************************************************************************
* I420_YVYU: planar YUV 4:2:0 to packed YVYU 4:2:2
* I420_YVYU: planar YUV 4:2:0 to packed YVYU 4:2:2
*****************************************************************************/
*****************************************************************************/
VLC_TARGET
static
void
I420_YVYU
(
filter_t
*
p_filter
,
picture_t
*
p_source
,
static
void
I420_YVYU
(
filter_t
*
p_filter
,
picture_t
*
p_source
,
picture_t
*
p_dest
)
picture_t
*
p_dest
)
{
{
...
@@ -628,6 +630,7 @@ static void I420_YVYU( filter_t *p_filter, picture_t *p_source,
...
@@ -628,6 +630,7 @@ static void I420_YVYU( filter_t *p_filter, picture_t *p_source,
/*****************************************************************************
/*****************************************************************************
* I420_UYVY: planar YUV 4:2:0 to packed UYVY 4:2:2
* I420_UYVY: planar YUV 4:2:0 to packed UYVY 4:2:2
*****************************************************************************/
*****************************************************************************/
VLC_TARGET
static
void
I420_UYVY
(
filter_t
*
p_filter
,
picture_t
*
p_source
,
static
void
I420_UYVY
(
filter_t
*
p_filter
,
picture_t
*
p_source
,
picture_t
*
p_dest
)
picture_t
*
p_dest
)
{
{
...
@@ -849,6 +852,7 @@ static void I420_IUYV( filter_t *p_filter, picture_t *p_source,
...
@@ -849,6 +852,7 @@ static void I420_IUYV( filter_t *p_filter, picture_t *p_source,
/*****************************************************************************
/*****************************************************************************
* I420_cyuv: planar YUV 4:2:0 to upside-down packed UYVY 4:2:2
* I420_cyuv: planar YUV 4:2:0 to upside-down packed UYVY 4:2:2
*****************************************************************************/
*****************************************************************************/
VLC_TARGET
static
void
I420_cyuv
(
filter_t
*
p_filter
,
picture_t
*
p_source
,
static
void
I420_cyuv
(
filter_t
*
p_filter
,
picture_t
*
p_source
,
picture_t
*
p_dest
)
picture_t
*
p_dest
)
{
{
...
...
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