Commit 72a83f72 authored by Olivier Aubert's avatar Olivier Aubert

svg.c: do not subsample U and V planes in RGB->YUVA conversion.

parent e77471fb
...@@ -316,7 +316,6 @@ static int Render( filter_t *p_filter, subpicture_region_t *p_region, ...@@ -316,7 +316,6 @@ static int Render( filter_t *p_filter, subpicture_region_t *p_region,
#define INDEX_IN( x, y ) ( y * rowstride_in + x * channels_in ) #define INDEX_IN( x, y ) ( y * rowstride_in + x * channels_in )
#define INDEX_OUT( x, y ) ( y * i_pitch + x * p_pic->p[Y_PLANE].i_pixel_pitch ) #define INDEX_OUT( x, y ) ( y * i_pitch + x * p_pic->p[Y_PLANE].i_pixel_pitch )
#define UV_INDEX_OUT( x, y ) ( ( y / 2 ) * i_u_pitch + ( x / 2 ) * p_pic->p[U_PLANE].i_pixel_pitch )
for( y = 0; y < i_height; y++ ) for( y = 0; y < i_height; y++ )
{ {
...@@ -324,7 +323,6 @@ static int Render( filter_t *p_filter, subpicture_region_t *p_region, ...@@ -324,7 +323,6 @@ static int Render( filter_t *p_filter, subpicture_region_t *p_region,
{ {
guchar *p_in; guchar *p_in;
int i_out; int i_out;
int i_uv_out;
p_in = &pixels_in[INDEX_IN( x, y )]; p_in = &pixels_in[INDEX_IN( x, y )];
...@@ -343,16 +341,10 @@ static int Render( filter_t *p_filter, subpicture_region_t *p_region, ...@@ -343,16 +341,10 @@ static int Render( filter_t *p_filter, subpicture_region_t *p_region,
p_pic->Y_PIXELS[i_out] = .299 * R( p_in ) + .587 * G( p_in ) + .114 * B( p_in ); p_pic->Y_PIXELS[i_out] = .299 * R( p_in ) + .587 * G( p_in ) + .114 * B( p_in );
p_pic->A_PIXELS[i_out] = ALPHA( p_in ); p_pic->U_PIXELS[i_out] = -.1687 * R( p_in ) - .3313 * G( p_in ) + .5 * B( p_in ) + 128;
p_pic->V_PIXELS[i_out] = .5 * R( p_in ) - .4187 * G( p_in ) - .0813 * B( p_in ) + 128;
if( ( x % 2 == 0 ) && ( y % 2 == 0 ) ) {
i_uv_out = UV_INDEX_OUT( x, y );
p_pic->A_PIXELS[i_out] = ALPHA( p_in );
p_pic->U_PIXELS[i_uv_out] = -.1687 * R( p_in ) - .3313 * G( p_in ) + .5 * B( p_in ) + 128;
p_pic->V_PIXELS[i_uv_out] = .5 * R( p_in ) - .4187 * G( p_in ) - .0813 * B( p_in ) + 128;
}
} }
} }
} }
......
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