summaryrefslogtreecommitdiff
path: root/src/xine-engine
diff options
context:
space:
mode:
Diffstat (limited to 'src/xine-engine')
-rw-r--r--src/xine-engine/video_out.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xine-engine/video_out.c b/src/xine-engine/video_out.c
index 4f363fc7d..833446e7d 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.14 2001/06/09 18:40:41 guenter Exp $
+ * $Id: video_out.c,v 1.15 2001/06/10 01:26:46 guenter Exp $
*
*/
@@ -382,7 +382,7 @@ static int vo_frame_draw (vo_frame_t *img) {
cur_vpts = this->metronom->get_current_time(this->metronom);
diff = pic_vpts - cur_vpts;
- frames_to_skip = (-1 * diff) / this->pts_per_frame + 1;
+ frames_to_skip = ((-1 * diff) / this->pts_per_frame + 1) * 2;
xprintf (VERBOSE|VIDEO,"video_out:: delivery diff : %d\n",diff);