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
fd90db35
Commit
fd90db35
authored
Apr 02, 2009
by
Avuton Olrich
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
decoder: Rename all main decoder plugins functions to *decoder_plugin.
parent
9e93875c
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
12 additions
and
12 deletions
+12
-12
audiofile_plugin.c
src/decoder/audiofile_plugin.c
+1
-1
ffmpeg_plugin.c
src/decoder/ffmpeg_plugin.c
+1
-1
modplug_plugin.c
src/decoder/modplug_plugin.c
+1
-1
wavpack_plugin.c
src/decoder/wavpack_plugin.c
+1
-1
decoder_list.c
src/decoder_list.c
+8
-8
No files found.
src/decoder/audiofile_plugin.c
View file @
fd90db35
...
...
@@ -212,7 +212,7 @@ static const char *const audiofile_mime_types[] = {
NULL
};
const
struct
decoder_plugin
audiofile
P
lugin
=
{
const
struct
decoder_plugin
audiofile
_decoder_p
lugin
=
{
.
name
=
"audiofile"
,
.
stream_decode
=
audiofile_stream_decode
,
.
tag_dup
=
audiofile_tag_dup
,
...
...
src/decoder/ffmpeg_plugin.c
View file @
fd90db35
...
...
@@ -529,7 +529,7 @@ static const char *const ffmpeg_mime_types[] = {
NULL
};
const
struct
decoder_plugin
ffmpeg_plugin
=
{
const
struct
decoder_plugin
ffmpeg_
decoder_
plugin
=
{
.
name
=
"ffmpeg"
,
.
init
=
ffmpeg_init
,
.
stream_decode
=
ffmpeg_decode
,
...
...
src/decoder/modplug_plugin.c
View file @
fd90db35
...
...
@@ -207,7 +207,7 @@ static const char *const mod_suffixes[] = {
NULL
};
const
struct
decoder_plugin
modplug_plugin
=
{
const
struct
decoder_plugin
modplug_
decoder_
plugin
=
{
.
name
=
"modplug"
,
.
stream_decode
=
mod_decode
,
.
tag_dup
=
mod_tagdup
,
...
...
src/decoder/wavpack_plugin.c
View file @
fd90db35
...
...
@@ -585,7 +585,7 @@ static char const *const wavpack_mime_types[] = {
NULL
};
const
struct
decoder_plugin
wavpack_plugin
=
{
const
struct
decoder_plugin
wavpack_
decoder_
plugin
=
{
.
name
=
"wavpack"
,
.
stream_decode
=
wavpack_streamdecode
,
.
file_decode
=
wavpack_filedecode
,
...
...
src/decoder_list.c
View file @
fd90db35
...
...
@@ -31,17 +31,17 @@ extern const struct decoder_plugin mad_decoder_plugin;
extern
const
struct
decoder_plugin
vorbis_decoder_plugin
;
extern
const
struct
decoder_plugin
flac_decoder_plugin
;
extern
const
struct
decoder_plugin
oggflac_decoder_plugin
;
extern
const
struct
decoder_plugin
audiofile
P
lugin
;
extern
const
struct
decoder_plugin
audiofile
_decoder_p
lugin
;
extern
const
struct
decoder_plugin
mp4ff_decoder_plugin
;
extern
const
struct
decoder_plugin
faad_decoder_plugin
;
extern
const
struct
decoder_plugin
mpcdec_decoder_plugin
;
extern
const
struct
decoder_plugin
wavpack_plugin
;
extern
const
struct
decoder_plugin
modplug_plugin
;
extern
const
struct
decoder_plugin
wavpack_
decoder_
plugin
;
extern
const
struct
decoder_plugin
modplug_
decoder_
plugin
;
extern
const
struct
decoder_plugin
mikmod_decoder_plugin
;
extern
const
struct
decoder_plugin
sidplay_decoder_plugin
;
extern
const
struct
decoder_plugin
fluidsynth_decoder_plugin
;
extern
const
struct
decoder_plugin
wildmidi_decoder_plugin
;
extern
const
struct
decoder_plugin
ffmpeg_plugin
;
extern
const
struct
decoder_plugin
ffmpeg_
decoder_
plugin
;
static
const
struct
decoder_plugin
*
const
decoder_plugins
[]
=
{
#ifdef HAVE_MAD
...
...
@@ -57,7 +57,7 @@ static const struct decoder_plugin *const decoder_plugins[] = {
&
flac_decoder_plugin
,
#endif
#ifdef HAVE_AUDIOFILE
&
audiofile
P
lugin
,
&
audiofile
_decoder_p
lugin
,
#endif
#ifdef HAVE_FAAD
&
faad_decoder_plugin
,
...
...
@@ -69,10 +69,10 @@ static const struct decoder_plugin *const decoder_plugins[] = {
&
mpcdec_decoder_plugin
,
#endif
#ifdef HAVE_WAVPACK
&
wavpack_plugin
,
&
wavpack_
decoder_
plugin
,
#endif
#ifdef HAVE_MODPLUG
&
modplug_plugin
,
&
modplug_
decoder_
plugin
,
#endif
#ifdef ENABLE_MIKMOD_DECODER
&
mikmod_decoder_plugin
,
...
...
@@ -87,7 +87,7 @@ static const struct decoder_plugin *const decoder_plugins[] = {
&
wildmidi_decoder_plugin
,
#endif
#ifdef HAVE_FFMPEG
&
ffmpeg_plugin
,
&
ffmpeg_
decoder_
plugin
,
#endif
};
...
...
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