mirror of https://github.com/mpv-player/mpv
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:
parent
2cfd635666
commit
d60bfc5654
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue