summaryrefslogtreecommitdiffstats
path: root/demux/demux.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-12-10 19:50:43 +0100
committerwm4 <wm4@nowhere>2015-12-10 22:53:37 +0100
commita6521f394122ee1ce097ceba5d0fc18ad4fd7e7a (patch)
treeeff5883467963c0f2a0f45b1dc588338439253b0 /demux/demux.c
parent475fe453cc8fa828e395da100cf2c07e1e6542ea (diff)
downloadmpv-a6521f394122ee1ce097ceba5d0fc18ad4fd7e7a.tar.bz2
mpv-a6521f394122ee1ce097ceba5d0fc18ad4fd7e7a.tar.xz
demux: remove old subtitle parser
All of these are supported by FFmpeg now. It was disabled by default too (with FFmpeg). If compiled against Libav, mpv will lose the ability to read some subtitle formats (but the most important ones, srt and ass, still should work).
Diffstat (limited to 'demux/demux.c')
-rw-r--r--demux/demux.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/demux/demux.c b/demux/demux.c
index 20cf30ac57..dcad692be5 100644
--- a/demux/demux.c
+++ b/demux/demux.c
@@ -48,7 +48,6 @@ extern const demuxer_desc_t demuxer_desc_tv;
extern const demuxer_desc_t demuxer_desc_mf;
extern const demuxer_desc_t demuxer_desc_matroska;
extern const demuxer_desc_t demuxer_desc_lavf;
-extern const demuxer_desc_t demuxer_desc_subreader;
extern const demuxer_desc_t demuxer_desc_playlist;
extern const demuxer_desc_t demuxer_desc_disc;
extern const demuxer_desc_t demuxer_desc_rar;
@@ -75,8 +74,6 @@ const demuxer_desc_t *const demuxer_list[] = {
&demuxer_desc_lavf,
&demuxer_desc_mf,
&demuxer_desc_playlist,
- // Pretty aggressive, so should be last.
- &demuxer_desc_subreader,
NULL
};