diff options
author | Max Kellermann <max@duempel.org> | 2009-02-11 18:14:59 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-02-11 18:27:11 +0100 |
commit | 550b9c3f2350a8ea6f6921ae4bff4c92d2dc386c (patch) | |
tree | 95835d6423bc6f4a3f35edba41c8ec0c77213b65 /src/decoder | |
parent | 58a5d30826a1196948cff89135e9ac3c2a3e5333 (diff) | |
download | mpd-550b9c3f2350a8ea6f6921ae4bff4c92d2dc386c.tar.gz mpd-550b9c3f2350a8ea6f6921ae4bff4c92d2dc386c.tar.xz mpd-550b9c3f2350a8ea6f6921ae4bff4c92d2dc386c.zip |
ffmpeg: added TTA support
The ffmpeg library supports the "True Audio Codec". The entry in
ffmpeg_suffixes was missing.
Diffstat (limited to 'src/decoder')
-rw-r--r-- | src/decoder/ffmpeg_plugin.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/decoder/ffmpeg_plugin.c b/src/decoder/ffmpeg_plugin.c index aca02cb2a..8a379814f 100644 --- a/src/decoder/ffmpeg_plugin.c +++ b/src/decoder/ffmpeg_plugin.c @@ -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 }; |