ffmpeg: added TTA support
The ffmpeg library supports the "True Audio Codec". The entry in ffmpeg_suffixes was missing.
This commit is contained in:
parent
58a5d30826
commit
550b9c3f23
3
NEWS
3
NEWS
|
@ -8,7 +8,6 @@ ver 0.15 - (200?/??/??)
|
|||
- parse RVA2 tags in mp3 files
|
||||
* decoders:
|
||||
- audiofile: streaming support added
|
||||
- ffmpeg: enable WAV
|
||||
- modplug: another MOD plugin, based on libmodplug
|
||||
- mikmod disabled by default, due to severe security issues in libmikmod
|
||||
* audio outputs:
|
||||
|
@ -42,6 +41,8 @@ ver 0.14.2 (2009/??/??)
|
|||
- ffmpeg: don't warn of empty packet output
|
||||
- ffmpeg: check if the time stamp is valid
|
||||
- ffmpeg: fixed seek integer overflow
|
||||
- ffmpeg: enable WAV streaming
|
||||
- ffmpeg: added TTA support
|
||||
- wavpack: pass NULL if the .wvc file fails to open
|
||||
- mikmod: call MikMod_Exit() only in the finish() method
|
||||
* audio outputs:
|
||||
|
|
|
@ -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
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue