summaryrefslogtreecommitdiffstats
path: root/options
diff options
context:
space:
mode:
Diffstat (limited to 'options')
-rw-r--r--options/options.c3
-rw-r--r--options/options.h4
2 files changed, 7 insertions, 0 deletions
diff --git a/options/options.c b/options/options.c
index a164c6a97c..8eab3598be 100644
--- a/options/options.c
+++ b/options/options.c
@@ -551,6 +551,9 @@ static const m_option_t mp_opts[] = {
OPT_SUBSTRUCT("", vd_lavc_params, vd_lavc_conf, 0),
OPT_SUBSTRUCT("ad-lavc", ad_lavc_params, ad_lavc_conf, 0),
+ OPT_SUBSTRUCT("vd-queue", vdec_queue_opts, vdec_queue_conf, 0),
+ OPT_SUBSTRUCT("ad-queue", adec_queue_opts, adec_queue_conf, 0),
+
OPT_SUBSTRUCT("", demux_lavf, demux_lavf_conf, 0),
OPT_SUBSTRUCT("demuxer-rawaudio", demux_rawaudio, demux_rawaudio_conf, 0),
OPT_SUBSTRUCT("demuxer-rawvideo", demux_rawvideo, demux_rawvideo_conf, 0),
diff --git a/options/options.h b/options/options.h
index cfb6f44813..cf4025a20e 100644
--- a/options/options.h
+++ b/options/options.h
@@ -290,6 +290,8 @@ typedef struct MPOpts {
struct filter_opts *filter_opts;
float movie_aspect;
int aspect_method;
+ struct dec_queue_opts *vdec_queue_opts;
+ struct dec_queue_opts *adec_queue_opts;
char **sub_name;
char **sub_paths;
char **audiofile_paths;
@@ -373,6 +375,8 @@ extern const struct m_sub_options mp_osd_render_sub_opts;
extern const struct m_sub_options filter_conf;
extern const struct m_sub_options resample_conf;
extern const struct m_sub_options stream_conf;
+extern const struct m_sub_options vdec_queue_conf;
+extern const struct m_sub_options adec_queue_conf;
extern const struct m_sub_options mp_opt_root;
#endif