diff options
author | wm4 <wm4@nowhere> | 2014-06-15 21:10:38 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2014-06-15 21:10:38 +0200 |
commit | c54174b40e51b007c26ba732c712a3353cbc40f8 (patch) | |
tree | 5be24d806bdbb75e6d27b2b066bc8ce7e2db5b03 /sub | |
parent | 716285782d5e4b264e18e253e9d58980183c76c6 (diff) |
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.)
Diffstat (limited to 'sub')
-rw-r--r-- | sub/dec_sub.c | 2 |
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 }; |