ffmpeg: added TTA support

The ffmpeg library supports the "True Audio Codec".  The entry in
ffmpeg_suffixes was missing.
This commit is contained in:
Max Kellermann
2009-02-11 18:14:59 +01:00
parent 58a5d30826
commit 550b9c3f23
2 changed files with 4 additions and 1 deletions

View File

@@ -403,6 +403,7 @@ static const char *const ffmpeg_suffixes[] = {
"wma", "asf", "wmv", "mpeg", "mpg", "avi", "vob", "mov", "qt", "swf",
"rm", "swf", "mp1", "mp2", "mp3", "mp4", "m4a", "flac", "ogg", "wav",
"au", "aiff", "aif", "ac3", "aac", "mpc", "ape",
"tta",
NULL
};
@@ -419,6 +420,7 @@ static const char *const ffmpeg_mime_types[] = {
"application/x-ms-wmd",
"audio/mpeg",
"audio/x-wav",
"audio/x-tta",
NULL
};