diff options
author | František Dvořák <valtri@civ.zcu.cz> | 2010-12-12 12:38:19 +0100 |
---|---|---|
committer | František Dvořák <valtri@civ.zcu.cz> | 2010-12-12 12:38:19 +0100 |
commit | 56007cdc8b390ebe647bcb0c62cd521c61a6b223 (patch) | |
tree | c41829aa7c0c4a16fbc8e32b999b322cd1ddb8c8 /src | |
parent | 7331793b951e0ab9cbb8107ecefc9aabc8aaf986 (diff) | |
download | xine-lib-56007cdc8b390ebe647bcb0c62cd521c61a6b223.tar.gz xine-lib-56007cdc8b390ebe647bcb0c62cd521c61a6b223.tar.bz2 |
Add .ass extension to be recognized as subtitle file.
Diffstat (limited to 'src')
-rw-r--r-- | src/libsputext/demux_sputext.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libsputext/demux_sputext.c b/src/libsputext/demux_sputext.c index b0e1299d9..f97d038f7 100644 --- a/src/libsputext/demux_sputext.c +++ b/src/libsputext/demux_sputext.c @@ -1386,7 +1386,8 @@ static demux_plugin_t *open_demux_plugin (demux_class_t *class_gen, xine_stream_ (strncasecmp(ending, ".sub", 4) != 0) && (strncasecmp(ending, ".srt", 4) != 0) && (strncasecmp(ending, ".smi", 4) != 0) && - (strncasecmp(ending, ".ssa", 4) != 0))) { + (strncasecmp(ending, ".ssa", 4) != 0) && + (strncasecmp(ending, ".ass", 4) != 0))) { free (this); return NULL; } |