diff options
author | Siggi Langauf <siggi@users.sourceforge.net> | 2002-08-03 20:42:32 +0000 |
---|---|---|
committer | Siggi Langauf <siggi@users.sourceforge.net> | 2002-08-03 20:42:32 +0000 |
commit | a5c4a2d62b0f9d3515eb925468369f81158636a1 (patch) | |
tree | d1c3d6a967bf4a277b5472db8a8203ef857d6b73 | |
parent | 26105abf9aab1b39e1e190006c024c0ffb542d9b (diff) | |
download | xine-lib-a5c4a2d62b0f9d3515eb925468369f81158636a1.tar.gz xine-lib-a5c4a2d62b0f9d3515eb925468369f81158636a1.tar.bz2 |
made xine a bit less verbose and Marcelo a lot happier...
CVS patchset: 2388
CVS date: 2002/08/03 20:42:32
-rw-r--r-- | src/xine-engine/video_out.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/xine-engine/video_out.c b/src/xine-engine/video_out.c index c54a82932..5b539fc89 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.101 2002/07/30 00:26:45 miguelfreitas Exp $ + * $Id: video_out.c,v 1.102 2002/08/03 20:42:32 siggi Exp $ * * frame allocation / queuing / scheduling / output functions */ @@ -301,7 +301,8 @@ static int vo_frame_draw (vo_frame_t *img) { * performance measurement */ - if (this->num_frames_delivered>199) { + if ((this->num_frames_delivered % 200) == 0 + && (this->num_frames_skipped || this->num_frames_discarded)) { xine_log(this->xine, XINE_LOG_MSG, _("%d frames delivered, %d frames skipped, %d frames discarded\n"), this->num_frames_delivered, |