media: add missing extension for media

Summary:
add flac, m4a, opus

fixes T546

Test Plan: tycat flac or m4a or opus in terminology

Reviewers: raster, billiob

CC: seoz

Maniphest Tasks: T546

Differential Revision: https://phab.enlightenment.org/D1087
This commit is contained in:
wonguk.jeong 2014-06-30 20:48:40 +02:00 committed by Boris Faure
parent fd065b81f7
commit b053c96eec
1 changed files with 2 additions and 2 deletions

View File

@ -31,12 +31,12 @@ const char *extn_mov[] =
".ogg", ".ogm", ".ogv", ".qt", ".rm", ".rmj", ".rmm", ".rms", ".rmvb",
".rmx", ".rv", ".swf", ".ts", ".weba", ".webm", ".wmv", ".3g2", ".3gp",
".3gp2", ".3gpp", ".3gpp2", ".3p2", ".264",
".mp3", ".aac", ".wav",
".mp3", ".aac", ".wav", ".flac", ".m4a", ".opus",
NULL
};
const char *extn_aud[] =
{
".mp3", ".aac", ".wav",
".mp3", ".aac", ".wav", ".flac", ".m4a", ".opus",
NULL
};