[vlc-commits] i420_yuy2: correct placement of target attributes

Rémi Denis-Courmont git at videolan.org
Mon Oct 15 17:03:01 CEST 2012


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Mon Oct 15 18:02:06 2012 +0300| [bd3d52ddece0d319d9c1adaf2e168e555d30ab6c] | committer: Rémi Denis-Courmont

i420_yuy2: correct placement of target attributes

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=bd3d52ddece0d319d9c1adaf2e168e555d30ab6c
---

 modules/video_chroma/i420_yuy2.c |   14 +++++++++-----
 1 file changed, 9 insertions(+), 5 deletions(-)

diff --git a/modules/video_chroma/i420_yuy2.c b/modules/video_chroma/i420_yuy2.c
index a157e94..61765a5 100644
--- a/modules/video_chroma/i420_yuy2.c
+++ b/modules/video_chroma/i420_yuy2.c
@@ -188,12 +188,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 )
@@ -202,6 +202,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 )
 {
@@ -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
  *****************************************************************************/
+VLC_TARGET
 static void I420_YVYU( filter_t *p_filter, picture_t *p_source,
                                            picture_t *p_dest )
 {
@@ -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
  *****************************************************************************/
+VLC_TARGET
 static void I420_UYVY( filter_t *p_filter, picture_t *p_source,
                                            picture_t *p_dest )
 {
@@ -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
  *****************************************************************************/
+VLC_TARGET
 static void I420_cyuv( filter_t *p_filter, picture_t *p_source,
                                            picture_t *p_dest )
 {



More information about the vlc-commits mailing list