player: add wav to list of external audio file extensions

Fixes #2378.
This commit is contained in:
wm4 2015-10-04 19:48:58 +02:00
parent 3ccac74de2
commit c855ab5624
1 changed files with 2 additions and 1 deletions

View File

@ -19,7 +19,8 @@ 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", "opus", NULL};
"ogg", "m4a", "ac3", "opus", "wav",
NULL};
static bool test_ext_list(bstr ext, const char *const *list)
{