summaryrefslogtreecommitdiffstats
path: root/video/out/vo_rpi.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2019-12-11 18:50:29 +0100
committerwm4 <wm4@nowhere>2019-12-11 18:50:37 +0100
commit59cdfe50b261e06bdf04d2f7e2e18f6c19cbb26d (patch)
tree3d9ce8767e9152e3f425cb92ec42a37a197a1cca /video/out/vo_rpi.c
parentb6fa63b01e608ddb17c7e9278b772c537a4a95aa (diff)
downloadmpv-59cdfe50b261e06bdf04d2f7e2e18f6c19cbb26d.tar.bz2
mpv-59cdfe50b261e06bdf04d2f7e2e18f6c19cbb26d.tar.xz
rpi: destroy fullscreen change handling
Get rid of the legacy VOCTRL (which will be removed later). I'm not sure what exactly fullscreen was supposed to do (toggling between using the entire display, and what --geometry forced?), but I don't care, just get rid of the VOCTRL. PRs to fix regressions caused by this will be accepted, but personally I don't care since this is excessively fringe and obscure.
Diffstat (limited to 'video/out/vo_rpi.c')
-rw-r--r--video/out/vo_rpi.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/video/out/vo_rpi.c b/video/out/vo_rpi.c
index 2065151b1d..94bb30efe6 100644
--- a/video/out/vo_rpi.c
+++ b/video/out/vo_rpi.c
@@ -725,11 +725,6 @@ static int control(struct vo *vo, uint32_t request, void *data)
struct priv *p = vo->priv;
switch (request) {
- case VOCTRL_FULLSCREEN:
- if (p->renderer_enabled)
- set_geometry(vo);
- vo->want_redraw = true;
- return VO_TRUE;
case VOCTRL_SET_PANSCAN:
if (p->renderer_enabled)
resize(vo);