vlc/vlc-2.0 | branch: master | Rémi Denis-Courmont <[email protected]> | Mon Oct 15 18:02:06 2012 +0300| [72da14fa2567d973b9fd8305b37a472f878a2469] | committer: Rémi Denis-Courmont
i420_yuy2: correct placement of target attributes (cherry picked from commit bd3d52ddece0d319d9c1adaf2e168e555d30ab6c) > http://git.videolan.org/gitweb.cgi/vlc/vlc-2.0.git/?a=commit;h=72da14fa2567d973b9fd8305b37a472f878a2469 --- 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 caece87..8a6927c 100644 --- a/modules/video_chroma/i420_yuy2.c +++ b/modules/video_chroma/i420_yuy2.c @@ -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 ) { _______________________________________________ vlc-commits mailing list [email protected] http://mailman.videolan.org/listinfo/vlc-commits
