From 3765cfcf57e0232b5e96e77d9dd628755f1c0518 Mon Sep 17 00:00:00 2001 From: wm4 Date: Thu, 25 Apr 2013 20:38:22 +0200 Subject: core: simplify handling of --pause Rename the struct MPOpts "start_pause" field to "pause". Store the user- pause state in that field, so that both runtime pause toggling and the --pause switch change the same variable. Simplify the initialization of pause so that using --pause and changing the file while paused is exactly the same case (changing the file while paused doesn't unpause, this has been always this way). Also make it a bit more consistent. Before, starting with --pause would reset the pause state for every file, instead of following the usual semantics for option switches (compare with behavior of --fs). --- core/options.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/options.h') diff --git a/core/options.h b/core/options.h index 35d0329b7a..8806a66211 100644 --- a/core/options.h +++ b/core/options.h @@ -125,7 +125,7 @@ typedef struct MPOpts { int play_frames; double step_sec; int64_t seek_to_byte; - int start_paused; + int pause; int keep_open; int audio_id; int video_id; -- cgit v1.2.3