Mailinglist Archive: radeonhd (307 mails)
| < Previous | Next > |
Re: [radeonhd] YUY2 wrong with R600TexturedVideo partly solved
- From: Alex Deucher <alexdeucher@xxxxxxxxx>
- Date: Tue, 10 Feb 2009 14:20:16 -0500
- Message-id: <a728f9f90902101120l73cf8c11t600d172b8e39d275@xxxxxxxxxxxxxx>
On Tue, Feb 10, 2009 at 1:16 PM, Joachim König <joachim.koenig@xxxxxxx> wrote:
Can you try again with the latest code from git?
Alex
--
To unsubscribe, e-mail: radeonhd+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: radeonhd+help@xxxxxxxxxxxx
Hi
with the following patch the YUY2 colors are ok now:
--- r600_textured_videofuncs.c 2009-02-10 19:01:36.000000000 +0100
+++ /usr/src/xf86-video-radeonhd/src/r600_textured_videofuncs.c 2009-02-10
18:23:08.000000000 +0100
@@ -322,7 +322,7 @@ R600DisplayTexturedVideo(ScrnInfoPtr pSc
tex_res.format = FMT_8_8;
tex_res.w = pPriv->w >> 1;
tex_res.h = pPriv->h >> 1;
- tex_res.pitch = accel_state->src_pitch[0] >> 1;
+ tex_res.pitch = accel_state->src_pitch[0] ;
tex_res.dst_sel_x = SQ_SEL_Y; //V
tex_res.dst_sel_y = SQ_SEL_X; //U
tex_res.dst_sel_z = SQ_SEL_1;
but the picture is missing a few lines at the beginning (top of the screen)
and those missing lines create a blue bar at the end of the picture (bottom
of the screen) I did not find the reason for that.
Can you try again with the latest code from git?
Alex
--
To unsubscribe, e-mail: radeonhd+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: radeonhd+help@xxxxxxxxxxxx
| < Previous | Next > |