changeset 7500:5dd2cdd760fa

fixes problem with video image alignment. patch by Fredrik Noring <noring@nocrew.org>
author arpi
date Wed, 25 Sep 2002 21:41:42 +0000
parents dcb9f392eae4
children 20910550332f
files libvo/vo_dga.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/libvo/vo_dga.c	Wed Sep 25 21:18:43 2002 +0000
+++ b/libvo/vo_dga.c	Wed Sep 25 21:41:42 2002 +0000
@@ -298,7 +298,7 @@
 
   offset = vo_dga_width * y0 +x0;
   buffer_stride = vo_dga_width;
-  d = VIDEO_BUFFER_DRAW.data;
+  d = VIDEO_BUFFER_DRAW.data + vo_dga_vp_offset;
      
   switch( HW_MODE.vdm_mplayer_depth ){
 
@@ -345,7 +345,7 @@
   char *s, *d;
 
   s = *src;
-  d = VIDEO_BUFFER_DRAW.data;
+  d = VIDEO_BUFFER_DRAW.data + vo_dga_vp_offset;
   
   switch(SRC_MODE.vdm_conversion_func){
   case VDM_CONV_NATIVE:
@@ -360,7 +360,7 @@
   // DBG-COde
 
 #if 0
-  d = VIDEO_BUFFER_DRAW.data;
+  d = VIDEO_BUFFER_DRAW.data + vo_dga_vp_offset;
   fillblock(d, 0, 10, 0x800000ff);
   fillblock(d, 10, 10, 0x8000ff00);
   fillblock(d, 20, 10, 0x80ff0000);