diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-06-14 20:50:06 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-06-14 20:50:06 +0000 |
commit | 64dfb3fccb2540f0d7fa2b4bb16c3b715c0402bb (patch) | |
tree | 2cb27f9920df429578c1ca7aac2688d90a55df9f /src/xine-engine/video_out.c | |
parent | 6495bffbf7fbae654780291b204af851c04998e5 (diff) | |
download | xine-lib-64dfb3fccb2540f0d7fa2b4bb16c3b715c0402bb.tar.gz xine-lib-64dfb3fccb2540f0d7fa2b4bb16c3b715c0402bb.tar.bz2 |
implemented 15 and 24 bpp modes for mmx yuv2rgb
CVS patchset: 182
CVS date: 2001/06/14 20:50:06
Diffstat (limited to 'src/xine-engine/video_out.c')
-rw-r--r-- | src/xine-engine/video_out.c | 6 |
1 files changed, 3 insertions, 3 deletions
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); */ |