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
70523657
Commit
70523657
authored
Feb 17, 2009
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
renamed decoder plugin "mp4" to "mp4ff"
This plugin is based on "libmp4ff".
parent
f4ff7eab
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
Makefile.am
src/Makefile.am
+1
-1
mp4ff_plugin.c
src/decoder/mp4ff_plugin.c
+1
-1
decoder_list.c
src/decoder_list.c
+2
-2
No files found.
src/Makefile.am
View file @
70523657
...
@@ -283,7 +283,7 @@ mpd_SOURCES += decoder/faad_plugin.c
...
@@ -283,7 +283,7 @@ mpd_SOURCES += decoder/faad_plugin.c
endif
endif
if
HAVE_MP4
if
HAVE_MP4
mpd_SOURCES
+=
decoder/mp4_plugin.c
mpd_SOURCES
+=
decoder/mp4
ff
_plugin.c
endif
endif
if
HAVE_OGG_COMMON
if
HAVE_OGG_COMMON
...
...
src/decoder/mp4_plugin.c
→
src/decoder/mp4
ff
_plugin.c
View file @
70523657
...
@@ -411,7 +411,7 @@ mp4_tag_dup(const char *file)
...
@@ -411,7 +411,7 @@ mp4_tag_dup(const char *file)
static
const
char
*
const
mp4_suffixes
[]
=
{
"m4a"
,
"mp4"
,
NULL
};
static
const
char
*
const
mp4_suffixes
[]
=
{
"m4a"
,
"mp4"
,
NULL
};
static
const
char
*
const
mp4_mime_types
[]
=
{
"audio/mp4"
,
"audio/m4a"
,
NULL
};
static
const
char
*
const
mp4_mime_types
[]
=
{
"audio/mp4"
,
"audio/m4a"
,
NULL
};
const
struct
decoder_plugin
mp4_plugin
=
{
const
struct
decoder_plugin
mp4
ff_decoder
_plugin
=
{
.
name
=
"mp4"
,
.
name
=
"mp4"
,
.
stream_decode
=
mp4_decode
,
.
stream_decode
=
mp4_decode
,
.
tag_dup
=
mp4_tag_dup
,
.
tag_dup
=
mp4_tag_dup
,
...
...
src/decoder_list.c
View file @
70523657
...
@@ -31,7 +31,7 @@ extern const struct decoder_plugin vorbis_decoder_plugin;
...
@@ -31,7 +31,7 @@ extern const struct decoder_plugin vorbis_decoder_plugin;
extern
const
struct
decoder_plugin
flac_decoder_plugin
;
extern
const
struct
decoder_plugin
flac_decoder_plugin
;
extern
const
struct
decoder_plugin
oggflac_decoder_plugin
;
extern
const
struct
decoder_plugin
oggflac_decoder_plugin
;
extern
const
struct
decoder_plugin
audiofilePlugin
;
extern
const
struct
decoder_plugin
audiofilePlugin
;
extern
const
struct
decoder_plugin
mp4_plugin
;
extern
const
struct
decoder_plugin
mp4
ff_decoder
_plugin
;
extern
const
struct
decoder_plugin
faad_decoder_plugin
;
extern
const
struct
decoder_plugin
faad_decoder_plugin
;
extern
const
struct
decoder_plugin
mpcPlugin
;
extern
const
struct
decoder_plugin
mpcPlugin
;
extern
const
struct
decoder_plugin
wavpack_plugin
;
extern
const
struct
decoder_plugin
wavpack_plugin
;
...
@@ -62,7 +62,7 @@ static const struct decoder_plugin *const decoder_plugins[] = {
...
@@ -62,7 +62,7 @@ static const struct decoder_plugin *const decoder_plugins[] = {
&
faad_decoder_plugin
,
&
faad_decoder_plugin
,
#endif
#endif
#ifdef HAVE_MP4
#ifdef HAVE_MP4
&
mp4_plugin
,
&
mp4
ff_decoder
_plugin
,
#endif
#endif
#ifdef HAVE_MPCDEC
#ifdef HAVE_MPCDEC
&
mpcPlugin
,
&
mpcPlugin
,
...
...
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