X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fvideo_chroma%2Fi420_rgb16.c;h=3f0c6734f5d3a20d09399c397a27a860edc1ce45;hb=5f2b369ce56dd68a3278022bdc3e97518d140a7e;hp=44e7a73a4a340074038289ec38d9b4e3c6424f2d;hpb=a56479498b8b7feeb01d6ad58110c59b7600f99e;p=vlc diff --git a/modules/video_chroma/i420_rgb16.c b/modules/video_chroma/i420_rgb16.c index 44e7a73a4a..3f0c6734f5 100644 --- a/modules/video_chroma/i420_rgb16.c +++ b/modules/video_chroma/i420_rgb16.c @@ -11,7 +11,7 @@ * 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 @@ -26,7 +26,12 @@ * Preamble *****************************************************************************/ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include +#include #include #include "i420_rgb.h" @@ -38,7 +43,7 @@ # include "i420_rgb_mmx.h" #endif -static void SetOffset( int, int, int, int, vlc_bool_t *, +static void SetOffset( int, int, int, int, bool *, unsigned int *, int * ); #if defined (MODULE_NAME_IS_i420_rgb) @@ -52,8 +57,8 @@ static void SetOffset( int, int, int, int, vlc_bool_t *, * - input: 2 lines (2 Y lines, 1 U/V line) * - output: 1 line *****************************************************************************/ -void E_(I420_RGB16_dither)( vout_thread_t *p_vout, picture_t *p_src, - picture_t *p_dest ) +void I420_RGB16_dither( filter_t *p_filter, picture_t *p_src, + picture_t *p_dest ) { /* We got this one from the old arguments */ uint16_t *p_pic = (uint16_t*)p_dest->p->p_pixels; @@ -61,7 +66,7 @@ void E_(I420_RGB16_dither)( vout_thread_t *p_vout, picture_t *p_src, uint8_t *p_u = p_src->U_PIXELS; uint8_t *p_v = p_src->V_PIXELS; - vlc_bool_t b_hscale; /* horizontal scaling type */ + bool b_hscale; /* horizontal scaling type */ unsigned int i_vscale; /* vertical scaling type */ unsigned int i_x, i_y; /* horizontal and vertical indexes */ unsigned int i_real_y; /* y % 4 */ @@ -69,19 +74,19 @@ void E_(I420_RGB16_dither)( vout_thread_t *p_vout, picture_t *p_src, int i_right_margin; int i_rewind; int i_scale_count; /* scale modulo counter */ - int i_chroma_width = p_vout->render.i_width / 2; /* chroma width */ + int i_chroma_width = p_filter->fmt_in.video.i_width / 2; /* chroma width */ uint16_t * p_pic_start; /* beginning of the current line for copy */ int i_uval, i_vval; /* U and V samples */ int i_red, i_green, i_blue; /* U and V modified samples */ - uint16_t * p_yuv = p_vout->chroma.p_sys->p_rgb16; + uint16_t * p_yuv = p_filter->p_sys->p_rgb16; uint16_t * p_ybase; /* Y dependant conversion table */ /* Conversion buffer pointer */ - uint16_t * p_buffer_start = (uint16_t*)p_vout->chroma.p_sys->p_buffer; + uint16_t * p_buffer_start = (uint16_t*)p_filter->p_sys->p_buffer; uint16_t * p_buffer; /* Offset array pointer */ - int * p_offset_start = p_vout->chroma.p_sys->p_offset; + int * p_offset_start = p_filter->p_sys->p_offset; int * p_offset; const int i_source_margin = p_src->p[0].i_pitch @@ -97,17 +102,17 @@ void E_(I420_RGB16_dither)( vout_thread_t *p_vout, picture_t *p_src, for(i_x = 0; i_x < 4; i_x++) { - dither10[i_x] = dither10[i_x] << (SHIFT - 4 + p_vout->output.i_rrshift); - dither11[i_x] = dither11[i_x] << (SHIFT - 4 + p_vout->output.i_rrshift); - dither12[i_x] = dither12[i_x] << (SHIFT - 4 + p_vout->output.i_rrshift); - dither13[i_x] = dither13[i_x] << (SHIFT - 4 + p_vout->output.i_rrshift); + dither10[i_x] = dither10[i_x] << (SHIFT - 4 + p_filter->fmt_out.video.i_rrshift); + dither11[i_x] = dither11[i_x] << (SHIFT - 4 + p_filter->fmt_out.video.i_rrshift); + dither12[i_x] = dither12[i_x] << (SHIFT - 4 + p_filter->fmt_out.video.i_rrshift); + dither13[i_x] = dither13[i_x] << (SHIFT - 4 + p_filter->fmt_out.video.i_rrshift); } i_right_margin = p_dest->p->i_pitch - p_dest->p->i_visible_pitch; - if( p_vout->render.i_width & 7 ) + if( p_filter->fmt_in.video.i_width & 7 ) { - i_rewind = 8 - ( p_vout->render.i_width & 7 ); + i_rewind = 8 - ( p_filter->fmt_in.video.i_width & 7 ); } else { @@ -117,22 +122,25 @@ void E_(I420_RGB16_dither)( vout_thread_t *p_vout, picture_t *p_src, /* Rule: when a picture of size (x1,y1) with aspect ratio r1 is rendered * on a picture of size (x2,y2) with aspect ratio r2, if x1 grows to x1' * then y1 grows to y1' = x1' * y2/x2 * r2/r1 */ - SetOffset( p_vout->render.i_width, p_vout->render.i_height, - p_vout->output.i_width, p_vout->output.i_height, + SetOffset( p_filter->fmt_in.video.i_width, + p_filter->fmt_in.video.i_height, + p_filter->fmt_out.video.i_width, + p_filter->fmt_out.video.i_height, &b_hscale, &i_vscale, p_offset_start ); /* * Perform conversion */ i_scale_count = ( i_vscale == 1 ) ? - p_vout->output.i_height : p_vout->render.i_height; - for( i_y = 0; i_y < p_vout->render.i_height; i_y++ ) + p_filter->fmt_out.video.i_height : + p_filter->fmt_in.video.i_height; + for( i_y = 0; i_y < p_filter->fmt_in.video.i_height; i_y++ ) { i_real_y = i_y & 0x3; p_pic_start = p_pic; p_buffer = b_hscale ? p_buffer_start : p_pic; - for ( i_x = p_vout->render.i_width / 8; i_x--; ) + for ( i_x = p_filter->fmt_in.video.i_width / 8; i_x--; ) { int *p_dither = dither10; CONVERT_YUV_PIXEL_DITHER(2); @@ -203,8 +211,8 @@ void E_(I420_RGB16_dither)( vout_thread_t *p_vout, picture_t *p_src, #if defined (MODULE_NAME_IS_i420_rgb) -void E_(I420_RGB16)( vout_thread_t *p_vout, picture_t *p_src, - picture_t *p_dest ) +void I420_RGB16( filter_t *p_filter, picture_t *p_src, + picture_t *p_dest ) { /* We got this one from the old arguments */ uint16_t *p_pic = (uint16_t*)p_dest->p->p_pixels; @@ -212,26 +220,26 @@ void E_(I420_RGB16)( vout_thread_t *p_vout, picture_t *p_src, uint8_t *p_u = p_src->U_PIXELS; uint8_t *p_v = p_src->V_PIXELS; - vlc_bool_t b_hscale; /* horizontal scaling type */ + bool b_hscale; /* horizontal scaling type */ unsigned int i_vscale; /* vertical scaling type */ unsigned int i_x, i_y; /* horizontal and vertical indexes */ int i_right_margin; int i_rewind; int i_scale_count; /* scale modulo counter */ - int i_chroma_width = p_vout->render.i_width / 2; /* chroma width */ + int i_chroma_width = p_filter->fmt_in.video.i_width / 2; /* chroma width */ uint16_t * p_pic_start; /* beginning of the current line for copy */ int i_uval, i_vval; /* U and V samples */ int i_red, i_green, i_blue; /* U and V modified samples */ - uint16_t * p_yuv = p_vout->chroma.p_sys->p_rgb16; + uint16_t * p_yuv = p_filter->p_sys->p_rgb16; uint16_t * p_ybase; /* Y dependant conversion table */ /* Conversion buffer pointer */ - uint16_t * p_buffer_start = (uint16_t*)p_vout->chroma.p_sys->p_buffer; + uint16_t * p_buffer_start = (uint16_t*)p_filter->p_sys->p_buffer; uint16_t * p_buffer; /* Offset array pointer */ - int * p_offset_start = p_vout->chroma.p_sys->p_offset; + int * p_offset_start = p_filter->p_sys->p_offset; int * p_offset; const int i_source_margin = p_src->p[0].i_pitch @@ -241,9 +249,9 @@ void E_(I420_RGB16)( vout_thread_t *p_vout, picture_t *p_src, i_right_margin = p_dest->p->i_pitch - p_dest->p->i_visible_pitch; - if( p_vout->render.i_width & 7 ) + if( p_filter->fmt_in.video.i_width & 7 ) { - i_rewind = 8 - ( p_vout->render.i_width & 7 ); + i_rewind = 8 - ( p_filter->fmt_in.video.i_width & 7 ); } else { @@ -253,21 +261,24 @@ void E_(I420_RGB16)( vout_thread_t *p_vout, picture_t *p_src, /* Rule: when a picture of size (x1,y1) with aspect ratio r1 is rendered * on a picture of size (x2,y2) with aspect ratio r2, if x1 grows to x1' * then y1 grows to y1' = x1' * y2/x2 * r2/r1 */ - SetOffset( p_vout->render.i_width, p_vout->render.i_height, - p_vout->output.i_width, p_vout->output.i_height, + SetOffset( p_filter->fmt_in.video.i_width, + p_filter->fmt_in.video.i_height, + p_filter->fmt_out.video.i_width, + p_filter->fmt_out.video.i_height, &b_hscale, &i_vscale, p_offset_start ); /* * Perform conversion */ i_scale_count = ( i_vscale == 1 ) ? - p_vout->output.i_height : p_vout->render.i_height; - for( i_y = 0; i_y < p_vout->render.i_height; i_y++ ) + p_filter->fmt_out.video.i_height : + p_filter->fmt_in.video.i_height; + for( i_y = 0; i_y < p_filter->fmt_in.video.i_height; i_y++ ) { p_pic_start = p_pic; p_buffer = b_hscale ? p_buffer_start : p_pic; - for ( i_x = p_vout->render.i_width / 8; i_x--; ) + for ( i_x = p_filter->fmt_in.video.i_width / 8; i_x--; ) { CONVERT_YUV_PIXEL(2); CONVERT_Y_PIXEL(2); CONVERT_YUV_PIXEL(2); CONVERT_Y_PIXEL(2); @@ -303,8 +314,8 @@ void E_(I420_RGB16)( vout_thread_t *p_vout, picture_t *p_src, #else // ! defined (MODULE_NAME_IS_i420_rgb) -void E_(I420_R5G5B5)( vout_thread_t *p_vout, picture_t *p_src, - picture_t *p_dest ) +void I420_R5G5B5( filter_t *p_filter, picture_t *p_src, + picture_t *p_dest ) { /* We got this one from the old arguments */ uint16_t *p_pic = (uint16_t*)p_dest->p->p_pixels; @@ -312,22 +323,22 @@ void E_(I420_R5G5B5)( vout_thread_t *p_vout, picture_t *p_src, uint8_t *p_u = p_src->U_PIXELS; uint8_t *p_v = p_src->V_PIXELS; - vlc_bool_t b_hscale; /* horizontal scaling type */ + bool b_hscale; /* horizontal scaling type */ unsigned int i_vscale; /* vertical scaling type */ unsigned int i_x, i_y; /* horizontal and vertical indexes */ int i_right_margin; int i_rewind; int i_scale_count; /* scale modulo counter */ - int i_chroma_width = p_vout->render.i_width / 2; /* chroma width */ + int i_chroma_width = p_filter->fmt_in.video.i_width / 2; /* chroma width */ uint16_t * p_pic_start; /* beginning of the current line for copy */ /* Conversion buffer pointer */ - uint16_t * p_buffer_start = (uint16_t*)p_vout->chroma.p_sys->p_buffer; + uint16_t * p_buffer_start = (uint16_t*)p_filter->p_sys->p_buffer; uint16_t * p_buffer; /* Offset array pointer */ - int * p_offset_start = p_vout->chroma.p_sys->p_offset; + int * p_offset_start = p_filter->p_sys->p_offset; int * p_offset; const int i_source_margin = p_src->p[0].i_pitch @@ -340,8 +351,10 @@ void E_(I420_R5G5B5)( vout_thread_t *p_vout, picture_t *p_src, /* Rule: when a picture of size (x1,y1) with aspect ratio r1 is rendered * on a picture of size (x2,y2) with aspect ratio r2, if x1 grows to x1' * then y1 grows to y1' = x1' * y2/x2 * r2/r1 */ - SetOffset( p_vout->render.i_width, p_vout->render.i_height, - p_vout->output.i_width, p_vout->output.i_height, + SetOffset( p_filter->fmt_in.video.i_width, + p_filter->fmt_in.video.i_height, + p_filter->fmt_out.video.i_width, + p_filter->fmt_out.video.i_height, &b_hscale, &i_vscale, p_offset_start ); @@ -349,13 +362,14 @@ void E_(I420_R5G5B5)( vout_thread_t *p_vout, picture_t *p_src, * Perform conversion */ i_scale_count = ( i_vscale == 1 ) ? - p_vout->output.i_height : p_vout->render.i_height; + p_filter->fmt_out.video.i_height : + p_filter->fmt_in.video.i_height; #if defined (MODULE_NAME_IS_i420_rgb_sse2) - if( p_vout->render.i_width & 15 ) + if( p_filter->fmt_in.video.i_width & 15 ) { - i_rewind = 16 - ( p_vout->render.i_width & 15 ); + i_rewind = 16 - ( p_filter->fmt_in.video.i_width & 15 ); } else { @@ -363,7 +377,7 @@ void E_(I420_R5G5B5)( vout_thread_t *p_vout, picture_t *p_src, } /* - ** SSE2 128 bits fetch/store instructions are faster + ** SSE2 128 bits fetch/store instructions are faster ** if memory access is 16 bytes aligned */ @@ -374,11 +388,11 @@ void E_(I420_R5G5B5)( vout_thread_t *p_vout, picture_t *p_src, ((intptr_t)p_buffer))) ) { /* use faster SSE2 aligned fetch and store */ - for( i_y = 0; i_y < p_vout->render.i_height; i_y++ ) + for( i_y = 0; i_y < p_filter->fmt_in.video.i_height; i_y++ ) { p_pic_start = p_pic; - for ( i_x = p_vout->render.i_width/16; i_x--; ) + for ( i_x = p_filter->fmt_in.video.i_width/16; i_x--; ) { SSE2_CALL ( SSE2_INIT_16_ALIGNED @@ -425,12 +439,12 @@ void E_(I420_R5G5B5)( vout_thread_t *p_vout, picture_t *p_src, else { /* use slower SSE2 unaligned fetch and store */ - for( i_y = 0; i_y < p_vout->render.i_height; i_y++ ) + for( i_y = 0; i_y < p_filter->fmt_in.video.i_height; i_y++ ) { p_pic_start = p_pic; p_buffer = b_hscale ? p_buffer_start : p_pic; - for ( i_x = p_vout->render.i_width/16; i_x--; ) + for ( i_x = p_filter->fmt_in.video.i_width/16; i_x--; ) { SSE2_CALL ( SSE2_INIT_16_UNALIGNED @@ -480,21 +494,21 @@ void E_(I420_R5G5B5)( vout_thread_t *p_vout, picture_t *p_src, #else // defined (MODULE_NAME_IS_i420_rgb_mmx) - if( p_vout->render.i_width & 7 ) + if( p_filter->fmt_in.video.i_width & 7 ) { - i_rewind = 8 - ( p_vout->render.i_width & 7 ); + i_rewind = 8 - ( p_filter->fmt_in.video.i_width & 7 ); } else { i_rewind = 0; } - for( i_y = 0; i_y < p_vout->render.i_height; i_y++ ) + for( i_y = 0; i_y < p_filter->fmt_in.video.i_height; i_y++ ) { p_pic_start = p_pic; p_buffer = b_hscale ? p_buffer_start : p_pic; - for ( i_x = p_vout->render.i_width / 8; i_x--; ) + for ( i_x = p_filter->fmt_in.video.i_width / 8; i_x--; ) { MMX_CALL ( MMX_INIT_16 @@ -544,8 +558,8 @@ void E_(I420_R5G5B5)( vout_thread_t *p_vout, picture_t *p_src, #endif } -void E_(I420_R5G6B5)( vout_thread_t *p_vout, picture_t *p_src, - picture_t *p_dest ) +void I420_R5G6B5( filter_t *p_filter, picture_t *p_src, + picture_t *p_dest ) { /* We got this one from the old arguments */ uint16_t *p_pic = (uint16_t*)p_dest->p->p_pixels; @@ -553,22 +567,22 @@ void E_(I420_R5G6B5)( vout_thread_t *p_vout, picture_t *p_src, uint8_t *p_u = p_src->U_PIXELS; uint8_t *p_v = p_src->V_PIXELS; - vlc_bool_t b_hscale; /* horizontal scaling type */ + bool b_hscale; /* horizontal scaling type */ unsigned int i_vscale; /* vertical scaling type */ unsigned int i_x, i_y; /* horizontal and vertical indexes */ int i_right_margin; int i_rewind; int i_scale_count; /* scale modulo counter */ - int i_chroma_width = p_vout->render.i_width / 2; /* chroma width */ + int i_chroma_width = p_filter->fmt_in.video.i_width / 2; /* chroma width */ uint16_t * p_pic_start; /* beginning of the current line for copy */ /* Conversion buffer pointer */ - uint16_t * p_buffer_start = (uint16_t*)p_vout->chroma.p_sys->p_buffer; + uint16_t * p_buffer_start = (uint16_t*)p_filter->p_sys->p_buffer; uint16_t * p_buffer; /* Offset array pointer */ - int * p_offset_start = p_vout->chroma.p_sys->p_offset; + int * p_offset_start = p_filter->p_sys->p_offset; int * p_offset; const int i_source_margin = p_src->p[0].i_pitch @@ -581,8 +595,10 @@ void E_(I420_R5G6B5)( vout_thread_t *p_vout, picture_t *p_src, /* Rule: when a picture of size (x1,y1) with aspect ratio r1 is rendered * on a picture of size (x2,y2) with aspect ratio r2, if x1 grows to x1' * then y1 grows to y1' = x1' * y2/x2 * r2/r1 */ - SetOffset( p_vout->render.i_width, p_vout->render.i_height, - p_vout->output.i_width, p_vout->output.i_height, + SetOffset( p_filter->fmt_in.video.i_width, + p_filter->fmt_in.video.i_height, + p_filter->fmt_out.video.i_width, + p_filter->fmt_out.video.i_height, &b_hscale, &i_vscale, p_offset_start ); @@ -590,13 +606,14 @@ void E_(I420_R5G6B5)( vout_thread_t *p_vout, picture_t *p_src, * Perform conversion */ i_scale_count = ( i_vscale == 1 ) ? - p_vout->output.i_height : p_vout->render.i_height; + p_filter->fmt_out.video.i_height : + p_filter->fmt_in.video.i_height; #if defined (MODULE_NAME_IS_i420_rgb_sse2) - if( p_vout->render.i_width & 15 ) + if( p_filter->fmt_in.video.i_width & 15 ) { - i_rewind = 16 - ( p_vout->render.i_width & 15 ); + i_rewind = 16 - ( p_filter->fmt_in.video.i_width & 15 ); } else { @@ -604,7 +621,7 @@ void E_(I420_R5G6B5)( vout_thread_t *p_vout, picture_t *p_src, } /* - ** SSE2 128 bits fetch/store instructions are faster + ** SSE2 128 bits fetch/store instructions are faster ** if memory access is 16 bytes aligned */ @@ -615,11 +632,11 @@ void E_(I420_R5G6B5)( vout_thread_t *p_vout, picture_t *p_src, ((intptr_t)p_buffer))) ) { /* use faster SSE2 aligned fetch and store */ - for( i_y = 0; i_y < p_vout->render.i_height; i_y++ ) + for( i_y = 0; i_y < p_filter->fmt_in.video.i_height; i_y++ ) { p_pic_start = p_pic; - for ( i_x = p_vout->render.i_width/16; i_x--; ) + for ( i_x = p_filter->fmt_in.video.i_width/16; i_x--; ) { SSE2_CALL ( SSE2_INIT_16_ALIGNED @@ -666,12 +683,12 @@ void E_(I420_R5G6B5)( vout_thread_t *p_vout, picture_t *p_src, else { /* use slower SSE2 unaligned fetch and store */ - for( i_y = 0; i_y < p_vout->render.i_height; i_y++ ) + for( i_y = 0; i_y < p_filter->fmt_in.video.i_height; i_y++ ) { p_pic_start = p_pic; p_buffer = b_hscale ? p_buffer_start : p_pic; - for ( i_x = p_vout->render.i_width/16; i_x--; ) + for ( i_x = p_filter->fmt_in.video.i_width/16; i_x--; ) { SSE2_CALL( SSE2_INIT_16_UNALIGNED @@ -721,21 +738,21 @@ void E_(I420_R5G6B5)( vout_thread_t *p_vout, picture_t *p_src, #else // defined (MODULE_NAME_IS_i420_rgb_mmx) - if( p_vout->render.i_width & 7 ) + if( p_filter->fmt_in.video.i_width & 7 ) { - i_rewind = 8 - ( p_vout->render.i_width & 7 ); + i_rewind = 8 - ( p_filter->fmt_in.video.i_width & 7 ); } else { i_rewind = 0; } - for( i_y = 0; i_y < p_vout->render.i_height; i_y++ ) + for( i_y = 0; i_y < p_filter->fmt_in.video.i_height; i_y++ ) { p_pic_start = p_pic; p_buffer = b_hscale ? p_buffer_start : p_pic; - for ( i_x = p_vout->render.i_width / 8; i_x--; ) + for ( i_x = p_filter->fmt_in.video.i_width / 8; i_x--; ) { MMX_CALL ( MMX_INIT_16 @@ -800,8 +817,8 @@ void E_(I420_R5G6B5)( vout_thread_t *p_vout, picture_t *p_src, #if defined (MODULE_NAME_IS_i420_rgb) -void E_(I420_RGB32)( vout_thread_t *p_vout, picture_t *p_src, - picture_t *p_dest ) +void I420_RGB32( filter_t *p_filter, picture_t *p_src, + picture_t *p_dest ) { /* We got this one from the old arguments */ uint32_t *p_pic = (uint32_t*)p_dest->p->p_pixels; @@ -809,26 +826,26 @@ void E_(I420_RGB32)( vout_thread_t *p_vout, picture_t *p_src, uint8_t *p_u = p_src->U_PIXELS; uint8_t *p_v = p_src->V_PIXELS; - vlc_bool_t b_hscale; /* horizontal scaling type */ + bool b_hscale; /* horizontal scaling type */ unsigned int i_vscale; /* vertical scaling type */ unsigned int i_x, i_y; /* horizontal and vertical indexes */ int i_right_margin; int i_rewind; int i_scale_count; /* scale modulo counter */ - int i_chroma_width = p_vout->render.i_width / 2; /* chroma width */ + int i_chroma_width = p_filter->fmt_in.video.i_width / 2; /* chroma width */ uint32_t * p_pic_start; /* beginning of the current line for copy */ int i_uval, i_vval; /* U and V samples */ int i_red, i_green, i_blue; /* U and V modified samples */ - uint32_t * p_yuv = p_vout->chroma.p_sys->p_rgb32; + uint32_t * p_yuv = p_filter->p_sys->p_rgb32; uint32_t * p_ybase; /* Y dependant conversion table */ /* Conversion buffer pointer */ - uint32_t * p_buffer_start = (uint32_t*)p_vout->chroma.p_sys->p_buffer; + uint32_t * p_buffer_start = (uint32_t*)p_filter->p_sys->p_buffer; uint32_t * p_buffer; /* Offset array pointer */ - int * p_offset_start = p_vout->chroma.p_sys->p_offset; + int * p_offset_start = p_filter->p_sys->p_offset; int * p_offset; const int i_source_margin = p_src->p[0].i_pitch @@ -838,9 +855,9 @@ void E_(I420_RGB32)( vout_thread_t *p_vout, picture_t *p_src, i_right_margin = p_dest->p->i_pitch - p_dest->p->i_visible_pitch; - if( p_vout->render.i_width & 7 ) + if( p_filter->fmt_in.video.i_width & 7 ) { - i_rewind = 8 - ( p_vout->render.i_width & 7 ); + i_rewind = 8 - ( p_filter->fmt_in.video.i_width & 7 ); } else { @@ -850,21 +867,24 @@ void E_(I420_RGB32)( vout_thread_t *p_vout, picture_t *p_src, /* Rule: when a picture of size (x1,y1) with aspect ratio r1 is rendered * on a picture of size (x2,y2) with aspect ratio r2, if x1 grows to x1' * then y1 grows to y1' = x1' * y2/x2 * r2/r1 */ - SetOffset( p_vout->render.i_width, p_vout->render.i_height, - p_vout->output.i_width, p_vout->output.i_height, + SetOffset( p_filter->fmt_in.video.i_width, + p_filter->fmt_in.video.i_height, + p_filter->fmt_out.video.i_width, + p_filter->fmt_out.video.i_height, &b_hscale, &i_vscale, p_offset_start ); /* * Perform conversion */ i_scale_count = ( i_vscale == 1 ) ? - p_vout->output.i_height : p_vout->render.i_height; - for( i_y = 0; i_y < p_vout->render.i_height; i_y++ ) + p_filter->fmt_out.video.i_height : + p_filter->fmt_in.video.i_height; + for( i_y = 0; i_y < p_filter->fmt_in.video.i_height; i_y++ ) { p_pic_start = p_pic; p_buffer = b_hscale ? p_buffer_start : p_pic; - for ( i_x = p_vout->render.i_width / 8; i_x--; ) + for ( i_x = p_filter->fmt_in.video.i_width / 8; i_x--; ) { CONVERT_YUV_PIXEL(4); CONVERT_Y_PIXEL(4); CONVERT_YUV_PIXEL(4); CONVERT_Y_PIXEL(4); @@ -899,7 +919,7 @@ void E_(I420_RGB32)( vout_thread_t *p_vout, picture_t *p_src, #else // defined (MODULE_NAME_IS_i420_rgb_mmx) || defined (MODULE_NAME_IS_i420_rgb_sse2) -void E_(I420_A8R8G8B8)( vout_thread_t *p_vout, picture_t *p_src, +void I420_A8R8G8B8( filter_t *p_filter, picture_t *p_src, picture_t *p_dest ) { /* We got this one from the old arguments */ @@ -908,21 +928,21 @@ void E_(I420_A8R8G8B8)( vout_thread_t *p_vout, picture_t *p_src, uint8_t *p_u = p_src->U_PIXELS; uint8_t *p_v = p_src->V_PIXELS; - vlc_bool_t b_hscale; /* horizontal scaling type */ + bool b_hscale; /* horizontal scaling type */ unsigned int i_vscale; /* vertical scaling type */ unsigned int i_x, i_y; /* horizontal and vertical indexes */ int i_right_margin; int i_rewind; int i_scale_count; /* scale modulo counter */ - int i_chroma_width = p_vout->render.i_width / 2; /* chroma width */ + int i_chroma_width = p_filter->fmt_in.video.i_width / 2; /* chroma width */ uint32_t * p_pic_start; /* beginning of the current line for copy */ /* Conversion buffer pointer */ - uint32_t * p_buffer_start = (uint32_t*)p_vout->chroma.p_sys->p_buffer; + uint32_t * p_buffer_start = (uint32_t*)p_filter->p_sys->p_buffer; uint32_t * p_buffer; /* Offset array pointer */ - int * p_offset_start = p_vout->chroma.p_sys->p_offset; + int * p_offset_start = p_filter->p_sys->p_offset; int * p_offset; const int i_source_margin = p_src->p[0].i_pitch @@ -935,21 +955,24 @@ void E_(I420_A8R8G8B8)( vout_thread_t *p_vout, picture_t *p_src, /* Rule: when a picture of size (x1,y1) with aspect ratio r1 is rendered * on a picture of size (x2,y2) with aspect ratio r2, if x1 grows to x1' * then y1 grows to y1' = x1' * y2/x2 * r2/r1 */ - SetOffset( p_vout->render.i_width, p_vout->render.i_height, - p_vout->output.i_width, p_vout->output.i_height, + SetOffset( p_filter->fmt_in.video.i_width, + p_filter->fmt_in.video.i_height, + p_filter->fmt_out.video.i_width, + p_filter->fmt_out.video.i_height, &b_hscale, &i_vscale, p_offset_start ); /* * Perform conversion */ i_scale_count = ( i_vscale == 1 ) ? - p_vout->output.i_height : p_vout->render.i_height; + p_filter->fmt_out.video.i_height : + p_filter->fmt_in.video.i_height; #if defined (MODULE_NAME_IS_i420_rgb_sse2) - if( p_vout->render.i_width & 15 ) + if( p_filter->fmt_in.video.i_width & 15 ) { - i_rewind = 16 - ( p_vout->render.i_width & 15 ); + i_rewind = 16 - ( p_filter->fmt_in.video.i_width & 15 ); } else { @@ -957,7 +980,7 @@ void E_(I420_A8R8G8B8)( vout_thread_t *p_vout, picture_t *p_src, } /* - ** SSE2 128 bits fetch/store instructions are faster + ** SSE2 128 bits fetch/store instructions are faster ** if memory access is 16 bytes aligned */ @@ -968,11 +991,11 @@ void E_(I420_A8R8G8B8)( vout_thread_t *p_vout, picture_t *p_src, ((intptr_t)p_buffer))) ) { /* use faster SSE2 aligned fetch and store */ - for( i_y = 0; i_y < p_vout->render.i_height; i_y++ ) + for( i_y = 0; i_y < p_filter->fmt_in.video.i_height; i_y++ ) { p_pic_start = p_pic; - for ( i_x = p_vout->render.i_width / 16; i_x--; ) + for ( i_x = p_filter->fmt_in.video.i_width / 16; i_x--; ) { SSE2_CALL ( SSE2_INIT_32_ALIGNED @@ -1019,12 +1042,12 @@ void E_(I420_A8R8G8B8)( vout_thread_t *p_vout, picture_t *p_src, else { /* use slower SSE2 unaligned fetch and store */ - for( i_y = 0; i_y < p_vout->render.i_height; i_y++ ) + for( i_y = 0; i_y < p_filter->fmt_in.video.i_height; i_y++ ) { p_pic_start = p_pic; p_buffer = b_hscale ? p_buffer_start : p_pic; - for ( i_x = p_vout->render.i_width / 16; i_x--; ) + for ( i_x = p_filter->fmt_in.video.i_width / 16; i_x--; ) { SSE2_CALL ( SSE2_INIT_32_UNALIGNED @@ -1074,21 +1097,21 @@ void E_(I420_A8R8G8B8)( vout_thread_t *p_vout, picture_t *p_src, #else // defined (MODULE_NAME_IS_i420_rgb_mmx) - if( p_vout->render.i_width & 7 ) + if( p_filter->fmt_in.video.i_width & 7 ) { - i_rewind = 8 - ( p_vout->render.i_width & 7 ); + i_rewind = 8 - ( p_filter->fmt_in.video.i_width & 7 ); } else { i_rewind = 0; } - for( i_y = 0; i_y < p_vout->render.i_height; i_y++ ) + for( i_y = 0; i_y < p_filter->fmt_in.video.i_height; i_y++ ) { p_pic_start = p_pic; p_buffer = b_hscale ? p_buffer_start : p_pic; - for ( i_x = p_vout->render.i_width / 8; i_x--; ) + for ( i_x = p_filter->fmt_in.video.i_width / 8; i_x--; ) { MMX_CALL ( MMX_INIT_32 @@ -1138,7 +1161,7 @@ void E_(I420_A8R8G8B8)( vout_thread_t *p_vout, picture_t *p_src, #endif } -void E_(I420_R8G8B8A8)( vout_thread_t *p_vout, picture_t *p_src, +void I420_R8G8B8A8( filter_t *p_filter, picture_t *p_src, picture_t *p_dest ) { /* We got this one from the old arguments */ @@ -1147,21 +1170,21 @@ void E_(I420_R8G8B8A8)( vout_thread_t *p_vout, picture_t *p_src, uint8_t *p_u = p_src->U_PIXELS; uint8_t *p_v = p_src->V_PIXELS; - vlc_bool_t b_hscale; /* horizontal scaling type */ + bool b_hscale; /* horizontal scaling type */ unsigned int i_vscale; /* vertical scaling type */ unsigned int i_x, i_y; /* horizontal and vertical indexes */ int i_right_margin; int i_rewind; int i_scale_count; /* scale modulo counter */ - int i_chroma_width = p_vout->render.i_width / 2; /* chroma width */ + int i_chroma_width = p_filter->fmt_in.video.i_width / 2; /* chroma width */ uint32_t * p_pic_start; /* beginning of the current line for copy */ /* Conversion buffer pointer */ - uint32_t * p_buffer_start = (uint32_t*)p_vout->chroma.p_sys->p_buffer; + uint32_t * p_buffer_start = (uint32_t*)p_filter->p_sys->p_buffer; uint32_t * p_buffer; /* Offset array pointer */ - int * p_offset_start = p_vout->chroma.p_sys->p_offset; + int * p_offset_start = p_filter->p_sys->p_offset; int * p_offset; const int i_source_margin = p_src->p[0].i_pitch @@ -1174,21 +1197,24 @@ void E_(I420_R8G8B8A8)( vout_thread_t *p_vout, picture_t *p_src, /* Rule: when a picture of size (x1,y1) with aspect ratio r1 is rendered * on a picture of size (x2,y2) with aspect ratio r2, if x1 grows to x1' * then y1 grows to y1' = x1' * y2/x2 * r2/r1 */ - SetOffset( p_vout->render.i_width, p_vout->render.i_height, - p_vout->output.i_width, p_vout->output.i_height, + SetOffset( p_filter->fmt_in.video.i_width, + p_filter->fmt_in.video.i_height, + p_filter->fmt_out.video.i_width, + p_filter->fmt_out.video.i_height, &b_hscale, &i_vscale, p_offset_start ); /* * Perform conversion */ i_scale_count = ( i_vscale == 1 ) ? - p_vout->output.i_height : p_vout->render.i_height; + p_filter->fmt_out.video.i_height : + p_filter->fmt_in.video.i_height; #if defined (MODULE_NAME_IS_i420_rgb_sse2) - if( p_vout->render.i_width & 15 ) + if( p_filter->fmt_in.video.i_width & 15 ) { - i_rewind = 16 - ( p_vout->render.i_width & 15 ); + i_rewind = 16 - ( p_filter->fmt_in.video.i_width & 15 ); } else { @@ -1196,7 +1222,7 @@ void E_(I420_R8G8B8A8)( vout_thread_t *p_vout, picture_t *p_src, } /* - ** SSE2 128 bits fetch/store instructions are faster + ** SSE2 128 bits fetch/store instructions are faster ** if memory access is 16 bytes aligned */ @@ -1207,11 +1233,11 @@ void E_(I420_R8G8B8A8)( vout_thread_t *p_vout, picture_t *p_src, ((intptr_t)p_buffer))) ) { /* use faster SSE2 aligned fetch and store */ - for( i_y = 0; i_y < p_vout->render.i_height; i_y++ ) + for( i_y = 0; i_y < p_filter->fmt_in.video.i_height; i_y++ ) { p_pic_start = p_pic; - for ( i_x = p_vout->render.i_width / 16; i_x--; ) + for ( i_x = p_filter->fmt_in.video.i_width / 16; i_x--; ) { SSE2_CALL ( SSE2_INIT_32_ALIGNED @@ -1258,12 +1284,12 @@ void E_(I420_R8G8B8A8)( vout_thread_t *p_vout, picture_t *p_src, else { /* use slower SSE2 unaligned fetch and store */ - for( i_y = 0; i_y < p_vout->render.i_height; i_y++ ) + for( i_y = 0; i_y < p_filter->fmt_in.video.i_height; i_y++ ) { p_pic_start = p_pic; p_buffer = b_hscale ? p_buffer_start : p_pic; - for ( i_x = p_vout->render.i_width / 16; i_x--; ) + for ( i_x = p_filter->fmt_in.video.i_width / 16; i_x--; ) { SSE2_CALL ( SSE2_INIT_32_UNALIGNED @@ -1313,21 +1339,21 @@ void E_(I420_R8G8B8A8)( vout_thread_t *p_vout, picture_t *p_src, #else // defined (MODULE_NAME_IS_i420_rgb_mmx) - if( p_vout->render.i_width & 7 ) + if( p_filter->fmt_in.video.i_width & 7 ) { - i_rewind = 8 - ( p_vout->render.i_width & 7 ); + i_rewind = 8 - ( p_filter->fmt_in.video.i_width & 7 ); } else { i_rewind = 0; } - for( i_y = 0; i_y < p_vout->render.i_height; i_y++ ) + for( i_y = 0; i_y < p_filter->fmt_in.video.i_height; i_y++ ) { p_pic_start = p_pic; p_buffer = b_hscale ? p_buffer_start : p_pic; - for ( i_x = p_vout->render.i_width / 8; i_x--; ) + for ( i_x = p_filter->fmt_in.video.i_width / 8; i_x--; ) { MMX_CALL ( MMX_INIT_32 @@ -1377,7 +1403,7 @@ void E_(I420_R8G8B8A8)( vout_thread_t *p_vout, picture_t *p_src, #endif } -void E_(I420_B8G8R8A8)( vout_thread_t *p_vout, picture_t *p_src, +void I420_B8G8R8A8( filter_t *p_filter, picture_t *p_src, picture_t *p_dest ) { /* We got this one from the old arguments */ @@ -1386,21 +1412,21 @@ void E_(I420_B8G8R8A8)( vout_thread_t *p_vout, picture_t *p_src, uint8_t *p_u = p_src->U_PIXELS; uint8_t *p_v = p_src->V_PIXELS; - vlc_bool_t b_hscale; /* horizontal scaling type */ + bool b_hscale; /* horizontal scaling type */ unsigned int i_vscale; /* vertical scaling type */ unsigned int i_x, i_y; /* horizontal and vertical indexes */ int i_right_margin; int i_rewind; int i_scale_count; /* scale modulo counter */ - int i_chroma_width = p_vout->render.i_width / 2; /* chroma width */ + int i_chroma_width = p_filter->fmt_in.video.i_width / 2; /* chroma width */ uint32_t * p_pic_start; /* beginning of the current line for copy */ /* Conversion buffer pointer */ - uint32_t * p_buffer_start = (uint32_t*)p_vout->chroma.p_sys->p_buffer; + uint32_t * p_buffer_start = (uint32_t*)p_filter->p_sys->p_buffer; uint32_t * p_buffer; /* Offset array pointer */ - int * p_offset_start = p_vout->chroma.p_sys->p_offset; + int * p_offset_start = p_filter->p_sys->p_offset; int * p_offset; const int i_source_margin = p_src->p[0].i_pitch @@ -1413,21 +1439,24 @@ void E_(I420_B8G8R8A8)( vout_thread_t *p_vout, picture_t *p_src, /* Rule: when a picture of size (x1,y1) with aspect ratio r1 is rendered * on a picture of size (x2,y2) with aspect ratio r2, if x1 grows to x1' * then y1 grows to y1' = x1' * y2/x2 * r2/r1 */ - SetOffset( p_vout->render.i_width, p_vout->render.i_height, - p_vout->output.i_width, p_vout->output.i_height, + SetOffset( p_filter->fmt_in.video.i_width, + p_filter->fmt_in.video.i_height, + p_filter->fmt_out.video.i_width, + p_filter->fmt_out.video.i_height, &b_hscale, &i_vscale, p_offset_start ); /* * Perform conversion */ i_scale_count = ( i_vscale == 1 ) ? - p_vout->output.i_height : p_vout->render.i_height; + p_filter->fmt_out.video.i_height : + p_filter->fmt_in.video.i_height; #if defined (MODULE_NAME_IS_i420_rgb_sse2) - if( p_vout->render.i_width & 15 ) + if( p_filter->fmt_in.video.i_width & 15 ) { - i_rewind = 16 - ( p_vout->render.i_width & 15 ); + i_rewind = 16 - ( p_filter->fmt_in.video.i_width & 15 ); } else { @@ -1435,7 +1464,7 @@ void E_(I420_B8G8R8A8)( vout_thread_t *p_vout, picture_t *p_src, } /* - ** SSE2 128 bits fetch/store instructions are faster + ** SSE2 128 bits fetch/store instructions are faster ** if memory access is 16 bytes aligned */ @@ -1446,11 +1475,11 @@ void E_(I420_B8G8R8A8)( vout_thread_t *p_vout, picture_t *p_src, ((intptr_t)p_buffer))) ) { /* use faster SSE2 aligned fetch and store */ - for( i_y = 0; i_y < p_vout->render.i_height; i_y++ ) + for( i_y = 0; i_y < p_filter->fmt_in.video.i_height; i_y++ ) { p_pic_start = p_pic; - for ( i_x = p_vout->render.i_width / 16; i_x--; ) + for ( i_x = p_filter->fmt_in.video.i_width / 16; i_x--; ) { SSE2_CALL ( SSE2_INIT_32_ALIGNED @@ -1497,12 +1526,12 @@ void E_(I420_B8G8R8A8)( vout_thread_t *p_vout, picture_t *p_src, else { /* use slower SSE2 unaligned fetch and store */ - for( i_y = 0; i_y < p_vout->render.i_height; i_y++ ) + for( i_y = 0; i_y < p_filter->fmt_in.video.i_height; i_y++ ) { p_pic_start = p_pic; p_buffer = b_hscale ? p_buffer_start : p_pic; - for ( i_x = p_vout->render.i_width / 16; i_x--; ) + for ( i_x = p_filter->fmt_in.video.i_width / 16; i_x--; ) { SSE2_CALL ( SSE2_INIT_32_UNALIGNED @@ -1549,21 +1578,21 @@ void E_(I420_B8G8R8A8)( vout_thread_t *p_vout, picture_t *p_src, #else - if( p_vout->render.i_width & 7 ) + if( p_filter->fmt_in.video.i_width & 7 ) { - i_rewind = 8 - ( p_vout->render.i_width & 7 ); + i_rewind = 8 - ( p_filter->fmt_in.video.i_width & 7 ); } else { i_rewind = 0; } - for( i_y = 0; i_y < p_vout->render.i_height; i_y++ ) + for( i_y = 0; i_y < p_filter->fmt_in.video.i_height; i_y++ ) { p_pic_start = p_pic; p_buffer = b_hscale ? p_buffer_start : p_pic; - for ( i_x = p_vout->render.i_width / 8; i_x--; ) + for ( i_x = p_filter->fmt_in.video.i_width / 8; i_x--; ) { MMX_CALL ( MMX_INIT_32 @@ -1613,7 +1642,7 @@ void E_(I420_B8G8R8A8)( vout_thread_t *p_vout, picture_t *p_src, #endif } -void E_(I420_A8B8G8R8)( vout_thread_t *p_vout, picture_t *p_src, +void I420_A8B8G8R8( filter_t *p_filter, picture_t *p_src, picture_t *p_dest ) { /* We got this one from the old arguments */ @@ -1622,21 +1651,21 @@ void E_(I420_A8B8G8R8)( vout_thread_t *p_vout, picture_t *p_src, uint8_t *p_u = p_src->U_PIXELS; uint8_t *p_v = p_src->V_PIXELS; - vlc_bool_t b_hscale; /* horizontal scaling type */ + bool b_hscale; /* horizontal scaling type */ unsigned int i_vscale; /* vertical scaling type */ unsigned int i_x, i_y; /* horizontal and vertical indexes */ int i_right_margin; int i_rewind; int i_scale_count; /* scale modulo counter */ - int i_chroma_width = p_vout->render.i_width / 2; /* chroma width */ + int i_chroma_width = p_filter->fmt_in.video.i_width / 2; /* chroma width */ uint32_t * p_pic_start; /* beginning of the current line for copy */ /* Conversion buffer pointer */ - uint32_t * p_buffer_start = (uint32_t*)p_vout->chroma.p_sys->p_buffer; + uint32_t * p_buffer_start = (uint32_t*)p_filter->p_sys->p_buffer; uint32_t * p_buffer; /* Offset array pointer */ - int * p_offset_start = p_vout->chroma.p_sys->p_offset; + int * p_offset_start = p_filter->p_sys->p_offset; int * p_offset; const int i_source_margin = p_src->p[0].i_pitch @@ -1649,21 +1678,24 @@ void E_(I420_A8B8G8R8)( vout_thread_t *p_vout, picture_t *p_src, /* Rule: when a picture of size (x1,y1) with aspect ratio r1 is rendered * on a picture of size (x2,y2) with aspect ratio r2, if x1 grows to x1' * then y1 grows to y1' = x1' * y2/x2 * r2/r1 */ - SetOffset( p_vout->render.i_width, p_vout->render.i_height, - p_vout->output.i_width, p_vout->output.i_height, + SetOffset( p_filter->fmt_in.video.i_width, + p_filter->fmt_in.video.i_height, + p_filter->fmt_out.video.i_width, + p_filter->fmt_out.video.i_height, &b_hscale, &i_vscale, p_offset_start ); /* * Perform conversion */ i_scale_count = ( i_vscale == 1 ) ? - p_vout->output.i_height : p_vout->render.i_height; + p_filter->fmt_out.video.i_height : + p_filter->fmt_in.video.i_height; #if defined (MODULE_NAME_IS_i420_rgb_sse2) - if( p_vout->render.i_width & 15 ) + if( p_filter->fmt_in.video.i_width & 15 ) { - i_rewind = 16 - ( p_vout->render.i_width & 15 ); + i_rewind = 16 - ( p_filter->fmt_in.video.i_width & 15 ); } else { @@ -1671,7 +1703,7 @@ void E_(I420_A8B8G8R8)( vout_thread_t *p_vout, picture_t *p_src, } /* - ** SSE2 128 bits fetch/store instructions are faster + ** SSE2 128 bits fetch/store instructions are faster ** if memory access is 16 bytes aligned */ @@ -1682,11 +1714,11 @@ void E_(I420_A8B8G8R8)( vout_thread_t *p_vout, picture_t *p_src, ((intptr_t)p_buffer))) ) { /* use faster SSE2 aligned fetch and store */ - for( i_y = 0; i_y < p_vout->render.i_height; i_y++ ) + for( i_y = 0; i_y < p_filter->fmt_in.video.i_height; i_y++ ) { p_pic_start = p_pic; - for ( i_x = p_vout->render.i_width / 16; i_x--; ) + for ( i_x = p_filter->fmt_in.video.i_width / 16; i_x--; ) { SSE2_CALL ( SSE2_INIT_32_ALIGNED @@ -1733,12 +1765,12 @@ void E_(I420_A8B8G8R8)( vout_thread_t *p_vout, picture_t *p_src, else { /* use slower SSE2 unaligned fetch and store */ - for( i_y = 0; i_y < p_vout->render.i_height; i_y++ ) + for( i_y = 0; i_y < p_filter->fmt_in.video.i_height; i_y++ ) { p_pic_start = p_pic; p_buffer = b_hscale ? p_buffer_start : p_pic; - for ( i_x = p_vout->render.i_width / 16; i_x--; ) + for ( i_x = p_filter->fmt_in.video.i_width / 16; i_x--; ) { SSE2_CALL ( SSE2_INIT_32_UNALIGNED @@ -1785,21 +1817,21 @@ void E_(I420_A8B8G8R8)( vout_thread_t *p_vout, picture_t *p_src, #else - if( p_vout->render.i_width & 7 ) + if( p_filter->fmt_in.video.i_width & 7 ) { - i_rewind = 8 - ( p_vout->render.i_width & 7 ); + i_rewind = 8 - ( p_filter->fmt_in.video.i_width & 7 ); } else { i_rewind = 0; } - for( i_y = 0; i_y < p_vout->render.i_height; i_y++ ) + for( i_y = 0; i_y < p_filter->fmt_in.video.i_height; i_y++ ) { p_pic_start = p_pic; p_buffer = b_hscale ? p_buffer_start : p_pic; - for ( i_x = p_vout->render.i_width / 8; i_x--; ) + for ( i_x = p_filter->fmt_in.video.i_width / 8; i_x--; ) { MMX_CALL ( MMX_INIT_32 @@ -1860,7 +1892,7 @@ void E_(I420_A8B8G8R8)( vout_thread_t *p_vout, picture_t *p_src, * It will also set horizontal and vertical scaling indicators. *****************************************************************************/ static void SetOffset( int i_width, int i_height, int i_pic_width, - int i_pic_height, vlc_bool_t *pb_hscale, + int i_pic_height, bool *pb_hscale, unsigned int *pi_vscale, int *p_offset ) { int i_x; /* x position in destination */