summaryrefslogtreecommitdiffstats
path: root/options/options.h
diff options
context:
space:
mode:
Diffstat (limited to 'options/options.h')
-rw-r--r--options/options.h23
1 files changed, 4 insertions, 19 deletions
diff --git a/options/options.h b/options/options.h
index 376c62e989..45af785518 100644
--- a/options/options.h
+++ b/options/options.h
@@ -149,9 +149,8 @@ typedef struct MPOpts {
int load_config;
char *force_configdir;
int use_filedir_conf;
- int network_rtsp_transport;
int hls_bitrate;
- struct mp_cache_opts stream_cache;
+ struct mp_cache_opts *stream_cache;
int chapterrange[2];
int edition_id;
int correct_pts;
@@ -211,19 +210,13 @@ typedef struct MPOpts {
int stretch_image_subs;
int sub_fix_timing;
- char *sub_cp;
char **audio_files;
char *demuxer_name;
- int demuxer_max_packs;
- int demuxer_max_bytes;
int demuxer_thread;
- double demuxer_min_secs;
char *audio_demuxer_name;
char *sub_demuxer_name;
- int force_seekable;
- double demuxer_min_secs_cache;
int cache_pausing;
struct image_writer_opts *screenshot_image_opts;
@@ -290,17 +283,6 @@ typedef struct MPOpts {
int w32_priority;
- int network_cookies_enabled;
- char *network_cookies_file;
- char *network_useragent;
- char *network_referrer;
- char **network_http_header_fields;
- int network_tls_verify;
- char *network_tls_ca_file;
- char *network_tls_cert_file;
- char *network_tls_key_file;
- double network_timeout;
-
struct tv_params *tv_params;
struct pvr_params *stream_pvr_opts;
struct cdda_params *stream_cdda_opts;
@@ -323,6 +305,8 @@ typedef struct MPOpts {
struct demux_lavf_opts *demux_lavf;
struct demux_mkv_opts *demux_mkv;
+ struct demux_opts *demux_opts;
+
struct vd_lavc_params *vd_lavc_params;
struct ad_lavc_params *ad_lavc_params;
@@ -340,5 +324,6 @@ typedef struct MPOpts {
extern const m_option_t mp_opts[];
extern const struct MPOpts mp_default_opts;
extern const struct m_sub_options vo_sub_opts;
+extern const struct m_sub_options stream_cache_conf;
#endif