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
e8d8bd4c
Commit
e8d8bd4c
authored
Nov 05, 2010
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
decoder/{mp4ff,ffmpeg}: add extension ".m4b" (audio book)
Same as ".m4a".
parent
8d5fa754
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
2 deletions
+13
-2
NEWS
NEWS
+3
-0
ffmpeg_plugin.c
src/decoder/ffmpeg_plugin.c
+3
-1
mp4ff_plugin.c
src/decoder/mp4ff_plugin.c
+7
-1
No files found.
NEWS
View file @
e8d8bd4c
ver 0.15.14 (2010/??/??)
* output_thread: fix assertion failure due to race condition in OPEN
* decoders:
- mp4ff, ffmpeg: add extension ".m4b" (audio book)
ver 0.15.13 (2010/10/10)
* output_thread: fix race condition after CANCEL command
...
...
src/decoder/ffmpeg_plugin.c
View file @
e8d8bd4c
...
...
@@ -501,7 +501,9 @@ static const char *const ffmpeg_suffixes[] = {
"atrac"
,
"au"
,
"aud"
,
"avi"
,
"avm2"
,
"avs"
,
"bap"
,
"bfi"
,
"c93"
,
"cak"
,
"cin"
,
"cmv"
,
"cpk"
,
"daud"
,
"dct"
,
"divx"
,
"dts"
,
"dv"
,
"dvd"
,
"dxa"
,
"eac3"
,
"film"
,
"flac"
,
"flc"
,
"fli"
,
"fll"
,
"flx"
,
"flv"
,
"g726"
,
"gsm"
,
"gxf"
,
"iss"
,
"m1v"
,
"m2v"
,
"m2t"
,
"m2ts"
,
"m4a"
,
"m4v"
,
"mad"
,
"gsm"
,
"gxf"
,
"iss"
,
"m1v"
,
"m2v"
,
"m2t"
,
"m2ts"
,
"m4a"
,
"m4b"
,
"m4v"
,
"mad"
,
"mj2"
,
"mjpeg"
,
"mjpg"
,
"mka"
,
"mkv"
,
"mlp"
,
"mm"
,
"mmf"
,
"mov"
,
"mp+"
,
"mp1"
,
"mp2"
,
"mp3"
,
"mp4"
,
"mpc"
,
"mpeg"
,
"mpg"
,
"mpga"
,
"mpp"
,
"mpu"
,
"mve"
,
"mvi"
,
"mxf"
,
"nc"
,
"nsv"
,
"nut"
,
"nuv"
,
"oga"
,
"ogm"
,
"ogv"
,
...
...
src/decoder/mp4ff_plugin.c
View file @
e8d8bd4c
...
...
@@ -425,7 +425,13 @@ mp4_tag_dup(const char *file)
return
ret
;
}
static
const
char
*
const
mp4_suffixes
[]
=
{
"m4a"
,
"mp4"
,
NULL
};
static
const
char
*
const
mp4_suffixes
[]
=
{
"m4a"
,
"m4b"
,
"mp4"
,
NULL
};
static
const
char
*
const
mp4_mime_types
[]
=
{
"audio/mp4"
,
"audio/m4a"
,
NULL
};
const
struct
decoder_plugin
mp4ff_decoder_plugin
=
{
...
...
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