summaryrefslogtreecommitdiffstats
path: root/libvo/vo_vesa.c
diff options
context:
space:
mode:
authoratmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-02-12 15:06:04 +0000
committeratmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-02-12 15:06:04 +0000
commite403e9fe9c1b0740f6423d0ed95554294fde5076 (patch)
tree0f1e2060a400ff7e9f180aabd9be648be852b3be /libvo/vo_vesa.c
parent54b4b5ffe092df9063ee3fc67a6a7f341e1f2f79 (diff)
downloadmpv-e403e9fe9c1b0740f6423d0ed95554294fde5076.tar.bz2
mpv-e403e9fe9c1b0740f6423d0ed95554294fde5076.tar.xz
add vsync support for doublebuffering to vo_vesa
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4668 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/vo_vesa.c')
-rw-r--r--libvo/vo_vesa.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libvo/vo_vesa.c b/libvo/vo_vesa.c
index 836e4f3919..f659fc5b94 100644
--- a/libvo/vo_vesa.c
+++ b/libvo/vo_vesa.c
@@ -114,7 +114,7 @@ static char * vbeErrToStr(int err)
static char sbuff[80];
if((err & VBE_VESA_ERROR_MASK) == VBE_VESA_ERROR_MASK)
{
- sprintf(sbuff,"VESA failed = 0x4f%x",(err & VBE_VESA_ERRCODE_MASK)>>8);
+ sprintf(sbuff,"VESA failed = 0x4f%02x",(err & VBE_VESA_ERRCODE_MASK)>>8);
retval = sbuff;
}
else
@@ -361,7 +361,7 @@ static void flip_page(void)
if(vo_doublebuffering && multi_size > 1)
{
int err;
- if((err=vbeSetDisplayStart(multi_buff[multi_idx],1)) != VBE_OK)
+ if((err=vbeSetDisplayStart(multi_buff[multi_idx],vo_vsync)) != VBE_OK)
{
vesa_term();
PRINT_VBE_ERR("vbeSetDisplayStart",err);
@@ -375,10 +375,10 @@ static void flip_page(void)
else
if(tripple_buffering)
{
- vbeSetScheduledDisplayStart(multi_buffer[multi_idx],1);
+ vbeSetScheduledDisplayStart(multi_buff[multi_idx],vo_vsync);
multi_idx++;
if(multi_idx > 2) multi_idx = 0;
- win.ptr = dga_buffer = video_base + multi_buffer[multi_idx];
+ win.ptr = dga_buffer = video_base + multi_buff[multi_idx];
}
*/
}