[vlc-devel] commit: Simplification no longer check for FPU capability. ( Jean-Paul Saman )
git version control
git at videolan.org
Fri Sep 19 09:59:48 CEST 2008
vlc | branch: master | Jean-Paul Saman <jpsaman at videolan.org> | Tue Sep 9 13:01:49 2008 +0200| [894b5638c36722c51e7db9a0d4a922d900a0bf2d] | committer: Jean-Paul Saman
Simplification no longer check for FPU capability.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=894b5638c36722c51e7db9a0d4a922d900a0bf2d
---
modules/gui/fbosd.c | 5 +----
1 files changed, 1 insertions(+), 4 deletions(-)
diff --git a/modules/gui/fbosd.c b/modules/gui/fbosd.c
index d9a44be..4c1f657 100644
--- a/modules/gui/fbosd.c
+++ b/modules/gui/fbosd.c
@@ -1309,10 +1309,7 @@ static void Run( intf_thread_t *p_intf )
p_sys->b_need_update = false;
}
- if( vlc_CPU() & CPU_CAPABILITY_FPU )
- msleep( INTF_IDLE_SLEEP );
- else
- msleep( 500 );
+ msleep( INTF_IDLE_SLEEP );
}
End( p_intf );
More information about the vlc-devel
mailing list