summaryrefslogtreecommitdiffstats
path: root/video/out/vo.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-07-21 21:17:48 +0200
committerwm4 <wm4@nowhere>2013-07-21 23:27:31 +0200
commitc1afd751428741a2b0077cc82a5fb68c6b672009 (patch)
tree37662fa75aa5b7bdcba04b3fbf6ac4fc33489038 /video/out/vo.h
parent999dad454f6db2c3d52e9594778bccc03156d299 (diff)
downloadmpv-c1afd751428741a2b0077cc82a5fb68c6b672009.tar.bz2
mpv-c1afd751428741a2b0077cc82a5fb68c6b672009.tar.xz
options: use new code for parsing --vo
Nothing should change from user perspective. mpv --vo=opengl:help now works. Remove the vo_opengl inline help text. The new code can list option names for you, but that's it. Refer to the manpage if you have trouble.
Diffstat (limited to 'video/out/vo.h')
-rw-r--r--video/out/vo.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/video/out/vo.h b/video/out/vo.h
index 96155cbafa..80c51dfc08 100644
--- a/video/out/vo.h
+++ b/video/out/vo.h
@@ -230,9 +230,6 @@ struct vo_driver {
// List of options to parse into priv struct (requires privsize to be set)
const struct m_option *options;
- // Help text to print when option parsing fails
- const char *help_text;
-
// Parse these options before parsing user options
const char *init_option_string;
};
@@ -291,7 +288,6 @@ struct vo *init_best_video_out(struct mp_vo_opts *opts,
struct input_ctx *input_ctx,
struct encode_lavc_context *encode_lavc_ctx);
int vo_reconfig(struct vo *vo, struct mp_image_params *p, int flags);
-void list_video_out(void);
int vo_control(struct vo *vo, uint32_t request, void *data);
void vo_queue_image(struct vo *vo, struct mp_image *mpi);