summaryrefslogtreecommitdiffstats
path: root/video/filter/vf.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-06-05 18:59:13 +0200
committerwm4 <wm4@nowhere>2015-06-05 18:59:13 +0200
commit54b6389873210d06c86c0d3bda4e9ca48a1c094d (patch)
tree186c1a8a7c3befb622c5a60414d611b4f444f581 /video/filter/vf.h
parentb68627ed2b441f92648409d14a540b2ecac993de (diff)
downloadmpv-54b6389873210d06c86c0d3bda4e9ca48a1c094d.tar.bz2
mpv-54b6389873210d06c86c0d3bda4e9ca48a1c094d.tar.xz
vf_sub: minor simplification
Diffstat (limited to 'video/filter/vf.h')
-rw-r--r--video/filter/vf.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/video/filter/vf.h b/video/filter/vf.h
index 76835528b5..62734c99cf 100644
--- a/video/filter/vf.h
+++ b/video/filter/vf.h
@@ -144,13 +144,12 @@ enum vf_ctrl {
VFCTRL_SEEK_RESET = 1, // reset on picture and PTS discontinuities
VFCTRL_SET_EQUALIZER, // set color options (brightness,contrast etc)
VFCTRL_GET_EQUALIZER, // get color options (brightness,contrast etc)
- VFCTRL_INIT_OSD, // Filter OSD renderer present?
VFCTRL_SET_DEINTERLACE, // Set deinterlacing status
VFCTRL_GET_DEINTERLACE, // Get deinterlacing status
VFCTRL_GET_METADATA, // Get frame metadata from lavfi filters (e.g., cropdetect)
/* Hack to make the OSD state object available to vf_sub which
* access OSD/subtitle state outside of normal OSD draw time. */
- VFCTRL_SET_OSD_OBJ,
+ VFCTRL_INIT_OSD,
};
struct vf_chain *vf_new(struct mpv_global *global);