fixing yv12

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4760 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
michael 2002-02-19 18:04:06 +00:00
parent 962ecd12da
commit 3300606233
1 changed files with 2 additions and 2 deletions

View File

@ -588,7 +588,7 @@ static int mach64_vid_init_video( vidix_playback_t *config )
v_inc = (src_h << (12
+(mach64_is_interlace()?1:0)
-(mach64_is_dbl_scan()?1:0)
+(is_420?1:0)
// +(is_420?1:0)
)) / dest_h;
h_inc = (src_w << (12+ecp)) / dest_w;
/* keep everything in 16.16 */
@ -649,7 +649,7 @@ static int mach64_vid_init_video( vidix_playback_t *config )
if(mach64_is_interlace()) y_pos/=2;
besr.y_x_end = y_pos | ((config->dest.x + dest_w) << 16);
besr.height_width = ((src_w - left)<<16) | (src_h - top);
besr.vid_buf_pitch = pitch/2;
besr.vid_buf_pitch = is_420 ? pitch : pitch/2;
return 0;
}