summaryrefslogtreecommitdiffstats
path: root/sub
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-09-20 18:00:21 +0200
committerwm4 <wm4@nowhere>2015-09-20 18:00:21 +0200
commitf287ccf017c405df7f140c05ba3b1fc4540cc29e (patch)
tree7902694fa348d822c9d4514ce49fa2a66e07cb5f /sub
parent2f4e01e772e894c42021cf15d7d6961ff145ff7e (diff)
downloadmpv-f287ccf017c405df7f140c05ba3b1fc4540cc29e.tar.bz2
mpv-f287ccf017c405df7f140c05ba3b1fc4540cc29e.tar.xz
player: add opus to list of external audio file extensions
Fixes #2336.
Diffstat (limited to 'sub')
-rw-r--r--sub/find_subfiles.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sub/find_subfiles.c b/sub/find_subfiles.c
index aa0a181f40..8b01a8b0ae 100644
--- a/sub/find_subfiles.c
+++ b/sub/find_subfiles.c
@@ -19,7 +19,7 @@ static const char *const sub_exts[] = {"utf", "utf8", "utf-8", "idx", "sub", "sr
"js", "ass", "mks", "vtt", "sup", NULL};
static const char *const audio_exts[] = {"mp3", "aac", "mka", "dts", "flac",
- "ogg", "m4a", "ac3", NULL};
+ "ogg", "m4a", "ac3", "opus", NULL};
static bool test_ext_list(bstr ext, const char *const *list)
{