summaryrefslogtreecommitdiffstats
path: root/player/command.c
diff options
context:
space:
mode:
authorsfan5 <sfan5@live.de>2018-01-02 21:20:06 +0100
committerKevin Mitchell <kevmitch@gmail.com>2018-01-02 15:04:31 -0800
commit3cb616a2862e5b86f06345c9e9ba2d518b6100b7 (patch)
tree95728a8d926ee67d0d2bd3ebd80c21fa0fe7e238 /player/command.c
parent48943a73f68b09da9ff7120ca2804cf74f1cc27d (diff)
downloadmpv-3cb616a2862e5b86f06345c9e9ba2d518b6100b7.tar.bz2
mpv-3cb616a2862e5b86f06345c9e9ba2d518b6100b7.tar.xz
player: remove internal `vo-resize` command again
Its only usecase was automated in the previous commit.
Diffstat (limited to 'player/command.c')
-rw-r--r--player/command.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/player/command.c b/player/command.c
index 541e2d1987..b159f91708 100644
--- a/player/command.c
+++ b/player/command.c
@@ -5434,13 +5434,6 @@ int run_command(struct MPContext *mpctx, struct mp_cmd *cmd, struct mpv_node *re
reload_audio_output(mpctx);
break;
- case MP_CMD_VO_RESIZE: {
- if (!mpctx->video_out)
- return -1;
- vo_control(mpctx->video_out, VOCTRL_EXTERNAL_RESIZE, NULL);
- break;
- }
-
case MP_CMD_AF:
return edit_filters_osd(mpctx, STREAM_AUDIO, cmd->args[0].v.s,
cmd->args[1].v.s, msg_osd);