[vlc-devel] [PATCH 2/2] mmal/vout: Drop DISPLAY_FILLED handler
Julian Scheel
julian at jusst.de
Wed Oct 15 10:23:15 CEST 2014
This handler was a no-op and does not make sense in a fullscreen only
renderer, so drop the handler.
Signed-off-by: Julian Scheel <julian at jusst.de>
---
modules/hw/mmal/vout.c | 8 --------
1 file changed, 8 deletions(-)
diff --git a/modules/hw/mmal/vout.c b/modules/hw/mmal/vout.c
index 855f76f..ed727bc 100644
--- a/modules/hw/mmal/vout.c
+++ b/modules/hw/mmal/vout.c
@@ -623,14 +623,6 @@ static int vd_control(vout_display_t *vd, int query, va_list args)
}
break;
- case VOUT_DISPLAY_CHANGE_DISPLAY_FILLED:
- cfg = *vd->cfg;
- tmp_cfg = va_arg(args, const vout_display_cfg_t *);
- cfg.is_display_filled = tmp_cfg->is_display_filled;
- if (configure_display(vd, &cfg, NULL) >= 0)
- ret = VLC_SUCCESS;
- break;
-
case VOUT_DISPLAY_CHANGE_SOURCE_ASPECT:
case VOUT_DISPLAY_CHANGE_SOURCE_CROP:
tmp_fmt = va_arg(args, const video_format_t *);
--
2.1.2
More information about the vlc-devel
mailing list