i422_yuy2.c
资源名称:vlc-1.0.5.zip [点击查看]
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:20k
源码类别:
midi
开发平台:
Unix_Linux
- /*****************************************************************************
- * i422_yuy2.c : Planar YUV 4:2:2 to Packed YUV conversion module for vlc
- *****************************************************************************
- * Copyright (C) 2000, 2001 the VideoLAN team
- * $Id: 53dd4fd20089be3f7f9d1ba2fc4779af3acfb963 $
- *
- * Authors: Samuel Hocevar <sam@zoy.org>
- * Damien Fouilleul <damienf@videolan.org>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
- *****************************************************************************/
- /*****************************************************************************
- * Preamble
- *****************************************************************************/
- #ifdef HAVE_CONFIG_H
- # include "config.h"
- #endif
- #include <vlc_common.h>
- #include <vlc_plugin.h>
- #include <vlc_filter.h>
- #include <vlc_vout.h>
- #include "i422_yuy2.h"
- #define SRC_FOURCC "I422"
- #if defined (MODULE_NAME_IS_i422_yuy2)
- # define DEST_FOURCC "YUY2,YUNV,YVYU,UYVY,UYNV,Y422,IUYV,cyuv,Y211"
- #else
- # define DEST_FOURCC "YUY2,YUNV,YVYU,UYVY,UYNV,Y422,IUYV,cyuv"
- #endif
- /*****************************************************************************
- * Local and extern prototypes.
- *****************************************************************************/
- static int Activate ( vlc_object_t * );
- static void I422_YUY2 ( filter_t *, picture_t *, picture_t * );
- static void I422_YVYU ( filter_t *, picture_t *, picture_t * );
- static void I422_UYVY ( filter_t *, picture_t *, picture_t * );
- static void I422_IUYV ( filter_t *, picture_t *, picture_t * );
- static void I422_cyuv ( filter_t *, picture_t *, picture_t * );
- static picture_t *I422_YUY2_Filter ( filter_t *, picture_t * );
- static picture_t *I422_YVYU_Filter ( filter_t *, picture_t * );
- static picture_t *I422_UYVY_Filter ( filter_t *, picture_t * );
- static picture_t *I422_IUYV_Filter ( filter_t *, picture_t * );
- static picture_t *I422_cyuv_Filter ( filter_t *, picture_t * );
- #if defined (MODULE_NAME_IS_i422_yuy2)
- static void I422_Y211 ( filter_t *, picture_t *, picture_t * );
- static picture_t *I422_Y211_Filter ( filter_t *, picture_t * );
- #endif
- /*****************************************************************************
- * Module descriptor
- *****************************************************************************/
- vlc_module_begin ()
- #if defined (MODULE_NAME_IS_i422_yuy2)
- set_description( N_("Conversions from " SRC_FOURCC " to " DEST_FOURCC) )
- set_capability( "video filter2", 80 )
- #elif defined (MODULE_NAME_IS_i422_yuy2_mmx)
- set_description( N_("MMX conversions from " SRC_FOURCC " to " DEST_FOURCC) )
- set_capability( "video filter2", 100 )
- add_requirement( MMX )
- #elif defined (MODULE_NAME_IS_i422_yuy2_sse2)
- set_description( N_("SSE2 conversions from " SRC_FOURCC " to " DEST_FOURCC) )
- set_capability( "video filter2", 120 )
- add_requirement( SSE2 )
- #endif
- set_callbacks( Activate, NULL )
- vlc_module_end ()
- /*****************************************************************************
- * Activate: allocate a chroma function
- *****************************************************************************
- * This function allocates and initializes a chroma function
- *****************************************************************************/
- static int Activate( vlc_object_t *p_this )
- {
- filter_t *p_filter = (filter_t *)p_this;
- if( p_filter->fmt_in.video.i_width & 1
- || p_filter->fmt_in.video.i_height & 1 )
- {
- return -1;
- }
- switch( p_filter->fmt_in.video.i_chroma )
- {
- case VLC_FOURCC('I','4','2','2'):
- switch( p_filter->fmt_out.video.i_chroma )
- {
- case VLC_FOURCC('Y','U','Y','2'):
- case VLC_FOURCC('Y','U','N','V'):
- p_filter->pf_video_filter = I422_YUY2_Filter;
- break;
- case VLC_FOURCC('Y','V','Y','U'):
- p_filter->pf_video_filter = I422_YVYU_Filter;
- break;
- case VLC_FOURCC('U','Y','V','Y'):
- case VLC_FOURCC('U','Y','N','V'):
- case VLC_FOURCC('Y','4','2','2'):
- p_filter->pf_video_filter = I422_UYVY_Filter;
- break;
- case VLC_FOURCC('I','U','Y','V'):
- p_filter->pf_video_filter = I422_IUYV_Filter;
- break;
- case VLC_FOURCC('c','y','u','v'):
- p_filter->pf_video_filter = I422_cyuv_Filter;
- break;
- #if defined (MODULE_NAME_IS_i422_yuy2)
- case VLC_FOURCC('Y','2','1','1'):
- p_filter->pf_video_filter = I422_Y211_Filter;
- break;
- #endif
- default:
- return -1;
- }
- break;
- default:
- return -1;
- }
- return 0;
- }
- /* Following functions are local */
- VIDEO_FILTER_WRAPPER( I422_YUY2 )
- VIDEO_FILTER_WRAPPER( I422_YVYU )
- VIDEO_FILTER_WRAPPER( I422_UYVY )
- VIDEO_FILTER_WRAPPER( I422_IUYV )
- VIDEO_FILTER_WRAPPER( I422_cyuv )
- #if defined (MODULE_NAME_IS_i422_yuy2)
- VIDEO_FILTER_WRAPPER( I422_Y211 )
- #endif
- /*****************************************************************************
- * I422_YUY2: planar YUV 4:2:2 to packed YUY2 4:2:2
- *****************************************************************************/
- static void I422_YUY2( filter_t *p_filter, picture_t *p_source,
- picture_t *p_dest )
- {
- uint8_t *p_line = p_dest->p->p_pixels;
- uint8_t *p_y = p_source->Y_PIXELS;
- uint8_t *p_u = p_source->U_PIXELS;
- uint8_t *p_v = p_source->V_PIXELS;
- int i_x, i_y;
- const int i_source_margin = p_source->p[0].i_pitch
- - p_source->p[0].i_visible_pitch;
- const int i_source_margin_c = p_source->p[1].i_pitch
- - p_source->p[1].i_visible_pitch;
- const int i_dest_margin = p_dest->p->i_pitch
- - p_dest->p->i_visible_pitch;
- #if defined (MODULE_NAME_IS_i422_yuy2_sse2)
- if( 0 == (15 & (p_source->p[Y_PLANE].i_pitch|p_dest->p->i_pitch|
- ((intptr_t)p_line|(intptr_t)p_y))) )
- {
- /* use faster SSE2 aligned fetch and store */
- for( i_y = p_filter->fmt_in.video.i_height ; i_y-- ; )
- {
- for( i_x = p_filter->fmt_in.video.i_width / 16 ; i_x-- ; )
- {
- SSE2_CALL( SSE2_YUV422_YUYV_ALIGNED );
- }
- for( i_x = ( p_filter->fmt_in.video.i_width % 16 ) / 2; i_x-- ; )
- {
- C_YUV422_YUYV( p_line, p_y, p_u, p_v );
- }
- p_y += i_source_margin;
- p_u += i_source_margin_c;
- p_v += i_source_margin_c;
- p_line += i_dest_margin;
- }
- }
- else {
- /* use slower SSE2 unaligned fetch and store */
- for( i_y = p_filter->fmt_in.video.i_height ; i_y-- ; )
- {
- for( i_x = p_filter->fmt_in.video.i_width / 16 ; i_x-- ; )
- {
- SSE2_CALL( SSE2_YUV422_YUYV_UNALIGNED );
- }
- for( i_x = ( p_filter->fmt_in.video.i_width % 16 ) / 2; i_x-- ; )
- {
- C_YUV422_YUYV( p_line, p_y, p_u, p_v );
- }
- p_y += i_source_margin;
- p_u += i_source_margin_c;
- p_v += i_source_margin_c;
- p_line += i_dest_margin;
- }
- }
- SSE2_END;
- #else
- for( i_y = p_filter->fmt_in.video.i_height ; i_y-- ; )
- {
- for( i_x = p_filter->fmt_in.video.i_width / 8 ; i_x-- ; )
- {
- #if defined (MODULE_NAME_IS_i422_yuy2)
- C_YUV422_YUYV( p_line, p_y, p_u, p_v );
- C_YUV422_YUYV( p_line, p_y, p_u, p_v );
- C_YUV422_YUYV( p_line, p_y, p_u, p_v );
- C_YUV422_YUYV( p_line, p_y, p_u, p_v );
- #elif defined (MODULE_NAME_IS_i422_yuy2_mmx)
- MMX_CALL( MMX_YUV422_YUYV );
- #endif
- }
- for( i_x = ( p_filter->fmt_in.video.i_width % 8 ) / 2; i_x-- ; )
- {
- C_YUV422_YUYV( p_line, p_y, p_u, p_v );
- }
- p_y += i_source_margin;
- p_u += i_source_margin_c;
- p_v += i_source_margin_c;
- p_line += i_dest_margin;
- }
- #if defined (MODULE_NAME_IS_i422_yuy2_mmx)
- MMX_END;
- #endif
- #endif
- }
- /*****************************************************************************
- * I422_YVYU: planar YUV 4:2:2 to packed YVYU 4:2:2
- *****************************************************************************/
- static void I422_YVYU( filter_t *p_filter, picture_t *p_source,
- picture_t *p_dest )
- {
- uint8_t *p_line = p_dest->p->p_pixels;
- uint8_t *p_y = p_source->Y_PIXELS;
- uint8_t *p_u = p_source->U_PIXELS;
- uint8_t *p_v = p_source->V_PIXELS;
- int i_x, i_y;
- const int i_source_margin = p_source->p[0].i_pitch
- - p_source->p[0].i_visible_pitch;
- const int i_source_margin_c = p_source->p[1].i_pitch
- - p_source->p[1].i_visible_pitch;
- const int i_dest_margin = p_dest->p->i_pitch
- - p_dest->p->i_visible_pitch;
- #if defined (MODULE_NAME_IS_i422_yuy2_sse2)
- if( 0 == (15 & (p_source->p[Y_PLANE].i_pitch|p_dest->p->i_pitch|
- ((intptr_t)p_line|(intptr_t)p_y))) )
- {
- /* use faster SSE2 aligned fetch and store */
- for( i_y = p_filter->fmt_in.video.i_height ; i_y-- ; )
- {
- for( i_x = p_filter->fmt_in.video.i_width / 16 ; i_x-- ; )
- {
- SSE2_CALL( SSE2_YUV422_YVYU_ALIGNED );
- }
- for( i_x = ( p_filter->fmt_in.video.i_width % 16 ) / 2; i_x-- ; )
- {
- C_YUV422_YVYU( p_line, p_y, p_u, p_v );
- }
- p_y += i_source_margin;
- p_u += i_source_margin_c;
- p_v += i_source_margin_c;
- p_line += i_dest_margin;
- }
- }
- else {
- /* use slower SSE2 unaligned fetch and store */
- for( i_y = p_filter->fmt_in.video.i_height ; i_y-- ; )
- {
- for( i_x = p_filter->fmt_in.video.i_width / 16 ; i_x-- ; )
- {
- SSE2_CALL( SSE2_YUV422_YVYU_UNALIGNED );
- }
- for( i_x = ( p_filter->fmt_in.video.i_width % 16 ) / 2; i_x-- ; )
- {
- C_YUV422_YVYU( p_line, p_y, p_u, p_v );
- }
- p_y += i_source_margin;
- p_u += i_source_margin_c;
- p_v += i_source_margin_c;
- p_line += i_dest_margin;
- }
- }
- SSE2_END;
- #else
- for( i_y = p_filter->fmt_in.video.i_height ; i_y-- ; )
- {
- for( i_x = p_filter->fmt_in.video.i_width / 8 ; i_x-- ; )
- {
- #if defined (MODULE_NAME_IS_i422_yuy2)
- C_YUV422_YVYU( p_line, p_y, p_u, p_v );
- C_YUV422_YVYU( p_line, p_y, p_u, p_v );
- C_YUV422_YVYU( p_line, p_y, p_u, p_v );
- C_YUV422_YVYU( p_line, p_y, p_u, p_v );
- #elif defined (MODULE_NAME_IS_i422_yuy2_mmx)
- MMX_CALL( MMX_YUV422_YVYU );
- #endif
- }
- for( i_x = ( p_filter->fmt_in.video.i_width % 8 ) / 2; i_x-- ; )
- {
- C_YUV422_YVYU( p_line, p_y, p_u, p_v );
- }
- p_y += i_source_margin;
- p_u += i_source_margin_c;
- p_v += i_source_margin_c;
- p_line += i_dest_margin;
- }
- #if defined (MODULE_NAME_IS_i422_yuy2_mmx)
- MMX_END;
- #endif
- #endif
- }
- /*****************************************************************************
- * I422_UYVY: planar YUV 4:2:2 to packed UYVY 4:2:2
- *****************************************************************************/
- static void I422_UYVY( filter_t *p_filter, picture_t *p_source,
- picture_t *p_dest )
- {
- uint8_t *p_line = p_dest->p->p_pixels;
- uint8_t *p_y = p_source->Y_PIXELS;
- uint8_t *p_u = p_source->U_PIXELS;
- uint8_t *p_v = p_source->V_PIXELS;
- int i_x, i_y;
- const int i_source_margin = p_source->p[0].i_pitch
- - p_source->p[0].i_visible_pitch;
- const int i_source_margin_c = p_source->p[1].i_pitch
- - p_source->p[1].i_visible_pitch;
- const int i_dest_margin = p_dest->p->i_pitch
- - p_dest->p->i_visible_pitch;
- #if defined (MODULE_NAME_IS_i422_yuy2_sse2)
- if( 0 == (15 & (p_source->p[Y_PLANE].i_pitch|p_dest->p->i_pitch|
- ((intptr_t)p_line|(intptr_t)p_y))) )
- {
- /* use faster SSE2 aligned fetch and store */
- for( i_y = p_filter->fmt_in.video.i_height ; i_y-- ; )
- {
- for( i_x = p_filter->fmt_in.video.i_width / 16 ; i_x-- ; )
- {
- SSE2_CALL( SSE2_YUV422_UYVY_ALIGNED );
- }
- for( i_x = ( p_filter->fmt_in.video.i_width % 16 ) / 2; i_x-- ; )
- {
- C_YUV422_UYVY( p_line, p_y, p_u, p_v );
- }
- p_y += i_source_margin;
- p_u += i_source_margin_c;
- p_v += i_source_margin_c;
- p_line += i_dest_margin;
- }
- }
- else {
- /* use slower SSE2 unaligned fetch and store */
- for( i_y = p_filter->fmt_in.video.i_height ; i_y-- ; )
- {
- for( i_x = p_filter->fmt_in.video.i_width / 16 ; i_x-- ; )
- {
- SSE2_CALL( SSE2_YUV422_UYVY_UNALIGNED );
- }
- for( i_x = ( p_filter->fmt_in.video.i_width % 16 ) / 2; i_x-- ; )
- {
- C_YUV422_UYVY( p_line, p_y, p_u, p_v );
- }
- p_y += i_source_margin;
- p_u += i_source_margin_c;
- p_v += i_source_margin_c;
- p_line += i_dest_margin;
- }
- }
- SSE2_END;
- #else
- for( i_y = p_filter->fmt_in.video.i_height ; i_y-- ; )
- {
- for( i_x = p_filter->fmt_in.video.i_width / 8 ; i_x-- ; )
- {
- #if defined (MODULE_NAME_IS_i422_yuy2)
- C_YUV422_UYVY( p_line, p_y, p_u, p_v );
- C_YUV422_UYVY( p_line, p_y, p_u, p_v );
- C_YUV422_UYVY( p_line, p_y, p_u, p_v );
- C_YUV422_UYVY( p_line, p_y, p_u, p_v );
- #elif defined (MODULE_NAME_IS_i422_yuy2_mmx)
- MMX_CALL( MMX_YUV422_UYVY );
- #endif
- }
- for( i_x = ( p_filter->fmt_in.video.i_width % 8 ) / 2; i_x-- ; )
- {
- C_YUV422_UYVY( p_line, p_y, p_u, p_v );
- }
- p_y += i_source_margin;
- p_u += i_source_margin_c;
- p_v += i_source_margin_c;
- p_line += i_dest_margin;
- }
- #if defined (MODULE_NAME_IS_i422_yuy2_mmx)
- MMX_END;
- #endif
- #endif
- }
- /*****************************************************************************
- * I422_IUYV: planar YUV 4:2:2 to interleaved packed IUYV 4:2:2
- *****************************************************************************/
- static void I422_IUYV( filter_t *p_filter, picture_t *p_source,
- picture_t *p_dest )
- {
- VLC_UNUSED(p_source); VLC_UNUSED(p_dest);
- /* FIXME: TODO ! */
- msg_Err( p_filter, "I422_IUYV unimplemented, please harass <sam@zoy.org>" );
- }
- /*****************************************************************************
- * I422_cyuv: planar YUV 4:2:2 to upside-down packed UYVY 4:2:2
- *****************************************************************************/
- static void I422_cyuv( filter_t *p_filter, picture_t *p_source,
- picture_t *p_dest )
- {
- uint8_t *p_line = p_dest->p->p_pixels + p_dest->p->i_visible_lines * p_dest->p->i_pitch;
- uint8_t *p_y = p_source->Y_PIXELS;
- uint8_t *p_u = p_source->U_PIXELS;
- uint8_t *p_v = p_source->V_PIXELS;
- int i_x, i_y;
- const int i_source_margin = p_source->p[0].i_pitch
- - p_source->p[0].i_visible_pitch;
- const int i_source_margin_c = p_source->p[1].i_pitch
- - p_source->p[1].i_visible_pitch;
- const int i_dest_margin = p_dest->p->i_pitch
- - p_dest->p->i_visible_pitch;
- #if defined (MODULE_NAME_IS_i422_yuy2_sse2)
- if( 0 == (15 & (p_source->p[Y_PLANE].i_pitch|p_dest->p->i_pitch|
- ((intptr_t)p_line|(intptr_t)p_y))) )
- {
- /* use faster SSE2 aligned fetch and store */
- for( i_y = p_filter->fmt_in.video.i_height ; i_y-- ; )
- {
- p_line -= 2 * p_dest->p->i_pitch;
- for( i_x = p_filter->fmt_in.video.i_width / 16 ; i_x-- ; )
- {
- SSE2_CALL( SSE2_YUV422_UYVY_ALIGNED );
- }
- for( i_x = ( p_filter->fmt_in.video.i_width % 16 ) / 2; i_x-- ; )
- {
- C_YUV422_UYVY( p_line, p_y, p_u, p_v );
- }
- p_y += i_source_margin;
- p_u += i_source_margin_c;
- p_v += i_source_margin_c;
- p_line += i_dest_margin;
- }
- }
- else {
- /* use slower SSE2 unaligned fetch and store */
- for( i_y = p_filter->fmt_in.video.i_height ; i_y-- ; )
- {
- p_line -= 2 * p_dest->p->i_pitch;
- for( i_x = p_filter->fmt_in.video.i_width / 16 ; i_x-- ; )
- {
- SSE2_CALL( SSE2_YUV422_UYVY_UNALIGNED );
- }
- for( i_x = ( p_filter->fmt_in.video.i_width % 16 ) / 2; i_x-- ; )
- {
- C_YUV422_UYVY( p_line, p_y, p_u, p_v );
- }
- p_y += i_source_margin;
- p_u += i_source_margin_c;
- p_v += i_source_margin_c;
- p_line += i_dest_margin;
- }
- }
- SSE2_END;
- #else
- for( i_y = p_filter->fmt_in.video.i_height ; i_y-- ; )
- {
- for( i_x = p_filter->fmt_in.video.i_width / 8 ; i_x-- ; )
- {
- p_line -= 2 * p_dest->p->i_pitch;
- #if defined (MODULE_NAME_IS_i422_yuy2)
- C_YUV422_UYVY( p_line, p_y, p_u, p_v );
- C_YUV422_UYVY( p_line, p_y, p_u, p_v );
- C_YUV422_UYVY( p_line, p_y, p_u, p_v );
- C_YUV422_UYVY( p_line, p_y, p_u, p_v );
- #elif defined (MODULE_NAME_IS_i422_yuy2_mmx)
- MMX_CALL( MMX_YUV422_UYVY );
- #endif
- }
- p_y += i_source_margin;
- p_u += i_source_margin_c;
- p_v += i_source_margin_c;
- p_line += i_dest_margin;
- }
- #if defined (MODULE_NAME_IS_i422_yuy2_mmx)
- MMX_END;
- #elif defined (MODULE_NAME_IS_i422_yuy2_sse2)
- SSE2_END;
- #endif
- #endif
- }
- /*****************************************************************************
- * I422_Y211: planar YUV 4:2:2 to packed YUYV 2:1:1
- *****************************************************************************/
- #if defined (MODULE_NAME_IS_i422_yuy2)
- static void I422_Y211( filter_t *p_filter, picture_t *p_source,
- picture_t *p_dest )
- {
- uint8_t *p_line = p_dest->p->p_pixels + p_dest->p->i_visible_lines * p_dest->p->i_pitch;
- uint8_t *p_y = p_source->Y_PIXELS;
- uint8_t *p_u = p_source->U_PIXELS;
- uint8_t *p_v = p_source->V_PIXELS;
- int i_x, i_y;
- for( i_y = p_filter->fmt_in.video.i_height ; i_y-- ; )
- {
- for( i_x = p_filter->fmt_in.video.i_width / 8 ; i_x-- ; )
- {
- C_YUV422_Y211( p_line, p_y, p_u, p_v );
- C_YUV422_Y211( p_line, p_y, p_u, p_v );
- }
- }
- }
- #endif