summaryrefslogtreecommitdiffstats
path: root/demux
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2018-05-24 19:33:25 +0200
committerwm4 <wm4@nowhere>2018-05-24 19:56:35 +0200
commit982416266c9596bec0ee4a1b1098d37a0f79ad94 (patch)
tree7826e2fd95d6f2abfec3a7623901bc21d3fe3bbc /demux
parentb406f679b127aa3f5fa5f728adb27bc8d500dff1 (diff)
downloadmpv-982416266c9596bec0ee4a1b1098d37a0f79ad94.tar.bz2
mpv-982416266c9596bec0ee4a1b1098d37a0f79ad94.tar.xz
demux_lavf: drop obscure genpts option
This code shouldn't even exist in libavformat. If you still need it, you can enable it via --demuxer-lavf-o.
Diffstat (limited to 'demux')
-rw-r--r--demux/demux_lavf.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/demux/demux_lavf.c b/demux/demux_lavf.c
index 41c334d309..ee81ff2773 100644
--- a/demux/demux_lavf.c
+++ b/demux/demux_lavf.c
@@ -77,7 +77,6 @@ struct demux_lavf_opts {
char *format;
char **avopts;
int hacks;
- int genptsmode;
char *sub_cp;
int rtsp_transport;
};
@@ -96,8 +95,6 @@ const struct m_sub_options demux_lavf_conf = {
OPT_INTRANGE("demuxer-lavf-probescore", probescore, 0,
1, AVPROBE_SCORE_MAX),
OPT_FLAG("demuxer-lavf-hacks", hacks, 0),
- OPT_CHOICE("demuxer-lavf-genpts-mode", genptsmode, 0,
- ({"lavf", 1}, {"no", 0})),
OPT_KEYVALUELIST("demuxer-lavf-o", avopts, 0),
OPT_STRING("sub-codepage", sub_cp, 0),
OPT_CHOICE("rtsp-transport", rtsp_transport, 0,
@@ -814,8 +811,6 @@ static int demux_open_lavf(demuxer_t *demuxer, enum demux_check check)
if (!avfc)
return -1;
- if (lavfdopts->genptsmode)
- avfc->flags |= AVFMT_FLAG_GENPTS;
if (index_mode != 1)
avfc->flags |= AVFMT_FLAG_IGNIDX;