Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
550b9c3f
Commit
550b9c3f
authored
Feb 11, 2009
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ffmpeg: added TTA support
The ffmpeg library supports the "True Audio Codec". The entry in ffmpeg_suffixes was missing.
parent
58a5d308
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
NEWS
NEWS
+2
-1
ffmpeg_plugin.c
src/decoder/ffmpeg_plugin.c
+2
-0
No files found.
NEWS
View file @
550b9c3f
...
@@ -8,7 +8,6 @@ ver 0.15 - (200?/??/??)
...
@@ -8,7 +8,6 @@ ver 0.15 - (200?/??/??)
- parse RVA2 tags in mp3 files
- parse RVA2 tags in mp3 files
* decoders:
* decoders:
- audiofile: streaming support added
- audiofile: streaming support added
- ffmpeg: enable WAV
- modplug: another MOD plugin, based on libmodplug
- modplug: another MOD plugin, based on libmodplug
- mikmod disabled by default, due to severe security issues in libmikmod
- mikmod disabled by default, due to severe security issues in libmikmod
* audio outputs:
* audio outputs:
...
@@ -42,6 +41,8 @@ ver 0.14.2 (2009/??/??)
...
@@ -42,6 +41,8 @@ ver 0.14.2 (2009/??/??)
- ffmpeg: don't warn of empty packet output
- ffmpeg: don't warn of empty packet output
- ffmpeg: check if the time stamp is valid
- ffmpeg: check if the time stamp is valid
- ffmpeg: fixed seek integer overflow
- ffmpeg: fixed seek integer overflow
- ffmpeg: enable WAV streaming
- ffmpeg: added TTA support
- wavpack: pass NULL if the .wvc file fails to open
- wavpack: pass NULL if the .wvc file fails to open
- mikmod: call MikMod_Exit() only in the finish() method
- mikmod: call MikMod_Exit() only in the finish() method
* audio outputs:
* audio outputs:
...
...
src/decoder/ffmpeg_plugin.c
View file @
550b9c3f
...
@@ -403,6 +403,7 @@ static const char *const ffmpeg_suffixes[] = {
...
@@ -403,6 +403,7 @@ static const char *const ffmpeg_suffixes[] = {
"wma"
,
"asf"
,
"wmv"
,
"mpeg"
,
"mpg"
,
"avi"
,
"vob"
,
"mov"
,
"qt"
,
"swf"
,
"wma"
,
"asf"
,
"wmv"
,
"mpeg"
,
"mpg"
,
"avi"
,
"vob"
,
"mov"
,
"qt"
,
"swf"
,
"rm"
,
"swf"
,
"mp1"
,
"mp2"
,
"mp3"
,
"mp4"
,
"m4a"
,
"flac"
,
"ogg"
,
"wav"
,
"rm"
,
"swf"
,
"mp1"
,
"mp2"
,
"mp3"
,
"mp4"
,
"m4a"
,
"flac"
,
"ogg"
,
"wav"
,
"au"
,
"aiff"
,
"aif"
,
"ac3"
,
"aac"
,
"mpc"
,
"ape"
,
"au"
,
"aiff"
,
"aif"
,
"ac3"
,
"aac"
,
"mpc"
,
"ape"
,
"tta"
,
NULL
NULL
};
};
...
@@ -419,6 +420,7 @@ static const char *const ffmpeg_mime_types[] = {
...
@@ -419,6 +420,7 @@ static const char *const ffmpeg_mime_types[] = {
"application/x-ms-wmd"
,
"application/x-ms-wmd"
,
"audio/mpeg"
,
"audio/mpeg"
,
"audio/x-wav"
,
"audio/x-wav"
,
"audio/x-tta"
,
NULL
NULL
};
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment