summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-04-25 20:38:22 +0200
committerwm4 <wm4@nowhere>2013-04-25 20:52:20 +0200
commit3765cfcf57e0232b5e96e77d9dd628755f1c0518 (patch)
tree8644ca978ddbc535dffc1202b03d5e3ac3fc8deb /core
parente1fccfdcd8a9efb2e3ce70cc4b7aba3e0eb91836 (diff)
downloadmpv-3765cfcf57e0232b5e96e77d9dd628755f1c0518.tar.bz2
mpv-3765cfcf57e0232b5e96e77d9dd628755f1c0518.tar.xz
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).
Diffstat (limited to 'core')
-rw-r--r--core/cfg-mplayer.h2
-rw-r--r--core/command.c13
-rw-r--r--core/mp_core.h4
-rw-r--r--core/mplayer.c31
-rw-r--r--core/options.h2
5 files changed, 21 insertions, 31 deletions
diff --git a/core/cfg-mplayer.h b/core/cfg-mplayer.h
index 156835fd07..5d843c4381 100644
--- a/core/cfg-mplayer.h
+++ b/core/cfg-mplayer.h
@@ -352,7 +352,7 @@ const m_option_t common_opts[] = {
OPT_REL_TIME("end", play_end, 0),
OPT_REL_TIME("length", play_length, 0),
- OPT_FLAG("pause", start_paused, 0),
+ OPT_FLAG("pause", pause, 0),
OPT_FLAG("keep-open", keep_open, 0),
// AVI specific: force non-interleaved mode
diff --git a/core/command.c b/core/command.c
index 7497ea817f..05608c7df4 100644
--- a/core/command.c
+++ b/core/command.c
@@ -518,19 +518,15 @@ static int mp_property_pause(m_option_t *prop, int action, void *arg,
{
MPContext *mpctx = ctx;
- switch (action) {
- case M_PROPERTY_SET:
+ if (action == M_PROPERTY_SET) {
if (*(int *)arg) {
pause_player(mpctx);
} else {
unpause_player(mpctx);
}
return M_PROPERTY_OK;
- case M_PROPERTY_GET:
- *(int *)arg = mpctx->paused_user;
- return M_PROPERTY_OK;
}
- return M_PROPERTY_NOT_IMPLEMENTED;
+ return mp_property_generic_option(prop, action, arg, ctx);
}
static int mp_property_cache(m_option_t *prop, int action, void *arg,
@@ -1365,8 +1361,7 @@ static const m_option_t mp_properties[] = {
CONF_RANGE, -2, 10, NULL },
{ "metadata", mp_property_metadata, CONF_TYPE_STRING_LIST,
0, 0, 0, NULL },
- { "pause", mp_property_pause, CONF_TYPE_FLAG,
- M_OPT_RANGE, 0, 1, NULL },
+ M_OPTION_PROPERTY_CUSTOM("pause", mp_property_pause),
{ "cache", mp_property_cache, CONF_TYPE_INT },
M_OPTION_PROPERTY("pts-association-mode"),
M_OPTION_PROPERTY("hr-seek"),
@@ -2303,7 +2298,7 @@ void run_command(MPContext *mpctx, mp_cmd_t *cmd)
pause_player(mpctx);
break;
case 3: // "pausing_toggle"
- if (mpctx->paused_user)
+ if (opts->pause)
unpause_player(mpctx);
else
pause_player(mpctx);
diff --git a/core/mp_core.h b/core/mp_core.h
index 9b08492d77..9588a77b24 100644
--- a/core/mp_core.h
+++ b/core/mp_core.h
@@ -265,14 +265,14 @@ typedef struct MPContext {
int last_dvb_step;
int dvbin_reopen;
- int paused;
+ bool paused;
// step this many frames, then pause
int step_frames;
// Counted down each frame, stop playback if 0 is reached. (-1 = disable)
int max_frames;
bool playing_msg_shown;
- bool paused_for_cache, paused_user;
+ bool paused_for_cache;
// Set after showing warning about decoding being too slow for realtime
// playback rate. Used to avoid showing it multiple times.
diff --git a/core/mplayer.c b/core/mplayer.c
index 98d0ca6009..d21634c526 100644
--- a/core/mplayer.c
+++ b/core/mplayer.c
@@ -1065,7 +1065,7 @@ static void print_status(struct MPContext *mpctx)
char *line = NULL;
// Playback status
- if (mpctx->paused_for_cache && !mpctx->paused_user) {
+ if (mpctx->paused_for_cache && !opts->pause) {
saddf(&line, "(Buffering) ");
} else if (mpctx->paused) {
saddf(&line, "(Paused) ");
@@ -1429,7 +1429,7 @@ static void sadd_osd_status(char **buffer, struct MPContext *mpctx, bool full)
bool fractions = mpctx->opts.osd_fractions;
int sym = mpctx->osd_function;
if (!sym) {
- if (mpctx->paused_for_cache && !mpctx->paused_user) {
+ if (mpctx->paused_for_cache && !mpctx->opts.pause) {
sym = OSD_CLOCK;
} else if (mpctx->paused || mpctx->step_frames) {
sym = OSD_PAUSE;
@@ -2638,11 +2638,11 @@ static double update_video(struct MPContext *mpctx, double endpts)
void pause_player(struct MPContext *mpctx)
{
- mpctx->paused_user = true;
+ mpctx->opts.pause = 1;
if (mpctx->paused)
return;
- mpctx->paused = 1;
+ mpctx->paused = true;
mpctx->step_frames = 0;
mpctx->time_frame -= get_relative_time(mpctx);
mpctx->osd_function = 0;
@@ -2664,14 +2664,14 @@ void pause_player(struct MPContext *mpctx)
void unpause_player(struct MPContext *mpctx)
{
- mpctx->paused_user = false;
+ mpctx->opts.pause = 0;
if (!mpctx->paused)
return;
// Don't actually unpause while cache is loading.
if (mpctx->paused_for_cache)
return;
- mpctx->paused = 0;
+ mpctx->paused = false;
mpctx->osd_function = 0;
if (mpctx->ao && mpctx->sh_audio)
@@ -3201,15 +3201,15 @@ static void handle_pause_on_low_cache(struct MPContext *mpctx)
if (mpctx->paused && mpctx->paused_for_cache) {
if (cache < 0 || cache >= opts->stream_cache_min_percent || idle) {
mpctx->paused_for_cache = false;
- if (!mpctx->paused_user)
+ if (!opts->pause)
unpause_player(mpctx);
}
} else {
if (cache >= 0 && cache <= opts->stream_cache_pause && !idle) {
- bool prev_paused_user = mpctx->paused_user;
+ bool prev_paused_user = opts->pause;
pause_player(mpctx);
mpctx->paused_for_cache = true;
- mpctx->paused_user = prev_paused_user;
+ opts->pause = prev_paused_user;
}
}
}
@@ -4238,6 +4238,8 @@ goto_enable_cache: ;
mpctx->total_avsync_change = 0;
mpctx->last_chapter_seek = -2;
mpctx->playing_msg_shown = false;
+ mpctx->paused = false;
+ mpctx->paused_for_cache = false;
// If there's a timeline force an absolute seek to initialize state
double startpos = rel_time_to_abs(mpctx, opts->play_start, -1);
@@ -4257,14 +4259,7 @@ goto_enable_cache: ;
mpctx->seek = (struct seek_params){ 0 };
get_relative_time(mpctx); // reset current delta
- mpctx->paused = mpctx->paused_user;
- mpctx->paused_for_cache = false;
- // Make sure VO knows current pause state
- if (mpctx->sh_video)
- vo_control(mpctx->video_out,
- mpctx->paused ? VOCTRL_PAUSE : VOCTRL_RESUME, NULL);
-
- if (mpctx->opts.start_paused)
+ if (mpctx->opts.pause)
pause_player(mpctx);
while (!mpctx->stop_play)
@@ -4285,7 +4280,7 @@ goto_enable_cache: ;
terminate_playback: // don't jump here after ao/vo/getch initialization!
if (mpctx->step_frames)
- mpctx->paused = 1;
+ opts->pause = 1;
mp_msg(MSGT_CPLAYER, MSGL_INFO, "\n");
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;