[vlc-commits] mmal/vout: Drop DISPLAY_FILLED handler
Julian Scheel
git at videolan.org
Wed Oct 15 10:28:58 CEST 2014
vlc | branch: master | Julian Scheel <julian at jusst.de> | Wed Oct 15 10:23:15 2014 +0200| [9d2170bee16b743e8e5a56d690457c4b5c397835] | committer: Jean-Baptiste Kempf
mmal/vout: Drop DISPLAY_FILLED handler
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>
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=9d2170bee16b743e8e5a56d690457c4b5c397835
---
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 *);
More information about the vlc-commits
mailing list