Commit 72da14fa authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

i420_yuy2: correct placement of target attributes

(cherry picked from commit bd3d52ddece0d319d9c1adaf2e168e555d30ab6c)
parent 58841098
......@@ -190,12 +190,12 @@ static inline unsigned long long read_cycles(void)
/* Following functions are local */
VLC_TARGET VIDEO_FILTER_WRAPPER( I420_YUY2 )
VLC_TARGET VIDEO_FILTER_WRAPPER( I420_YVYU )
VLC_TARGET VIDEO_FILTER_WRAPPER( I420_UYVY )
VIDEO_FILTER_WRAPPER( I420_YUY2 )
VIDEO_FILTER_WRAPPER( I420_YVYU )
VIDEO_FILTER_WRAPPER( I420_UYVY )
#if !defined (MODULE_NAME_IS_i420_yuy2_altivec)
VLC_TARGET VIDEO_FILTER_WRAPPER( I420_IUYV )
VLC_TARGET VIDEO_FILTER_WRAPPER( I420_cyuv )
VIDEO_FILTER_WRAPPER( I420_IUYV )
VIDEO_FILTER_WRAPPER( I420_cyuv )
#endif
#if defined (MODULE_NAME_IS_i420_yuy2)
VIDEO_FILTER_WRAPPER( I420_Y211 )
......@@ -204,6 +204,7 @@ VIDEO_FILTER_WRAPPER( I420_Y211 )
/*****************************************************************************
* 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,
picture_t *p_dest )
{
......@@ -421,6 +422,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
*****************************************************************************/
VLC_TARGET
static void I420_YVYU( filter_t *p_filter, picture_t *p_source,
picture_t *p_dest )
{
......@@ -630,6 +632,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
*****************************************************************************/
VLC_TARGET
static void I420_UYVY( filter_t *p_filter, picture_t *p_source,
picture_t *p_dest )
{
......@@ -851,6 +854,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
*****************************************************************************/
VLC_TARGET
static void I420_cyuv( filter_t *p_filter, picture_t *p_source,
picture_t *p_dest )
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment