summaryrefslogtreecommitdiffstats
path: root/sub/dec_sub.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-12-15 21:05:09 +0100
committerwm4 <wm4@nowhere>2015-12-15 21:05:48 +0100
commite798cf1ff64527cd2ed9fc3bab8dbc2d0c7a52de (patch)
tree430f112acd336e4faf3e6c74e98cc64996752d15 /sub/dec_sub.c
parentcab942acae8772f638a0bb392a4d04ca21bea224 (diff)
downloadmpv-e798cf1ff64527cd2ed9fc3bab8dbc2d0c7a52de.tar.bz2
mpv-e798cf1ff64527cd2ed9fc3bab8dbc2d0c7a52de.tar.xz
sub: remove sd_srt.c
The FFmpeg subtitle converter does the same. There used to be some deficiencies in FFmpeg's code, but it seems at least some of them have been fixed. There also used to be the timestamp issue (see previous commit messages), but this doesn't matter anymore. So no reason to keep this code - get rid of it.
Diffstat (limited to 'sub/dec_sub.c')
-rw-r--r--sub/dec_sub.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/sub/dec_sub.c b/sub/dec_sub.c
index 59e994d4f4..615e95e730 100644
--- a/sub/dec_sub.c
+++ b/sub/dec_sub.c
@@ -34,7 +34,6 @@
extern const struct sd_functions sd_ass;
extern const struct sd_functions sd_lavc;
-extern const struct sd_functions sd_srt;
extern const struct sd_functions sd_lavc_conv;
static const struct sd_functions *const sd_list[] = {
@@ -42,7 +41,6 @@ static const struct sd_functions *const sd_list[] = {
&sd_ass,
#endif
&sd_lavc,
- &sd_srt,
&sd_lavc_conv,
NULL
};