[MPlayer-dev-eng] vo_gl PBO patch ..

Reimar Döffinger Reimar.Doeffinger at stud.uni-karlsruhe.de
Wed May 7 08:53:46 CEST 2008


On Wed, May 07, 2008 at 02:04:14AM +0400, Vladimir Mosgalin wrote:
> First, video height doesn't seem to produce problem - only width
> matters. Resolutions not divisible by 32 are affected. When
> width % 32 == 30 the picture is "skewed" slightly,
> with width % 32 between 14-18 it's skewed a lot, but looks somewhat
> clear. At other values distortion grows. Also the exact look of
> distortion depends on video height.
> 
> Both chroma and luma are distorted, also they don't match each other
> when any kind of distortion occurs. Funny, but osd and vobsubs, even
> colored aren't affected at all!

That is not surprising.
What is very surprising to me is that resolutions would need to be
divisible by 32 for things to work, that is an unusually large number.
You could try changing
> mpi2.width = mpi2.w;
to
> mpi2.width = (mpi2.w + 31) & ~31;
but that wastes quite a lot of space.
I forgot, which card/drivers are you using? I am using
"nVidia Corporation G70 [GeForce 7600 GS]" with driver version 169.12 

Greetings,
Reimar Döffinger



More information about the MPlayer-dev-eng mailing list