Commit e206b51f authored by Michael Niedermayer's avatar Michael Niedermayer

Merge remote-tracking branch 'cus/stable'

* cus/stable:
  ffplay: pause rdft column when ffplay is paused
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents a0340dfb e6093e36
...@@ -867,7 +867,8 @@ static void video_audio_display(VideoState *s) ...@@ -867,7 +867,8 @@ static void video_audio_display(VideoState *s)
} }
} }
SDL_UpdateRect(screen, s->xpos, s->ytop, 1, s->height); SDL_UpdateRect(screen, s->xpos, s->ytop, 1, s->height);
s->xpos++; if (!s->paused)
s->xpos++;
if (s->xpos >= s->width) if (s->xpos >= s->width)
s->xpos= s->xleft; s->xpos= s->xleft;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment