From 7041d8cd3735c3832cc2ce7ed62467c25c37f511 Mon Sep 17 00:00:00 2001 From: wm4 Date: Sat, 4 Jan 2014 01:27:06 +0100 Subject: vo: dropping subtitle files on the VO window adds them as subtitle files Note that we don't try to be clever about detecting the files as subtitles: we just check the file extension. We could go all the way and check the files by opening them with a demuxer, but that would probably do more bad than good. --- sub/find_subfiles.c | 5 +++++ sub/find_subfiles.h | 4 ++++ 2 files changed, 9 insertions(+) (limited to 'sub') diff --git a/sub/find_subfiles.c b/sub/find_subfiles.c index e5577c3912..5efbd20476 100644 --- a/sub/find_subfiles.c +++ b/sub/find_subfiles.c @@ -42,6 +42,11 @@ static struct bstr get_ext(struct bstr s) return bstr_splice(s, dotpos + 1, s.len); } +bool mp_might_be_subtitle_file(const char *filename) +{ + return is_sub_ext(get_ext(bstr0(filename))); +} + static int compare_sub_filename(const void *a, const void *b) { const struct subfn *s1 = a; diff --git a/sub/find_subfiles.h b/sub/find_subfiles.h index d11c02627b..85b491f1f9 100644 --- a/sub/find_subfiles.h +++ b/sub/find_subfiles.h @@ -19,6 +19,8 @@ #ifndef MPLAYER_FIND_SUBFILES_H #define MPLAYER_FIND_SUBFILES_H +#include + struct subfn { int priority; char *fname; @@ -28,4 +30,6 @@ struct subfn { struct mpv_global; struct subfn *find_text_subtitles(struct mpv_global *global, const char *fname); +bool mp_might_be_subtitle_file(const char *filename); + #endif /* MPLAYER_FINDFILES_H */ -- cgit v1.2.3