diff options
Diffstat (limited to 'src/xine-engine/video_out.c')
-rw-r--r-- | src/xine-engine/video_out.c | 24 |
1 files changed, 1 insertions, 23 deletions
diff --git a/src/xine-engine/video_out.c b/src/xine-engine/video_out.c index b864cb116..8e408ee5d 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.75 2002/02/17 17:32:51 guenter Exp $ + * $Id: video_out.c,v 1.76 2002/02/18 13:33:19 guenter Exp $ * * frame allocation / queuing / scheduling / output functions */ @@ -288,28 +288,6 @@ static int vo_frame_draw (vo_frame_t *img) { return frames_to_skip; } - if (cur_vpts>0) { - - if (diff<(-1 * img->duration) && img->drawn != 2 ) { - - this->num_frames_discarded++; -#ifdef LOG - printf ("video_out: frame rejected, %d frames to skip\n", frames_to_skip); -#endif - - pthread_mutex_lock (&img->mutex); - img->display_locked = 0; - pthread_mutex_unlock (&img->mutex); - - vo_frame_displayed (img); - - this->last_frame = img; - - return frames_to_skip; - - } - } /* else: we are probably in precaching mode */ - if (!img->bad_frame) { /* * put frame into FIFO-Buffer |