From 4ea7fbb2ec1a8833b6683655b98f4bf42f817102 Mon Sep 17 00:00:00 2001
From: Marton Balint <cus@passwd.hu>
Date: Sat, 19 Jan 2013 01:57:50 +0100
Subject: [PATCH] ffplay: step to next frame if paused when seeking

Signed-off-by: Marton Balint <cus@passwd.hu>
---
 ffplay.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/ffplay.c b/ffplay.c
index c723b74a19..58ff99d4ce 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -2728,6 +2728,8 @@ static int read_thread(void *arg)
             }
             is->seek_req = 0;
             eof = 0;
+            if (is->paused)
+                step_to_next_frame(is);
         }
         if (is->queue_attachments_req) {
             avformat_queue_attached_pictures(ic);