From 64dfb3fccb2540f0d7fa2b4bb16c3b715c0402bb Mon Sep 17 00:00:00 2001 From: Guenter Bartsch Date: Thu, 14 Jun 2001 20:50:06 +0000 Subject: implemented 15 and 24 bpp modes for mmx yuv2rgb CVS patchset: 182 CVS date: 2001/06/14 20:50:06 --- src/xine-engine/video_out.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/xine-engine') diff --git a/src/xine-engine/video_out.c b/src/xine-engine/video_out.c index f63029b8c..132392ad0 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.19 2001/06/14 20:17:06 guenter Exp $ + * $Id: video_out.c,v 1.20 2001/06/14 20:50:06 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*500000/90000; + tval.it_interval.tv_usec = video_step*200000/90000; tval.it_value.tv_sec = 0; - tval.it_value.tv_usec = video_step*500000/90000; + tval.it_value.tv_usec = video_step*200000/90000; /* printf ("video_out: tval.it_interval.tv_usec = %d\n", tval.it_interval.tv_usec); */ -- cgit v1.2.3