summaryrefslogtreecommitdiffstats
path: root/libvo/vo_tdfxfb.c
diff options
context:
space:
mode:
authoralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-08-28 21:32:32 +0000
committeralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-08-28 21:32:32 +0000
commit64bedd9683e4c7d029dff71a92a3b7036d8e0f93 (patch)
tree61d1034d66d0833ebffba324f8c47592f41b360d /libvo/vo_tdfxfb.c
parent56e2afddf96abb82b9c0aa11b8088254007089e9 (diff)
downloadmpv-64bedd9683e4c7d029dff71a92a3b7036d8e0f93.tar.bz2
mpv-64bedd9683e4c7d029dff71a92a3b7036d8e0f93.tar.xz
finally removed query_vaa, bes_da and vo_tune_info - the obsoleted libvo api
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7125 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/vo_tdfxfb.c')
-rw-r--r--libvo/vo_tdfxfb.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libvo/vo_tdfxfb.c b/libvo/vo_tdfxfb.c
index aa8e133c1e..b64d2e3135 100644
--- a/libvo/vo_tdfxfb.c
+++ b/libvo/vo_tdfxfb.c
@@ -159,7 +159,8 @@ static void clear_screen()
since it actually checks the status of the card.
*/
/* first wait for the card to be ready, do not try to write every time - alex */
- do {} while((reg_IO->status & 0x1f) < 1);
+// do {} while((reg_IO->status & 0x1f) < 1);
+ usec_sleep(10*1000);
memset(vidpage, 0, screenwidth * screenheight * screendepth);
if(vo_doublebuffering) {
@@ -203,7 +204,7 @@ static void setup_screen(uint32_t full)
}
static uint32_t config(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_height,
- uint32_t flags, char *title, uint32_t format, const vo_tune_info_t *info)
+ uint32_t flags, char *title, uint32_t format)
{
screenwidth = fb_vinfo.xres;
screenheight = fb_vinfo.yres;