summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-06-15 21:10:38 +0200
committerwm4 <wm4@nowhere>2014-06-15 21:10:38 +0200
commitc54174b40e51b007c26ba732c712a3353cbc40f8 (patch)
tree5be24d806bdbb75e6d27b2b066bc8ce7e2db5b03
parent716285782d5e4b264e18e253e9d58980183c76c6 (diff)
downloadmpv-c54174b40e51b007c26ba732c712a3353cbc40f8.tar.bz2
mpv-c54174b40e51b007c26ba732c712a3353cbc40f8.tar.xz
sub: prefer ffmpeg microdvd converter over internal one
We certainly don't want to maintain and improve the internal converter, but we still need the internal one for Libav. (In the Libav case, demux_subreader.c will be used to read the MicroDVD file.)
-rw-r--r--sub/dec_sub.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sub/dec_sub.c b/sub/dec_sub.c
index 798f6c3000..79884576b0 100644
--- a/sub/dec_sub.c
+++ b/sub/dec_sub.c
@@ -48,9 +48,9 @@ static const struct sd_functions *const sd_list[] = {
&sd_lavc,
&sd_movtext,
&sd_srt,
- &sd_microdvd,
&sd_lavf_srt,
&sd_lavc_conv,
+ &sd_microdvd,
NULL
};