e thumb - extend extension that might have media metadata image thumbs

This commit is contained in:
Carsten Haitzler 2017-04-17 12:07:53 +09:00
parent 82f1b8a1c1
commit 86532962b5
1 changed files with 6 additions and 1 deletions

View File

@ -369,7 +369,12 @@ _e_thumb_generate(E_Thumb *eth)
if ((ext) &&
((!strcasecmp(ext, ".mp4")) ||
(!strcasecmp(ext, ".m4a")) ||
(!strcasecmp(ext, ".mp3"))
(!strcasecmp(ext, ".m4v")) ||
(!strcasecmp(ext, ".mp3")) ||
(!strcasecmp(ext, ".ogg")) ||
(!strcasecmp(ext, ".ogv")) ||
(!strcasecmp(ext, ".aac")) ||
(!strcasecmp(ext, ".flac"))
))
{
Evas_Object *em;