From 5db1f94b8d4516714ba4f07d0b72816a6d76ce31 Mon Sep 17 00:00:00 2001 From: Marton Balint Date: Sun, 21 Aug 2011 15:06:08 +0200 Subject: [PATCH] ffplay: make step variable a member of the VideoState struct Getting rid of globals are generally a good thing. The patch also makes toggle_pause and step_to_next_frame use a function parameter instead of the global cur_stream variable. Signed-off-by: Michael Niedermayer --- ffplay.c | 32 +++++++++++++++----------------- 1 file changed, 15 insertions(+), 17 deletions(-) diff --git a/ffplay.c b/ffplay.c index c31bcfb607..25d8325a7e 100644 --- a/ffplay.c +++ b/ffplay.c @@ -207,6 +207,7 @@ typedef struct VideoState { char filename[1024]; int width, height, xleft, ytop; + int step; #if CONFIG_AVFILTER AVFilterContext *out_video_filter; ///step) + stream_toggle_pause(cur_stream); } the_end: #if CONFIG_AVFILTER @@ -2648,21 +2647,18 @@ static void toggle_full_screen(void) video_open(cur_stream); } -static void toggle_pause(void) +static void toggle_pause(VideoState *is) { - if (cur_stream) - stream_toggle_pause(cur_stream); - step = 0; + stream_toggle_pause(is); + is->step = 0; } -static void step_to_next_frame(void) +static void step_to_next_frame(VideoState *is) { - if (cur_stream) { - /* if the stream is paused unpause it, then step */ - if (cur_stream->paused) - stream_toggle_pause(cur_stream); - } - step = 1; + /* if the stream is paused unpause it, then step */ + if (is->paused) + stream_toggle_pause(is); + is->step = 1; } static void toggle_audio_display(void) @@ -2702,10 +2698,12 @@ static void event_loop(void) break; case SDLK_p: case SDLK_SPACE: - toggle_pause(); + if (cur_stream) + toggle_pause(cur_stream); break; case SDLK_s: //S: Step to next frame - step_to_next_frame(); + if (cur_stream) + step_to_next_frame(cur_stream); break; case SDLK_a: if (cur_stream)