summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/dec_video.c
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-03-17 00:43:01 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-03-17 00:43:01 +0000
commit24ed01fec49603c766a5486816e344c1f05ea331 (patch)
tree23fde67ed748f0a2327eedfb05d7623fcd013e50 /libmpcodecs/dec_video.c
parentc294d96a276a77c41f32811dffc54ce7284d2890 (diff)
downloadmpv-24ed01fec49603c766a5486816e344c1f05ea331.tar.bz2
mpv-24ed01fec49603c766a5486816e344c1f05ea331.tar.xz
useless 'max benchmar' removed
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5151 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpcodecs/dec_video.c')
-rw-r--r--libmpcodecs/dec_video.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/libmpcodecs/dec_video.c b/libmpcodecs/dec_video.c
index 52c00b42ba..91f789bee7 100644
--- a/libmpcodecs/dec_video.c
+++ b/libmpcodecs/dec_video.c
@@ -31,13 +31,8 @@ extern int verbose; // defined in mplayer.c
// ===================================================================
-extern int benchmark;
extern double video_time_usage;
extern double vout_time_usage;
-extern double max_video_time_usage;
-extern double max_vout_time_usage;
-extern double cur_video_time_usage;
-extern double cur_vout_time_usage;
extern vo_vaa_t vo_vaa;
#include "postproc/postprocess.h"
@@ -200,11 +195,6 @@ if(!mpi) return 0; // error / skipped frame
t2=GetTimer();t=t2-t;
tt = t*0.000001f;
video_time_usage+=tt;
-if(benchmark)
-{
- if(tt > max_video_time_usage) max_video_time_usage=tt;
- cur_video_time_usage=tt;
-}
if(drop_frame) return 0;
@@ -219,11 +209,6 @@ if(!(mpi->flags&(MP_IMGFLAG_DIRECT|MP_IMGFLAG_DRAW_CALLBACK))){
t2=GetTimer()-t2;
tt=t2*0.000001f;
vout_time_usage+=tt;
- if(benchmark)
- {
- if(tt > max_vout_time_usage) max_vout_time_usage = tt;
- cur_vout_time_usage=tt;
- }
blit_frame=1;
return blit_frame;