summaryrefslogtreecommitdiffstats
path: root/mplayer.c
diff options
context:
space:
mode:
authoruau <uau@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-02-21 21:59:33 +0000
committeruau <uau@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-02-21 21:59:33 +0000
commit3c0c8686fdff3b33487154bb31c8726961a112d8 (patch)
treefd04f3e7b1e59358b638df73d544cde44db0b402 /mplayer.c
parent06ef3831e71f0ee085b8b1419ee2f34829963941 (diff)
downloadmpv-3c0c8686fdff3b33487154bb31c8726961a112d8.tar.bz2
mpv-3c0c8686fdff3b33487154bb31c8726961a112d8.tar.xz
Cleanup, move "global" state from the frame_time_remaining mainloop
variable to mpctx. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22306 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mplayer.c')
-rw-r--r--mplayer.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/mplayer.c b/mplayer.c
index 5ffd223fcd..2892e2342a 100644
--- a/mplayer.c
+++ b/mplayer.c
@@ -3182,6 +3182,7 @@ float time_frame=0; // Timer
int frame_time_remaining=0; // flag
int blit_frame=0;
+mpctx->num_buffered_frames=0;
// Make sure old OSD does not stay around,
// e.g. with -fixed-vo and same-resolution files
@@ -3297,7 +3298,7 @@ if(!mpctx->sh_video) {
vo_pts=mpctx->sh_video->timer*90000.0;
vo_fps=mpctx->sh_video->fps;
- if (!frame_time_remaining) {
+ if (!mpctx->num_buffered_frames) {
double frame_time = update_video(&blit_frame);
mp_dbg(MSGT_AVSYNC,MSGL_DBG2,"*** ftime=%5.3f ***\n",frame_time);
if (mpctx->sh_video->vf_inited < 0) {
@@ -3306,8 +3307,11 @@ if(!mpctx->sh_video) {
}
if (frame_time < 0)
mpctx->eof = 1;
- else
+ else {
+ // might return with !eof && !blit_frame if !correct_pts
+ mpctx->num_buffered_frames += blit_frame;
time_frame += frame_time / playback_speed; // for nosound
+ }
}
// ==========================================================================
@@ -3338,6 +3342,7 @@ if(!mpctx->sh_video) {
unsigned int t2=GetTimer();
if(vo_config_count) mpctx->video_out->flip_page();
+ mpctx->num_buffered_frames--;
vout_time_usage += (GetTimer() - t2) * 0.000001;
}
@@ -3559,7 +3564,7 @@ if ((mpctx->user_muted | mpctx->edl_muted) != mpctx->mixer.muted) mixer_mute(&mp
rel_seek_secs=0;
abs_seek_pos=0;
- frame_time_remaining=0;
+ mpctx->num_buffered_frames = 0;
current_module=NULL;
loop_seek=0;
}