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
f5711e28
Commit
f5711e28
authored
Aug 26, 2008
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
moved decoder externs to inputPlugin.c
The decoder_plugin instances are only used inputPlugin.c, so move them from the header file.
parent
e41be362
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
11 deletions
+11
-11
inputPlugin.c
src/inputPlugin.c
+11
-0
inputPlugin.h
src/inputPlugin.h
+0
-11
No files found.
src/inputPlugin.c
View file @
f5711e28
...
...
@@ -19,6 +19,17 @@
#include "inputPlugin.h"
#include "decoder_api.h"
extern
struct
decoder_plugin
mp3Plugin
;
extern
struct
decoder_plugin
oggvorbisPlugin
;
extern
struct
decoder_plugin
flacPlugin
;
extern
struct
decoder_plugin
oggflacPlugin
;
extern
struct
decoder_plugin
audiofilePlugin
;
extern
struct
decoder_plugin
mp4Plugin
;
extern
struct
decoder_plugin
aacPlugin
;
extern
struct
decoder_plugin
mpcPlugin
;
extern
struct
decoder_plugin
wavpackPlugin
;
extern
struct
decoder_plugin
modPlugin
;
static
List
*
inputPlugin_list
;
void
loadInputPlugin
(
struct
decoder_plugin
*
inputPlugin
)
...
...
src/inputPlugin.h
View file @
f5711e28
...
...
@@ -43,15 +43,4 @@ void initInputPlugins(void);
/* this is where we "unload" all the "plugins" */
void
finishInputPlugins
(
void
);
extern
struct
decoder_plugin
mp3Plugin
;
extern
struct
decoder_plugin
oggvorbisPlugin
;
extern
struct
decoder_plugin
flacPlugin
;
extern
struct
decoder_plugin
oggflacPlugin
;
extern
struct
decoder_plugin
audiofilePlugin
;
extern
struct
decoder_plugin
mp4Plugin
;
extern
struct
decoder_plugin
aacPlugin
;
extern
struct
decoder_plugin
mpcPlugin
;
extern
struct
decoder_plugin
wavpackPlugin
;
extern
struct
decoder_plugin
modPlugin
;
#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