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
cafaf33a
Commit
cafaf33a
authored
Feb 16, 2009
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
renamed decoder plugin "aac" to "faad"
A decoder plugin should be named after the library which is used.
parent
c5edb537
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
faad_plugin.c
src/decoder/faad_plugin.c
+2
-2
decoder_list.c
src/decoder_list.c
+2
-2
No files found.
src/decoder/
aac
_plugin.c
→
src/decoder/
faad
_plugin.c
View file @
cafaf33a
...
...
@@ -460,8 +460,8 @@ static struct tag *aacTagDup(const char *file)
static
const
char
*
const
aac_suffixes
[]
=
{
"aac"
,
NULL
};
static
const
char
*
const
aac_mimeTypes
[]
=
{
"audio/aac"
,
"audio/aacp"
,
NULL
};
const
struct
decoder_plugin
aacP
lugin
=
{
.
name
=
"
aac
"
,
const
struct
decoder_plugin
faad_decoder_p
lugin
=
{
.
name
=
"
faad
"
,
.
stream_decode
=
aac_stream_decode
,
.
tag_dup
=
aacTagDup
,
.
suffixes
=
aac_suffixes
,
...
...
src/decoder_list.c
View file @
cafaf33a
...
...
@@ -32,7 +32,7 @@ extern const struct decoder_plugin flac_decoder_plugin;
extern
const
struct
decoder_plugin
oggflac_decoder_plugin
;
extern
const
struct
decoder_plugin
audiofilePlugin
;
extern
const
struct
decoder_plugin
mp4_plugin
;
extern
const
struct
decoder_plugin
aacP
lugin
;
extern
const
struct
decoder_plugin
faad_decoder_p
lugin
;
extern
const
struct
decoder_plugin
mpcPlugin
;
extern
const
struct
decoder_plugin
wavpack_plugin
;
extern
const
struct
decoder_plugin
modplug_plugin
;
...
...
@@ -59,7 +59,7 @@ static const struct decoder_plugin *const decoder_plugins[] = {
&
audiofilePlugin
,
#endif
#ifdef HAVE_FAAD
&
aacP
lugin
,
&
faad_decoder_p
lugin
,
#endif
#ifdef HAVE_MP4
&
mp4_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