# HG changeset patch # User reimar # Date 1302215418 0 # Node ID 3a1f250bb285600f751962032230094509aafdbf # Parent 1e637ada90031aefaf14b798fe70cd11ceed8ab3 Move variables into block where they are used. diff -r 1e637ada9003 -r 3a1f250bb285 mplayer.c --- a/mplayer.c Thu Apr 07 21:49:06 2011 +0000 +++ b/mplayer.c Thu Apr 07 22:30:18 2011 +0000 @@ -3559,8 +3559,6 @@ if(verbose) term_osd = 0; { -int frame_time_remaining=0; // flag -int blit_frame=0; mpctx->num_buffered_frames=0; mpctx->framestep_found=0; @@ -3704,6 +3702,8 @@ update_osd_msg(); } else { + int frame_time_remaining = 0; + int blit_frame = 1; /*========================== PLAY VIDEO ============================*/