Direct rendering with dshow codecs support. (Was untested but should work)

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4723 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
nick 2002-02-16 08:20:24 +00:00
parent 2cfd635666
commit d60bfc5654
1 changed files with 2 additions and 2 deletions

View File

@ -450,8 +450,8 @@ static unsigned mach64_query_pitch(unsigned fourcc,const vidix_yuv_t *spitch)
else pitch = 32;
break;
default:
if(spy > 16) pitch = spy;
else pitch = 32;
if(spy >= 16) pitch = spy;
else pitch = 16;
break;
}
return pitch;