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
2bfe6f64
Commit
2bfe6f64
authored
Jan 24, 2009
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
renamed the "mod" decoder plugin to "mikmod"
We have two mod plugins now: modplug and mod. Rename the latter to a more useful name.
parent
5795be1f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
Makefile.am
src/Makefile.am
+1
-1
mikmod_plugin.c
src/decoder/mikmod_plugin.c
+2
-2
decoder_list.c
src/decoder_list.c
+2
-2
No files found.
src/Makefile.am
View file @
2bfe6f64
...
@@ -285,7 +285,7 @@ mpd_SOURCES += decoder/audiofile_plugin.c
...
@@ -285,7 +285,7 @@ mpd_SOURCES += decoder/audiofile_plugin.c
endif
endif
if
HAVE_MIKMOD
if
HAVE_MIKMOD
mpd_SOURCES
+=
decoder/mod_plugin.c
mpd_SOURCES
+=
decoder/m
ikm
od_plugin.c
endif
endif
if
HAVE_MODPLUG
if
HAVE_MODPLUG
...
...
src/decoder/mod_plugin.c
→
src/decoder/m
ikm
od_plugin.c
View file @
2bfe6f64
...
@@ -247,8 +247,8 @@ static const char *const modSuffixes[] = {
...
@@ -247,8 +247,8 @@ static const char *const modSuffixes[] = {
NULL
NULL
};
};
const
struct
decoder_plugin
m
odP
lugin
=
{
const
struct
decoder_plugin
m
ikmod_decoder_p
lugin
=
{
.
name
=
"mod"
,
.
name
=
"m
ikm
od"
,
.
init
=
mod_initMikMod
,
.
init
=
mod_initMikMod
,
.
finish
=
mod_finishMikMod
,
.
finish
=
mod_finishMikMod
,
.
file_decode
=
mod_decode
,
.
file_decode
=
mod_decode
,
...
...
src/decoder_list.c
View file @
2bfe6f64
...
@@ -33,7 +33,7 @@ extern const struct decoder_plugin aacPlugin;
...
@@ -33,7 +33,7 @@ extern const struct decoder_plugin aacPlugin;
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
;
extern
const
struct
decoder_plugin
modplug_plugin
;
extern
const
struct
decoder_plugin
modplug_plugin
;
extern
const
struct
decoder_plugin
m
odP
lugin
;
extern
const
struct
decoder_plugin
m
ikmod_decoder_p
lugin
;
extern
const
struct
decoder_plugin
ffmpeg_plugin
;
extern
const
struct
decoder_plugin
ffmpeg_plugin
;
static
const
struct
decoder_plugin
*
const
decoder_plugins
[]
=
{
static
const
struct
decoder_plugin
*
const
decoder_plugins
[]
=
{
...
@@ -68,7 +68,7 @@ static const struct decoder_plugin *const decoder_plugins[] = {
...
@@ -68,7 +68,7 @@ static const struct decoder_plugin *const decoder_plugins[] = {
&
modplug_plugin
,
&
modplug_plugin
,
#endif
#endif
#ifdef HAVE_MIKMOD
#ifdef HAVE_MIKMOD
&
m
odP
lugin
,
&
m
ikmod_decoder_p
lugin
,
#endif
#endif
#ifdef HAVE_FFMPEG
#ifdef HAVE_FFMPEG
&
ffmpeg_plugin
,
&
ffmpeg_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