From a6f51de3bf5110dad301bab625f67fc2172f286d Mon Sep 17 00:00:00 2001 From: Marton Balint Date: Mon, 28 May 2012 21:42:52 +0200 Subject: ffplay: add pause audio feature in the middle of a packet Fixes ticket 215. Signed-off-by: Marton Balint --- ffplay.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ffplay.c b/ffplay.c index 708dab8d63..44ae931601 100644 --- a/ffplay.c +++ b/ffplay.c @@ -2077,6 +2077,9 @@ static int audio_decode_frame(VideoState *is, double *pts_ptr) } else avcodec_get_frame_defaults(is->frame); + if (is->paused) + return -1; + if (flush_complete) break; new_packet = 0; -- cgit v1.2.3