summaryrefslogtreecommitdiff
path: root/src/xine-engine/video_out.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/xine-engine/video_out.c')
-rw-r--r--src/xine-engine/video_out.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xine-engine/video_out.c b/src/xine-engine/video_out.c
index 132392ad0..d5573c77c 100644
--- a/src/xine-engine/video_out.c
+++ b/src/xine-engine/video_out.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: video_out.c,v 1.20 2001/06/14 20:50:06 guenter Exp $
+ * $Id: video_out.c,v 1.21 2001/06/16 12:56:29 guenter Exp $
*
*/
@@ -119,9 +119,9 @@ static void vo_set_timer (uint32_t video_step) {
struct itimerval tval;
tval.it_interval.tv_sec = 0;
- tval.it_interval.tv_usec = video_step*200000/90000;
+ tval.it_interval.tv_usec = video_step*100000/90000;
tval.it_value.tv_sec = 0;
- tval.it_value.tv_usec = video_step*200000/90000;
+ tval.it_value.tv_usec = video_step*100000/90000;
/* printf ("video_out: tval.it_interval.tv_usec = %d\n", tval.it_interval.tv_usec); */