1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-30 19:22:11 +00:00

100l - fixed yuy2 -dr, reported by Nexus

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5762 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
arpi 2002-04-21 12:39:45 +00:00
parent ffbdd57835
commit 26b5f3284b

View File

@ -738,7 +738,7 @@ static uint32_t get_image(mp_image_t *mpi){
mpi->stride[1]=mpi->stride[2]=image_width/2;
} else {
mpi->planes[0]=xvimage[current_buf]->data;
mpi->stride[0]=image_width;
mpi->stride[0]=image_width*(mpi->bpp>>3);
}
mpi->flags|=MP_IMGFLAG_DIRECT;
// printf("mga: get_image() SUCCESS -> Direct Rendering ENABLED\n");