summaryrefslogtreecommitdiffstats
path: root/options
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-12-10 19:44:47 +0100
committerwm4 <wm4@nowhere>2015-12-10 22:53:02 +0100
commit475fe453cc8fa828e395da100cf2c07e1e6542ea (patch)
tree6637ba18f38ce2829b7f8af716973f8e84607f4e /options
parent3da91a673afb40d304bc57b5e17cee67a671f315 (diff)
downloadmpv-475fe453cc8fa828e395da100cf2c07e1e6542ea.tar.bz2
mpv-475fe453cc8fa828e395da100cf2c07e1e6542ea.tar.xz
stream: drop PVR support
This is only for specific Hauppage cards. According to the comments in who is actively using this feature. Get it out of the way. Anyone who still wants to use this should complain. Keeping this code would not cause terribly much additional work, and it could be restored again. (But not if the request comes months later.)
Diffstat (limited to 'options')
-rw-r--r--options/options.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/options/options.c b/options/options.c
index f65e63566d..058265ae69 100644
--- a/options/options.c
+++ b/options/options.c
@@ -60,7 +60,6 @@ static void print_help(struct mp_log *log)
}
extern const struct m_sub_options tv_params_conf;
-extern const struct m_sub_options stream_pvr_conf;
extern const struct m_sub_options stream_cdda_conf;
extern const struct m_sub_options stream_dvb_conf;
extern const struct m_sub_options stream_lavf_conf;
@@ -260,9 +259,6 @@ const m_option_t mp_opts[] = {
#if HAVE_TV
OPT_SUBSTRUCT("tv", tv_params, tv_params_conf, 0),
#endif /* HAVE_TV */
-#if HAVE_PVR
- OPT_SUBSTRUCT("pvr", stream_pvr_opts, stream_pvr_conf, 0),
-#endif /* HAVE_PVR */
#if HAVE_DVBIN
OPT_SUBSTRUCT("dvbin", stream_dvb_opts, stream_dvb_conf, 0),
#endif