summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vf_vo.c
diff options
context:
space:
mode:
authorUoti Urpala <uau@glyph.nonexistent.invalid>2009-10-21 05:32:36 +0300
committerUoti Urpala <uau@glyph.nonexistent.invalid>2009-10-21 07:35:22 +0300
commitfa7983b236a219da83ed73a461d58605b69575da (patch)
treec817dc76fb8d257bd39b82795ab238cdd12bbcd7 /libmpcodecs/vf_vo.c
parentf43c06930f8e5161e8b4ef079dec04eed99d942e (diff)
downloadmpv-fa7983b236a219da83ed73a461d58605b69575da.tar.bz2
mpv-fa7983b236a219da83ed73a461d58605b69575da.tar.xz
vf: Remove unused VFCTRL_FLIP_PAGE
Nothing uses it under MPlayer any more, and under MEncoder it never had any effect.
Diffstat (limited to 'libmpcodecs/vf_vo.c')
-rw-r--r--libmpcodecs/vf_vo.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/libmpcodecs/vf_vo.c b/libmpcodecs/vf_vo.c
index c782a5517b..7416e5f1d4 100644
--- a/libmpcodecs/vf_vo.c
+++ b/libmpcodecs/vf_vo.c
@@ -94,12 +94,6 @@ static int control(struct vf_instance* vf, int request, void* data)
return CONTROL_TRUE;
case VFCTRL_REDRAW_OSD:
return vo_control(video_out, VOCTRL_REDRAW_OSD, data) == true;
- case VFCTRL_FLIP_PAGE:
- {
- if(!video_out->config_ok) return CONTROL_FALSE; // vo not configured?
- vo_flip_page(video_out);
- return CONTROL_TRUE;
- }
case VFCTRL_SET_EQUALIZER:
{
vf_equalizer_t *eq=data;